Package org.apache.openejb.jee
Class OutboundResourceAdapter
- java.lang.Object
-
- org.apache.openejb.jee.OutboundResourceAdapter
-
public class OutboundResourceAdapter extends Object
connector_1_6.xsdJava class for outbound-resourceadapterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="outbound-resourceadapterType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="connection-definition" type="{http://java.sun.com/xml/ns/javaee}connection-definitionType" maxOccurs="unbounded" minOccurs="0"/> <element name="transaction-support" type="{http://java.sun.com/xml/ns/javaee}transaction-supportType" minOccurs="0"/> <element name="authentication-mechanism" type="{http://java.sun.com/xml/ns/javaee}authentication-mechanismType" maxOccurs="unbounded" minOccurs="0"/> <element name="reauthentication-support" type="{http://java.sun.com/xml/ns/javaee}true-falseType" 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<AuthenticationMechanism>authenticationMechanismprotected List<ConnectionDefinition>connectionDefinitionprotected Stringidprotected BooleanreauthenticationSupportprotected TransactionSupportTypetransactionSupport
-
Constructor Summary
Constructors Constructor Description OutboundResourceAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AuthenticationMechanism>getAuthenticationMechanism()List<ConnectionDefinition>getConnectionDefinition()StringgetId()TransactionSupportTypegetTransactionSupport()BooleanisReauthenticationSupport()Gets the value of the reauthenticationSupport property.voidsetId(String value)voidsetReauthenticationSupport(Boolean value)Sets the value of the reauthenticationSupport property.voidsetTransactionSupport(TransactionSupportType value)
-
-
-
Field Detail
-
connectionDefinition
protected List<ConnectionDefinition> connectionDefinition
-
transactionSupport
protected TransactionSupportType transactionSupport
-
authenticationMechanism
protected List<AuthenticationMechanism> authenticationMechanism
-
reauthenticationSupport
protected Boolean reauthenticationSupport
-
id
protected String id
-
-
Method Detail
-
getConnectionDefinition
public List<ConnectionDefinition> getConnectionDefinition()
-
getTransactionSupport
public TransactionSupportType getTransactionSupport()
-
setTransactionSupport
public void setTransactionSupport(TransactionSupportType value)
-
getAuthenticationMechanism
public List<AuthenticationMechanism> getAuthenticationMechanism()
-
isReauthenticationSupport
public Boolean isReauthenticationSupport()
Gets the value of the reauthenticationSupport property.
-
setReauthenticationSupport
public void setReauthenticationSupport(Boolean value)
Sets the value of the reauthenticationSupport property.
-
getId
public String getId()
-
setId
public void setId(String value)
-
-