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.

    Since:
    0.8
    Version:
    0.8
    Author:
    Rahul Sharma
    See Also:
    ConnectionFactory
    • Method Detail

      • getAdapterVersion

        String getAdapterVersion()
        Gets the version of the resource adapter.
        Returns:
        String representing version of the resource adapter
      • getAdapterVendorName

        String getAdapterVendorName()
        Gets the name of the vendor that has provided the resource adapter.
        Returns:
        String representing name of the vendor that has provided the resource adapter
      • getAdapterName

        String getAdapterName()
        Gets a tool displayable name of the resource adapter.
        Returns:
        String representing the name of the resource adapter
      • getAdapterShortDescription

        String getAdapterShortDescription()
        Gets a tool displayable short desription of the resource adapter.
        Returns:
        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.
        Returns:
        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.
        Returns:
        Array of fully-qualified class names of InteractionSpec classes supported by this resource adapter's CCI implementation
        See Also:
        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.
        Returns:
        boolean depending on method support
        See Also:
        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.
        Returns:
        boolean depending on method support
        See Also:
        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.
        Returns:
        true if resource adapter supports resource manager local transaction demarcation through LocalTransaction interface; false otherwise
        See Also:
        LocalTransaction

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 17:01:56 Cette version de la page est en cache (à la date du 21/08/2025 17:01:56) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 19/04/2008, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/resource/cci/ResourceAdapterMetaData.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, ResourceAdapterMetaData (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.