1 17 18 package org.apache.geronimo.deployment; 19 20 import java.util.List ; 21 22 import org.apache.xmlbeans.XmlObject; 23 import org.apache.geronimo.common.DeploymentException; 24 import org.apache.geronimo.gbean.AbstractName; 25 import org.apache.geronimo.kernel.repository.Environment; 26 27 30 public interface NamespaceDrivenBuilder extends AbstractNamespaceBuilder { 31 32 void buildEnvironment(XmlObject container, Environment environment) throws DeploymentException; 33 34 void build(XmlObject container, DeploymentContext applicationContext, DeploymentContext moduleContext) throws DeploymentException; 35 36 } 37 | Popular Tags |