I am trying to build a factory capability that would initialize other capabilities when it receives requests for creation.
My class definition looks like this: public class FilterManagerFactoryImpl extends AbstractWsResourceCapability implements IFilterManagerFactoryImpl My call to obtain the resource manager looks like this: ResourceManager manager = getEnvironment().getResourceManager(); According to Eclipse the getEnvironment() method has the signature: Environment org.apache.muse.core.AbstractCapability.getEnvironment() However it does not find the getResourceManager() method in the Environmnet class. Based on the API provided here: http://ws.apache.org/muse/docs/2.2.0/javadoc/org/apache/muse/core/Environment.html Environment does not have a getResourceManager() class. So I was wondering what am I doing wrong. Am I defining my capability class parent incorrectly, or has the API changed between 2.1 and 2.2? -- View this message in context: http://www.nabble.com/Get-Resource-Manager-Muse-2.2.0-tf3879575.html#a10994330 Sent from the Muse User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
