Package org.apache.openejb.jee
Class ConnectionDefinition
- java.lang.Object
-
- org.apache.openejb.jee.ConnectionDefinition
-
public class ConnectionDefinition extends Object
connector_1_6.xsdJava class for connection-definitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="connection-definitionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="managedconnectionfactory-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> <element name="config-property" type="{http://java.sun.com/xml/ns/javaee}config-propertyType" maxOccurs="unbounded" minOccurs="0"/> <element name="connectionfactory-interface" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> <element name="connectionfactory-impl-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> <element name="connection-interface" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> <element name="connection-impl-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/> </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<ConfigProperty>configPropertyprotected StringconnectionFactoryImplClassprotected StringconnectionFactoryInterfaceprotected StringconnectionImplClassprotected StringconnectionInterfaceprotected Stringidprotected StringmanagedConnectionFactoryClass
-
Constructor Summary
Constructors Constructor Description ConnectionDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ConfigProperty>getConfigProperty()StringgetConnectionFactoryImplClass()StringgetConnectionFactoryInterface()StringgetConnectionImplClass()StringgetConnectionInterface()StringgetId()StringgetManagedConnectionFactoryClass()voidsetConnectionFactoryImplClass(String value)voidsetConnectionFactoryInterface(String value)voidsetConnectionImplClass(String value)voidsetConnectionInterface(String value)voidsetId(String value)voidsetManagedConnectionFactoryClass(String value)
-
-
-
Field Detail
-
managedConnectionFactoryClass
protected String managedConnectionFactoryClass
-
configProperty
protected List<ConfigProperty> configProperty
-
connectionFactoryInterface
protected String connectionFactoryInterface
-
connectionFactoryImplClass
protected String connectionFactoryImplClass
-
connectionInterface
protected String connectionInterface
-
connectionImplClass
protected String connectionImplClass
-
id
protected String id
-
-
Method Detail
-
getManagedConnectionFactoryClass
public String getManagedConnectionFactoryClass()
-
setManagedConnectionFactoryClass
public void setManagedConnectionFactoryClass(String value)
-
getConfigProperty
public List<ConfigProperty> getConfigProperty()
-
getConnectionFactoryInterface
public String getConnectionFactoryInterface()
-
setConnectionFactoryInterface
public void setConnectionFactoryInterface(String value)
-
getConnectionFactoryImplClass
public String getConnectionFactoryImplClass()
-
setConnectionFactoryImplClass
public void setConnectionFactoryImplClass(String value)
-
getConnectionInterface
public String getConnectionInterface()
-
setConnectionInterface
public void setConnectionInterface(String value)
-
getConnectionImplClass
public String getConnectionImplClass()
-
setConnectionImplClass
public void setConnectionImplClass(String value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-