Package org.apache.openejb.jee.oejb2
Class ActivationConfigType
- java.lang.Object
-
- org.apache.openejb.jee.oejb2.ActivationConfigType
-
public class ActivationConfigType extends Object
Java class for activation-configType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="activation-configType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="activation-config-property" type="{http://tomee.apache.org/xml/ns/openejb-jar-2.2}activation-config-propertyType" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ActivationConfigPropertyType>activationConfigPropertyprotected List<String>description
-
Constructor Summary
Constructors Constructor Description ActivationConfigType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ActivationConfigPropertyType>getActivationConfigProperty()Gets the value of the activationConfigProperty property.List<String>getDescription()Gets the value of the description property.
-
-
-
Field Detail
-
activationConfigProperty
protected List<ActivationConfigPropertyType> activationConfigProperty
-
-
Method Detail
-
getDescription
public List<String> getDescription()
Gets the value of the description 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 description property. For example, to add a new item, do as follows:getDescription().add(newItem);Objects of the following type(s) are allowed in the listString
-
getActivationConfigProperty
public List<ActivationConfigPropertyType> getActivationConfigProperty()
Gets the value of the activationConfigProperty 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 activationConfigProperty property. For example, to add a new item, do as follows:getActivationConfigProperty().add(newItem);Objects of the following type(s) are allowed in the listActivationConfigPropertyType
-
-