Package org.apache.openejb.jee
Class ActivationSpec
- java.lang.Object
-
- org.apache.openejb.jee.ActivationSpec
-
public class ActivationSpec extends Object
connector_1_6.xsdJava class for activationspecType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="activationspecType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="activationspec-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> <element name="required-config-property" type="{http://java.sun.com/xml/ns/javaee}required-config-propertyType" maxOccurs="unbounded" minOccurs="0"/> <element name="config-property" type="{http://java.sun.com/xml/ns/javaee}config-propertyType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringactivationSpecClassprotected List<ConfigProperty>configPropertyprotected Stringidprotected List<RequiredConfigProperty>requiredConfigProperty
-
Constructor Summary
Constructors Constructor Description ActivationSpec()ActivationSpec(Class activationSpecClass)ActivationSpec(String activationSpecClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequiredConfigPropertyaddRequiredConfigProperty(String name)StringgetActivationSpecClass()List<ConfigProperty>getConfigProperty()StringgetId()List<RequiredConfigProperty>getRequiredConfigProperty()voidsetActivationSpecClass(String value)voidsetId(String value)
-
-
-
Field Detail
-
activationSpecClass
protected String activationSpecClass
-
requiredConfigProperty
protected List<RequiredConfigProperty> requiredConfigProperty
-
configProperty
protected List<ConfigProperty> configProperty
-
id
protected String id
-
-
Method Detail
-
getActivationSpecClass
public String getActivationSpecClass()
-
setActivationSpecClass
public void setActivationSpecClass(String value)
-
getRequiredConfigProperty
public List<RequiredConfigProperty> getRequiredConfigProperty()
-
addRequiredConfigProperty
public RequiredConfigProperty addRequiredConfigProperty(String name)
-
getConfigProperty
public List<ConfigProperty> getConfigProperty()
-
getId
public String getId()
-
setId
public void setId(String value)
-
-