Name

ResourceAdapterMetaData

Synopsis

This interface represents metadata about the resource adapter being used to generate and manage connections to a resource. This metadata is obtained by calling the ConnectionFactory.getMetaData() method.

public interface ResourceAdapterMetaData {
// Property Accessor Methods (by property name)
   public abstract String getAdapterName();  
   public abstract String getAdapterShortDescription();  
   public abstract String getAdapterVendorName();  
   public abstract String getAdapterVersion();  
   public abstract String[] getInteractionSpecsSupported(
        );  
   public abstract String getSpecVersion();  
// Public Instance Methods
   public abstract boolean supportsExecuteWithInputAndOutputRecord(
        );  
   public abstract boolean supportsExecuteWithInputRecordOnly(
        );  
   public abstract boolean supportsLocalTransactionDemarcation(
        );  
}

Returned By

javax.resource.cci.ConnectionFactory.getMetaData()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.