Package org.apache.openejb.jee
Class ResourceAdapter
- java.lang.Object
-
- org.apache.openejb.jee.ResourceAdapter
-
public class ResourceAdapter extends Object
connector_1_6.xsdJava class for resourceadapterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="resourceadapterType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="resourceadapter-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> <element name="config-property" type="{http://java.sun.com/xml/ns/javaee}config-propertyType" maxOccurs="unbounded" minOccurs="0"/> <element name="outbound-resourceadapter" type="{http://java.sun.com/xml/ns/javaee}outbound-resourceadapterType" minOccurs="0"/> <element name="inbound-resourceadapter" type="{http://java.sun.com/xml/ns/javaee}inbound-resourceadapterType" minOccurs="0"/> <element name="adminobject" type="{http://java.sun.com/xml/ns/javaee}adminobjectType" maxOccurs="unbounded" minOccurs="0"/> <element name="security-permission" type="{http://java.sun.com/xml/ns/javaee}security-permissionType" 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 List<AdminObject>adminObjectprotected List<ConfigProperty>configPropertyprotected Stringidprotected InboundResourceadapterinboundResourceAdapterprotected OutboundResourceAdapteroutboundResourceAdapterprotected StringresourceAdapterClassprotected List<SecurityPermission>securityPermission
-
Constructor Summary
Constructors Constructor Description ResourceAdapter()ResourceAdapter(Class resourceAdapterClass)ResourceAdapter(String resourceAdapterClass)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AdminObject>getAdminObject()List<ConfigProperty>getConfigProperty()StringgetId()InboundResourceadaptergetInboundResourceAdapter()OutboundResourceAdaptergetOutboundResourceAdapter()StringgetResourceAdapterClass()List<SecurityPermission>getSecurityPermission()static ResourceAdapternewResourceAdapter(ResourceAdapter10 source)voidsetId(String value)InboundResourceadaptersetInboundResourceAdapter(InboundResourceadapter value)OutboundResourceAdaptersetOutboundResourceAdapter(OutboundResourceAdapter value)voidsetResourceAdapterClass(String value)
-
-
-
Field Detail
-
resourceAdapterClass
protected String resourceAdapterClass
-
configProperty
protected List<ConfigProperty> configProperty
-
outboundResourceAdapter
protected OutboundResourceAdapter outboundResourceAdapter
-
inboundResourceAdapter
protected InboundResourceadapter inboundResourceAdapter
-
adminObject
protected List<AdminObject> adminObject
-
securityPermission
protected List<SecurityPermission> securityPermission
-
id
protected String id
-
-
Method Detail
-
newResourceAdapter
public static ResourceAdapter newResourceAdapter(ResourceAdapter10 source)
-
getResourceAdapterClass
public String getResourceAdapterClass()
-
setResourceAdapterClass
public void setResourceAdapterClass(String value)
-
getConfigProperty
public List<ConfigProperty> getConfigProperty()
-
getOutboundResourceAdapter
public OutboundResourceAdapter getOutboundResourceAdapter()
-
setOutboundResourceAdapter
public OutboundResourceAdapter setOutboundResourceAdapter(OutboundResourceAdapter value)
-
getInboundResourceAdapter
public InboundResourceadapter getInboundResourceAdapter()
-
setInboundResourceAdapter
public InboundResourceadapter setInboundResourceAdapter(InboundResourceadapter value)
-
getAdminObject
public List<AdminObject> getAdminObject()
-
getSecurityPermission
public List<SecurityPermission> getSecurityPermission()
-
getId
public String getId()
-
setId
public void setId(String value)
-
-