Package org.apache.openejb.jee
Class ActivationConfig
- java.lang.Object
-
- org.apache.openejb.jee.ActivationConfig
-
public class ActivationConfig extends Object
ejb-jar_3_1.xsdJava 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://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/> <element name="activation-config-property" type="{http://java.sun.com/xml/ns/javaee}activation-config-propertyType" maxOccurs="unbounded"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ActivationConfigProperty>activationConfigPropertyprotected TextMapdescriptionprotected Stringid
-
Constructor Summary
Constructors Constructor Description ActivationConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddProperty(String name, String value)List<ActivationConfigProperty>getActivationConfigProperty()StringgetDescription()Text[]getDescriptions()StringgetId()voidsetDescriptions(Text[] text)voidsetId(String value)PropertiestoProperties()
-
-
-
Field Detail
-
description
protected TextMap description
-
activationConfigProperty
protected List<ActivationConfigProperty> activationConfigProperty
-
id
protected String id
-
-
Method Detail
-
getDescriptions
public Text[] getDescriptions()
-
setDescriptions
public void setDescriptions(Text[] text)
-
getDescription
public String getDescription()
-
getActivationConfigProperty
public List<ActivationConfigProperty> getActivationConfigProperty()
-
getId
public String getId()
-
setId
public void setId(String value)
-
toProperties
public Properties toProperties()
-
-