1 16 19 20 package org.apache.pluto.services.factory; 21 22 import org.apache.pluto.PortletContainerServices; 23 import org.apache.pluto.factory.Factory; 24 25 30 31 public class FactoryManager 32 { 33 34 35 public static Factory getFactory (Class theClass) 36 { 37 return getService().getFactory(theClass); 38 } 39 40 private static FactoryManagerService getService() 41 { 42 return(FactoryManagerService)PortletContainerServices.get(FactoryManagerService.class); 43 } 44 } 45 | Popular Tags |