|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ConnectionDefintionType<T>
This interface defines the contract for the connection-defintionType
xsd type
Method Summary | |
---|---|
ConnectionDefintionType<T> |
className(String className)
Sets the class-name attribute |
ConfigPropertyType<ConnectionDefintionType<T>> |
createConfigProperty()
Creates a new config-property element |
ConnectionDefintionType<T> |
enabled(Boolean enabled)
Sets the enabled attribute |
List<ConfigPropertyType<ConnectionDefintionType<T>>> |
getAllConfigProperty()
Returns all config-property elements |
String |
getClassName()
Returns the class-name attribute |
String |
getJndiName()
Returns the jndi-name attribute |
ConfigPropertyType<ConnectionDefintionType<T>> |
getOrCreateConfigProperty()
If not already created, a new config-property element will be created and returned. |
PoolType<ConnectionDefintionType<T>> |
getOrCreatePool()
If not already created, a new pool element with the given value will be created. |
RecoverType<ConnectionDefintionType<T>> |
getOrCreateRecovery()
If not already created, a new recovery element with the given value will be created. |
SecurityType<ConnectionDefintionType<T>> |
getOrCreateSecurity()
If not already created, a new security element with the given value will be created. |
TimeoutType<ConnectionDefintionType<T>> |
getOrCreateTimeout()
If not already created, a new timeout element with the given value will be created. |
ValidationType<ConnectionDefintionType<T>> |
getOrCreateValidation()
If not already created, a new validation element with the given value will be created. |
XaPoolType<ConnectionDefintionType<T>> |
getOrCreateXaPool()
If not already created, a new xa-pool element with the given value will be created. |
String |
getPoolName()
Returns the pool-name attribute |
Boolean |
isEnabled()
Returns the enabled attribute |
Boolean |
isUseCcm()
Returns the use-ccm attribute |
Boolean |
isUseJavaContext()
Returns the use-java-context attribute |
ConnectionDefintionType<T> |
jndiName(String jndiName)
Sets the jndi-name attribute |
ConnectionDefintionType<T> |
poolName(String poolName)
Sets the pool-name attribute |
ConnectionDefintionType<T> |
removeAllConfigProperty()
Removes all config-property elements |
ConnectionDefintionType<T> |
removeClassName()
Removes the class-name attribute |
ConnectionDefintionType<T> |
removeEnabled()
Removes the enabled attribute |
ConnectionDefintionType<T> |
removeJndiName()
Removes the jndi-name attribute |
ConnectionDefintionType<T> |
removePool()
Removes the pool element |
ConnectionDefintionType<T> |
removePoolName()
Removes the pool-name attribute |
ConnectionDefintionType<T> |
removeRecovery()
Removes the recovery element |
ConnectionDefintionType<T> |
removeSecurity()
Removes the security element |
ConnectionDefintionType<T> |
removeTimeout()
Removes the timeout element |
ConnectionDefintionType<T> |
removeUseCcm()
Removes the use-ccm attribute |
ConnectionDefintionType<T> |
removeUseJavaContext()
Removes the use-java-context attribute |
ConnectionDefintionType<T> |
removeValidation()
Removes the validation element |
ConnectionDefintionType<T> |
removeXaPool()
Removes the xa-pool element |
ConnectionDefintionType<T> |
useCcm(Boolean useCcm)
Sets the use-ccm attribute |
ConnectionDefintionType<T> |
useJavaContext(Boolean useJavaContext)
Sets the use-java-context attribute |
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child |
---|
up |
Method Detail |
---|
ConnectionDefintionType<T> className(String className)
class-name
attribute
className
- the value for the attribute class-name
ConnectionDefintionType
String getClassName()
class-name
attribute
class-name
ConnectionDefintionType<T> removeClassName()
class-name
attribute
ConnectionDefintionType
ConnectionDefintionType<T> jndiName(String jndiName)
jndi-name
attribute
jndiName
- the value for the attribute jndi-name
ConnectionDefintionType
String getJndiName()
jndi-name
attribute
jndi-name
ConnectionDefintionType<T> removeJndiName()
jndi-name
attribute
ConnectionDefintionType
ConnectionDefintionType<T> enabled(Boolean enabled)
enabled
attribute
enabled
- the value for the attribute enabled
ConnectionDefintionType
Boolean isEnabled()
enabled
attribute
enabled
ConnectionDefintionType<T> removeEnabled()
enabled
attribute
ConnectionDefintionType
ConnectionDefintionType<T> useJavaContext(Boolean useJavaContext)
use-java-context
attribute
useJavaContext
- the value for the attribute use-java-context
ConnectionDefintionType
Boolean isUseJavaContext()
use-java-context
attribute
use-java-context
ConnectionDefintionType<T> removeUseJavaContext()
use-java-context
attribute
ConnectionDefintionType
ConnectionDefintionType<T> poolName(String poolName)
pool-name
attribute
poolName
- the value for the attribute pool-name
ConnectionDefintionType
String getPoolName()
pool-name
attribute
pool-name
ConnectionDefintionType<T> removePoolName()
pool-name
attribute
ConnectionDefintionType
ConfigPropertyType<ConnectionDefintionType<T>> getOrCreateConfigProperty()
config-property
element will be created and returned.
Otherwise, the first existing config-property
element will be returned.
config-property
ConfigPropertyType<ConnectionDefintionType<T>> createConfigProperty()
config-property
element
ConfigPropertyType>
List<ConfigPropertyType<ConnectionDefintionType<T>>> getAllConfigProperty()
config-property
elements
config-property
ConnectionDefintionType<T> removeAllConfigProperty()
config-property
elements
ConfigPropertyType>
PoolType<ConnectionDefintionType<T>> getOrCreatePool()
pool
element with the given value will be created.
Otherwise, the existing pool
element will be returned.
PoolType>
ConnectionDefintionType<T> removePool()
pool
element
ConnectionDefintionType
XaPoolType<ConnectionDefintionType<T>> getOrCreateXaPool()
xa-pool
element with the given value will be created.
Otherwise, the existing xa-pool
element will be returned.
XaPoolType>
ConnectionDefintionType<T> removeXaPool()
xa-pool
element
ConnectionDefintionType
SecurityType<ConnectionDefintionType<T>> getOrCreateSecurity()
security
element with the given value will be created.
Otherwise, the existing security
element will be returned.
SecurityType>
ConnectionDefintionType<T> removeSecurity()
security
element
ConnectionDefintionType
TimeoutType<ConnectionDefintionType<T>> getOrCreateTimeout()
timeout
element with the given value will be created.
Otherwise, the existing timeout
element will be returned.
TimeoutType>
ConnectionDefintionType<T> removeTimeout()
timeout
element
ConnectionDefintionType
ValidationType<ConnectionDefintionType<T>> getOrCreateValidation()
validation
element with the given value will be created.
Otherwise, the existing validation
element will be returned.
ValidationType>
ConnectionDefintionType<T> removeValidation()
validation
element
ConnectionDefintionType
RecoverType<ConnectionDefintionType<T>> getOrCreateRecovery()
recovery
element with the given value will be created.
Otherwise, the existing recovery
element will be returned.
RecoverType>
ConnectionDefintionType<T> removeRecovery()
recovery
element
ConnectionDefintionType
ConnectionDefintionType<T> useCcm(Boolean useCcm)
use-ccm
attribute
useCcm
- the value for the attribute use-ccm
ConnectionDefintionType
Boolean isUseCcm()
use-ccm
attribute
use-ccm
ConnectionDefintionType<T> removeUseCcm()
use-ccm
attribute
ConnectionDefintionType
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |