javax.resource.cci

Interface ConnectionFactory

  • All Superinterfaces:
    Referenceable, Serializable

    public interface ConnectionFactory
    extends Serializable, Referenceable
    ConnectionFactory provides an interface for getting connection to an EIS instance. An implementation of ConnectionFactory interface is provided by a resource adapter.

    Application code looks up a ConnectionFactory instance from JNDI namespace and uses it to get EIS connections.

    An implementation class for ConnectionFactory is required to implement java.io.Serializable and javax.resource.Referenceableinterfaces to support JNDI registration.

    Version:
    0.8
    Author:
    Rahul Sharma
    See Also:
    Connection, Referenceable
    • Method Detail

      • getConnection

        Connection getConnection()
                          throws ResourceException
        Gets a connection to an EIS instance. This getConnection variant should be used when a component wants the container to manage EIS sign-on. This case is termed container-managed sign-on. The component does not pass any security information.
        Returns:
        Connection instance
        Throws:
        ResourceException - Failed to get a connection to the EIS instance. Examples of error cases are:
        • Invalid configuration of ManagedConnectionFactory-- example: invalid server name
        • Application server-internal error--example: connection pool related error
        • Communication error
        • EIS-specific error--example: EIS not active
        • Resource adapter-internal error
        • Security related error; example: invalid user
        • Failure to allocate system resources
      • getConnection

        Connection getConnection(ConnectionSpec properties)
                          throws ResourceException
        Gets a connection to an EIS instance. A component should use the getConnection variant with javax.resource.cci.ConnectionSpec parameter, if it needs to pass any resource adapter specific security information and connection parameters. In the component- managed sign-on case, an application component passes security information (example: username, password) through the ConnectionSpec instance.

        It is important to note that the properties passed through the getConnection method should be client-specific (example: username, password, language) and not related to the configuration of a target EIS instance (example: port number, server name). The ManagedConnectionFactory instance is configured with complete set of properties required for the creation of a connection to an EIS instance.

        Parameters:
        properties - Connection parameters and security information specified as ConnectionSpec instance
        Returns:
        Connection instance
        Throws:
        ResourceException - Failed to get a connection to the EIS instance. Examples of error cases are:
        • Invalid specification of input parameters
        • Invalid configuration of ManagedConnectionFactory-- example: invalid server name
        • Application server-internal error--example: connection pool related error
        • Communication error
        • EIS-specific error--example: EIS not active
        • Resource adapter-internal error
        • Security related error; example: invalid user
        • Failure to allocate system resources
        See Also:
        ConnectionSpec
      • getMetaData

        ResourceAdapterMetaData getMetaData()
                                     throws ResourceException
        Gets metadata for the Resource Adapter. Note that the metadata information is about the ResourceAdapter and not the EIS instance. An invocation of this method does not require that an active connection to an EIS instance should have been established.
        Returns:
        ResourceAdapterMetaData instance
        Throws:
        ResourceException - Failed to get metadata information about the resource adapter

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/resource/cci/ConnectionFactory.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com/en/java/, Interface ConnectionFactory

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.