Package org.apache.openejb.jee.oejb2
Class ApplicationType
- java.lang.Object
-
- org.apache.openejb.jee.oejb2.ApplicationType
-
public class ApplicationType extends Object
Java class for applicationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="applicationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}environment"/> <element name="module" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.2}moduleType" maxOccurs="unbounded" minOccurs="0"/> <element name="ext-module" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.2}ext-moduleType" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://geronimo.apache.org/xml/ns/j2ee/application-1.2}security" minOccurs="0"/> <element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}service" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="application-name" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringapplicationNameprotected EnvironmentTypeenvironmentprotected List<ExtModuleType>extModuleprotected List<ModuleType>moduleprotected AbstractSecurityTypesecurityprotected List<jakarta.xml.bind.JAXBElement<? extends AbstractServiceType>>service
-
Constructor Summary
Constructors Constructor Description ApplicationType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApplicationName()Gets the value of the applicationName property.EnvironmentTypegetEnvironment()Gets the value of the environment property.List<ExtModuleType>getExtModule()Gets the value of the extModule property.List<ModuleType>getModule()Gets the value of the module property.AbstractSecurityTypegetSecurity()Gets the value of the security property.List<jakarta.xml.bind.JAXBElement<? extends AbstractServiceType>>getService()Gets the value of the service property.voidsetApplicationName(String value)Sets the value of the applicationName property.voidsetEnvironment(EnvironmentType value)Sets the value of the environment property.voidsetSecurity(AbstractSecurityType value)Sets the value of the security property.
-
-
-
Field Detail
-
environment
protected EnvironmentType environment
-
module
protected List<ModuleType> module
-
extModule
protected List<ExtModuleType> extModule
-
security
protected AbstractSecurityType security
-
service
protected List<jakarta.xml.bind.JAXBElement<? extends AbstractServiceType>> service
-
applicationName
protected String applicationName
-
-
Method Detail
-
getEnvironment
public EnvironmentType getEnvironment()
Gets the value of the environment property.- Returns:
- possible object is
EnvironmentType
-
setEnvironment
public void setEnvironment(EnvironmentType value)
Sets the value of the environment property.- Parameters:
value- allowed object isEnvironmentType
-
getModule
public List<ModuleType> getModule()
Gets the value of the module property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the module property. For example, to add a new item, do as follows:getModule().add(newItem);Objects of the following type(s) are allowed in the listModuleType
-
getExtModule
public List<ExtModuleType> getExtModule()
Gets the value of the extModule property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the extModule property. For example, to add a new item, do as follows:getExtModule().add(newItem);Objects of the following type(s) are allowed in the listExtModuleType
-
getSecurity
public AbstractSecurityType getSecurity()
Gets the value of the security property.- Returns:
- possible object is
AbstractSecurityType
-
setSecurity
public void setSecurity(AbstractSecurityType value)
Sets the value of the security property.- Parameters:
value- allowed object isAbstractSecurityType
-
getService
public List<jakarta.xml.bind.JAXBElement<? extends AbstractServiceType>> getService()
Gets the value of the service property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the service property. For example, to add a new item, do as follows:getService().add(newItem);Objects of the following type(s) are allowed in the listJAXBElement<GbeanType>JAXBElement<AbstractServiceType>
-
getApplicationName
public String getApplicationName()
Gets the value of the applicationName property.- Returns:
- possible object is
String
-
-