Interface Driver
-
- All Superinterfaces:
JCAMetadata,Serializable,ValidatableMetadata
public interface Driver extends JCAMetadata, ValidatableMetadata
A DataSource.- Author:
- Stefano Maestri
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDriver.AttributeA Attribute.static classDriver.TagA Tag.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDataSourceClass()Get the DataSourceClass.StringgetDriverClass()Get the DriverClass.IntegergetMajorVersion()Get the MajorVersionIntegergetMinorVersion()Get the MinorVersionStringgetModule()Get the module providing the driver.StringgetName()Get the name.StringgetXaDataSourceClass()Get the XaDataSourceClass.-
Methods inherited from interface org.jboss.jca.common.api.metadata.ValidatableMetadata
validate
-
-
-
-
Method Detail
-
getName
String getName()
Get the name.- Returns:
- the name.
-
getMajorVersion
Integer getMajorVersion()
Get the MajorVersion- Returns:
- the MajorVersion.
-
getMinorVersion
Integer getMinorVersion()
Get the MinorVersion- Returns:
- the MinorVersion.
-
getModule
String getModule()
Get the module providing the driver. Used in AS7 configuration- Returns:
- the module.
-
getDriverClass
String getDriverClass()
Get the DriverClass.- Returns:
- the module.
-
getDataSourceClass
String getDataSourceClass()
Get the DataSourceClass.- Returns:
- the DataSourceClass.
-
getXaDataSourceClass
String getXaDataSourceClass()
Get the XaDataSourceClass.- Returns:
- the XaDataSourceClass.
-
-