Interface CommonDataSource
-
- All Superinterfaces:
JCAMetadata,Serializable,ValidatableMetadata
- All Known Subinterfaces:
DataSource,XaDataSource
public interface CommonDataSource extends JCAMetadata, ValidatableMetadata
A CommonDataSource.- Author:
- Stefano Maestri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDriver()Get the driverStringgetJndiName()Get the jndiName.StringgetMcp()Get the mcpStringgetPoolName()Get the poolName.DsSecuritygetSecurity()Get the security.TimeOutgetTimeOut()Get the timeOutTransactionIsolationgetTransactionIsolation()Get the transactionIsolation.ValidationgetValidation()Get the validation.BooleanisEnabled()Get the enabled.BooleanisEnlistmentTrace()Get the enlistment traceBooleanisSpy()Get the spy.BooleanisUseCcm()Get the use-ccm.BooleanisUseJavaContext()Get the useJavaContext.voidsetEnabled(Boolean enabled)Set the enabled.-
Methods inherited from interface org.jboss.jca.common.api.metadata.ValidatableMetadata
validate
-
-
-
-
Method Detail
-
getTransactionIsolation
TransactionIsolation getTransactionIsolation()
Get the transactionIsolation.- Returns:
- the transactionIsolation.
-
getTimeOut
TimeOut getTimeOut()
Get the timeOut- Returns:
- the timeOut.
-
getSecurity
DsSecurity getSecurity()
Get the security.- Returns:
- the security.
-
getValidation
Validation getValidation()
Get the validation.- Returns:
- the validation.
-
isUseJavaContext
Boolean isUseJavaContext()
Get the useJavaContext.- Returns:
- the useJavaContext.
-
getPoolName
String getPoolName()
Get the poolName.- Returns:
- the poolName.
-
isEnabled
Boolean isEnabled()
Get the enabled.- Returns:
- the enabled.
-
getJndiName
String getJndiName()
Get the jndiName.- Returns:
- the jndiName.
-
isSpy
Boolean isSpy()
Get the spy.- Returns:
- the spy.
-
isUseCcm
Boolean isUseCcm()
Get the use-ccm.- Returns:
- the use-ccm.
-
getMcp
String getMcp()
Get the mcp- Returns:
- the mcp
-
isEnlistmentTrace
Boolean isEnlistmentTrace()
Get the enlistment trace- Returns:
- the enlistment trace
-
getDriver
String getDriver()
Get the driver- Returns:
- The value
-
setEnabled
void setEnabled(Boolean enabled)
Set the enabled.- Parameters:
enabled- The enabled to set.
-
-