735736737738739740741
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new SingletonFactory(getServiceClass())); }
895896897898899900901
244245246247248249250251252
} } protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
682683684685686687688
protected Invoker createInvoker() { Class<?> cls = getServiceClass(); if (cls.isInterface()) { return null; } return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }
750751752753754755756
212213214215216217218219220
} protected Invoker createInvoker() { if (getServiceBean() == null) { return new FactoryInvoker(new SingletonFactory(getServiceClass())); } return new BeanInvoker(getServiceBean()); }
935936937938939940941
250251252253254255256257258
317318319320321322323
// TODO Auto-generated method stub } protected Invoker createInvoker() { return new FactoryInvoker(new LocalFactory(getServiceClass()), new ApplicationScopePolicy()); }