ResourceAdapterMetaData (Java EE 5 SDK)

Java

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


javax.resource.cci Interface ResourceAdapterMetaData


public interface ResourceAdapterMetaData

The interface javax.resource.cci.ResourceAdapterMetaData provides information about capabilities of a resource adapter implementation. Note that this interface does not provide information about an EIS instance that is connected through the resource adapter.

A CCI client uses a ConnectionFactory.getMetaData to get metadata information about the resource adapter. The getMetaData method does not require that an active connection to an EIS instance should have been established.

The ResourceAdapterMetaData can be extended to provide more information specific to a resource adapter implementation.

从以下版本开始:
0.8
版本:
0.8
作者:
Rahul Sharma
另请参见:
ConnectionFactory

方法摘要
 String getAdapterName()
          Gets a tool displayable name of the resource adapter.
 String getAdapterShortDescription()
          Gets a tool displayable short desription of the resource adapter.
 String getAdapterVendorName()
          Gets the name of the vendor that has provided the resource adapter.
 String getAdapterVersion()
          Gets the version of the resource adapter.
 String[] getInteractionSpecsSupported()
          Returns an array of fully-qualified names of InteractionSpec types supported by the CCI implementation for this resource adapter.
 String getSpecVersion()
          Returns a string representation of the version of the connector architecture specification that is supported by the resource adapter.
 boolean supportsExecuteWithInputAndOutputRecord()
          Returns true if the implementation class for the Interaction interface implements public boolean execute(InteractionSpec ispec, Record input, Record output) method; otherwise the method returns false.
 boolean supportsExecuteWithInputRecordOnly()
          Returns true if the implementation class for the Interaction interface implements public Record execute(InteractionSpec ispec, Record input) method; otherwise the method returns false.
 boolean supportsLocalTransactionDemarcation()
          Returns true if the resource adapter implements the LocalTransaction interface and supports local transaction demarcation on the underlying EIS instance through the LocalTransaction interface.
 

方法详细信息

getAdapterVersion

String getAdapterVersion()
Gets the version of the resource adapter.

返回:
String representing version of the resource adapter

getAdapterVendorName

String getAdapterVendorName()
Gets the name of the vendor that has provided the resource adapter.

返回:
String representing name of the vendor that has provided the resource adapter

getAdapterName

String getAdapterName()
Gets a tool displayable name of the resource adapter.

返回:
String representing the name of the resource adapter

getAdapterShortDescription

String getAdapterShortDescription()
Gets a tool displayable short desription of the resource adapter.

返回:
String describing the resource adapter

getSpecVersion

String getSpecVersion()
Returns a string representation of the version of the connector architecture specification that is supported by the resource adapter.

返回:
String representing the supported version of the connector architecture

getInteractionSpecsSupported

String[] getInteractionSpecsSupported()
Returns an array of fully-qualified names of InteractionSpec types supported by the CCI implementation for this resource adapter. Note that the fully-qualified class name is for the implementation class of an InteractionSpec. This method may be used by tools vendor to find information on the supported InteractionSpec types. The method should return an array of length 0 if the CCI implementation does not define specific InteractionSpec types.

返回:
Array of fully-qualified class names of InteractionSpec classes supported by this resource adapter's CCI implementation
另请参见:
InteractionSpec

supportsExecuteWithInputAndOutputRecord

boolean supportsExecuteWithInputAndOutputRecord()
Returns true if the implementation class for the Interaction interface implements public boolean execute(InteractionSpec ispec, Record input, Record output) method; otherwise the method returns false.

返回:
boolean depending on method support
另请参见:
Interaction

supportsExecuteWithInputRecordOnly

boolean supportsExecuteWithInputRecordOnly()
Returns true if the implementation class for the Interaction interface implements public Record execute(InteractionSpec ispec, Record input) method; otherwise the method returns false.

返回:
boolean depending on method support
另请参见:
Interaction

supportsLocalTransactionDemarcation

boolean supportsLocalTransactionDemarcation()
Returns true if the resource adapter implements the LocalTransaction interface and supports local transaction demarcation on the underlying EIS instance through the LocalTransaction interface.

返回:
true if resource adapter supports resource manager local transaction demarcation through LocalTransaction interface; false otherwise
另请参见:
LocalTransaction

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


提交错误或意见

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.