664665666667668669670
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
857858859860861862863
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new SingletonFactory(getServiceClass())); }
265266267268269270271272273
} } protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
683684685686687688689
415416417418419420421
// TODO Auto-generated method stub } protected Invoker createInvoker() { return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
954955956957958959960
872873874875876877878
250251252253254255256257258
948949950951952953954
212213214215216217218219220
} protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }