1 17 18 package org.apache.geronimo.deployment.plugin; 19 20 import javax.enterprise.deploy.model.DDBeanRoot ; 21 import javax.enterprise.deploy.spi.DConfigBean ; 22 import javax.enterprise.deploy.spi.DConfigBeanRoot ; 23 24 import org.apache.xmlbeans.XmlObject; 25 26 31 public abstract class DConfigBeanRootSupport extends DConfigBeanSupport implements DConfigBeanRoot { 32 33 public DConfigBeanRootSupport(DDBeanRoot ddBean, XmlObject xmlObject) { 34 super(ddBean, xmlObject); 35 } 36 37 public DConfigBean getDConfigBean(DDBeanRoot ddBeanRoot) { 38 return null; 39 } 40 } 41 | Popular Tags |