Uses of Class
javax.enterprise.deploy.shared.ModuleType

Packages that use ModuleType
javax.enterprise.deploy.model   
javax.enterprise.deploy.shared   
javax.enterprise.deploy.spi   
 

Uses of ModuleType in javax.enterprise.deploy.model
 

Methods in javax.enterprise.deploy.model that return ModuleType
 ModuleType DDBeanRoot.getType()
          Return the ModuleType of deployment descriptor.
 ModuleType DeployableObject.getType()
          Return the ModuleType of deployment descriptor (i.e., EAR, JAR, WAR, RAR) this deployable object represents.
 

Methods in javax.enterprise.deploy.model with parameters of type ModuleType
 DeployableObject[] J2eeApplicationObject.getDeployableObjects(ModuleType type)
          Return the all DeployableObjects of the specified type.
 java.lang.String[] J2eeApplicationObject.getModuleUris(ModuleType type)
          Return the list of URIs of the designated module type.
 DDBean[] J2eeApplicationObject.getChildBean(ModuleType type, java.lang.String xpath)
          Return a list of DDBean instances based upon an XPath; all deployment descriptors of the specified type are searched.
 java.lang.String[] J2eeApplicationObject.getText(ModuleType type, java.lang.String xpath)
          Return the text value from the XPath; search only the deployment descriptors of the specified type.
 void J2eeApplicationObject.addXpathListener(ModuleType type, java.lang.String xpath, XpathListener xpl)
          Register a listener for changes in XPath that are related to this deployableObject.
 void J2eeApplicationObject.removeXpathListener(ModuleType type, java.lang.String xpath, XpathListener xpl)
          Unregister the listener for an XPath.
 

Uses of ModuleType in javax.enterprise.deploy.shared
 

Fields in javax.enterprise.deploy.shared declared as ModuleType
static ModuleType ModuleType.EAR
          The module is an EAR archive.
static ModuleType ModuleType.EJB
          The module is an Enterprise Java Bean archive.
static ModuleType ModuleType.CAR
          The module is an Client Application archive.
static ModuleType ModuleType.RAR
          The module is an Connector archive.
static ModuleType ModuleType.WAR
          The module is an Web Application archive.
private static ModuleType[] ModuleType.enumValueTable
           
 

Methods in javax.enterprise.deploy.shared that return ModuleType
protected  ModuleType[] ModuleType.getEnumValueTable()
          Returns the enumeration value table for class ModuleType
static ModuleType ModuleType.getModuleType(int value)
          Return an object of the specified value.
 

Uses of ModuleType in javax.enterprise.deploy.spi
 

Methods in javax.enterprise.deploy.spi with parameters of type ModuleType
 TargetModuleID[] DeploymentManager.getRunningModules(ModuleType moduleType, Target[] targetList)
          Retrieve the list of J2EE application modules distributed to the identified targets and that are currently running on the associated server or servers.
 TargetModuleID[] DeploymentManager.getNonRunningModules(ModuleType moduleType, Target[] targetList)
          Retrieve the list of J2EE application modules distributed to the identified targets and that are currently not running on the associated server or servers.
 TargetModuleID[] DeploymentManager.getAvailableModules(ModuleType moduleType, Target[] targetList)
          Retrieve the list of all J2EE application modules running or not running on the identified targets.