I'm using the Felix OSGi iPOJO library, and I'm programmatically accessing Factories to create ComponentInstances. I've read over the code here:
to try to figure out why my call to getPojoObject() is returning null.
My question is under what conditions could the getPojoObject() method return null?
EDIT: I think I understand what I'm asking now - as TofuBeer pointed out, it says in the JavaDoc it can return null whenever there is any kind of problem instantiating the object - this is not a helpful value to return, and the way it is handled hides what the real error is. Thanks for the extra set of eyes, TofuBeer, this was driving me crazy.