1 23 24 25 package com.sun.enterprise.deployapi.config; 26 27 import javax.enterprise.deploy.spi.DConfigBeanRoot ; 28 import javax.enterprise.deploy.shared.ModuleType ; 29 30 35 public class DConfigBeanRootFactoryImpl { 36 37 38 private DConfigBeanRootFactoryImpl() { 39 } 40 41 48 public static DConfigBeanRoot getDConfigBeanRootForType(ModuleType moduleType) { 49 if (moduleType==null) { 50 return null; 51 } 52 return null; 53 } 54 } 55 56 | Popular Tags |