Package org.apache.openejb.jee
Class AssemblyDescriptor
- java.lang.Object
-
- org.apache.openejb.jee.AssemblyDescriptor
-
public class AssemblyDescriptor extends Object
ejb-jar_3_1.xsdJava class for assembly-descriptorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="assembly-descriptorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="security-role" type="{http://java.sun.com/xml/ns/javaee}security-roleType" maxOccurs="unbounded" minOccurs="0"/> <element name="method-permission" type="{http://java.sun.com/xml/ns/javaee}method-permissionType" maxOccurs="unbounded" minOccurs="0"/> <element name="container-transaction" type="{http://java.sun.com/xml/ns/javaee}container-transactionType" maxOccurs="unbounded" minOccurs="0"/> <element name="interceptor-binding" type="{http://java.sun.com/xml/ns/javaee}interceptor-bindingType" maxOccurs="unbounded" minOccurs="0"/> <element name="message-destination" type="{http://java.sun.com/xml/ns/javaee}message-destinationType" maxOccurs="unbounded" minOccurs="0"/> <element name="exclude-list" type="{http://java.sun.com/xml/ns/javaee}exclude-listType" minOccurs="0"/> <element name="application-exception" type="{http://java.sun.com/xml/ns/javaee}application-exceptionType" 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 KeyedCollection<String,ApplicationException>applicationExceptionprotected List<ContainerConcurrency>containerConcurrencyprotected List<ContainerTransaction>containerTransactionprotected ExcludeListexcludeListprotected Stringidprotected List<InterceptorBinding>interceptorBindingprotected List<MessageDestination>messageDestinationprotected List<MethodPermission>methodPermissionprotected List<SecurityRole>securityRole
-
Constructor Summary
Constructors Constructor Description AssemblyDescriptor()
-
Method Summary
-
-
-
Field Detail
-
securityRole
protected List<SecurityRole> securityRole
-
methodPermission
protected List<MethodPermission> methodPermission
-
containerTransaction
protected List<ContainerTransaction> containerTransaction
-
containerConcurrency
protected List<ContainerConcurrency> containerConcurrency
-
interceptorBinding
protected List<InterceptorBinding> interceptorBinding
-
messageDestination
protected List<MessageDestination> messageDestination
-
excludeList
protected ExcludeList excludeList
-
applicationException
protected KeyedCollection<String,ApplicationException> applicationException
-
id
protected String id
-
-
Method Detail
-
getSecurityRole
public List<SecurityRole> getSecurityRole()
-
getMethodPermission
public List<MethodPermission> getMethodPermission()
-
getContainerTransaction
public List<ContainerTransaction> getContainerTransaction()
-
getMethodTransactionMap
public Map<String,List<MethodAttribute>> getMethodTransactionMap(String ejbName)
-
getContainerConcurrency
public List<ContainerConcurrency> getContainerConcurrency()
-
getMethodConcurrencyMap
public Map<String,List<MethodAttribute>> getMethodConcurrencyMap(String ejbName)
-
getInterceptorBinding
public List<InterceptorBinding> getInterceptorBinding()
-
addInterceptorBinding
public InterceptorBinding addInterceptorBinding(InterceptorBinding binding)
-
getMessageDestination
public List<MessageDestination> getMessageDestination()
-
getExcludeList
public ExcludeList getExcludeList()
-
setExcludeList
public void setExcludeList(ExcludeList value)
-
getApplicationException
public Collection<ApplicationException> getApplicationException()
-
getApplicationExceptionMap
public Map<String,ApplicationException> getApplicationExceptionMap()
-
getApplicationException
public ApplicationException getApplicationException(String className)
-
getApplicationException
public ApplicationException getApplicationException(Class clazz)
-
addApplicationException
public void addApplicationException(Class clazz, boolean rollback, boolean inherited)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-