com.ibm.connector2.ims.ico

Class IMSConnectionFactory

  1. java.lang.Object
  2. extended bycom.ibm.connector2.ims.ico.IMSConnectionFactory
All implemented interfaces:
java.io.Serializable

  1. public class IMSConnectionFactory
  2. extends java.lang.Object
  3. implements java.io.Serializable
The IMSConnectionFactory class provides an interface for getting connections to IMS Connect and, in turn, IMS OTMA. Connections are represented by IMSConnection instances, and are application-level handles to underlying physical connections such as TCP/IP sockets or Local Option connections. An application that uses the Common Client Interface (CCI) can look up an IMSConnectionFactory instance from the JNDI namespace and then use it to get an IMSConnection instance. This method is typically used when running in the managed environment of an application server such as WebSphere. For example:
        IMSConnectionFactory cf = null;
        Context ctx = null;
        // Create the initial context
        ctx = new InitialContext();
        // Get an IMSConnectionFactory instance.
        cf = (IMSConnectionFactory) ctx.lookup("java:comp/env/myIMSTarget");
 

If JNDI is not configured, a CCI application can manually configure an IMSManagedConnectionFactory object and use it to obtain a connection factory. This method can be used in a non-managed environment such as running outside of an application server, in development mode, or when JNDI lookup fails.

        IMSConnectionFactory cf = null;
        IMSManagedConnectionFactory mcf = new IMSManagedConnectionFactory();
        mcf.setHostName("myHostName");
        mcf.setPortNumber(new Integer(9999));
        mcf.setDataStoreName("myIMS");
        ...
        cf = (IMSConnectionFactory) mcf.createConnectionFactory();
 
See Also:
IMSConnection, IMSManagedConnectionFactory, Serialized Form

Constructor Summary

Constructor and Description
IMSConnectionFactory()
Creates an IMSConnectionFactory instance.
IMSConnectionFactory(javax.resource.spi.ConnectionManager aConnectionManager)
This constructor is used by IMSManagedConnectionFactory to create an IMSConnectionFactory instance.

Method Summary

Modifier and Type Method and Description
  1. javax.resource.cci.Connection
getConnection()
Gets a connection to a particular IMS Connect instance and, in turn, to a particular IMS OTMA.
  1. javax.resource.cci.Connection
getConnection(javax.resource.cci.ConnectionSpec aConnectionSpec)
Gets a connection to a particular IMS Connect instance and, in turn, to a particular IMS OTMA.
  1. ConnectionManager
getConnectionManager()
Returns a reference to the ConnectionManager.
  1. ResourceAdapterMetaData
getMetaData()
Returns meta information about IMS Connector for Java, the resource adapter.
  1. RecordFactory
getRecordFactory()
Gets a RecordFactory (not supported).
  1. javax.naming.Reference
getReference()
  1. void
setReference(javax.naming.Reference aRef)
Sets the reference instance.
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

IMSConnectionFactory

  1. public IMSConnectionFactory()
Creates an IMSConnectionFactory instance.

IMSConnectionFactory

  1. public IMSConnectionFactory(javax.resource.spi.ConnectionManager aConnectionManager)
This constructor is used by IMSManagedConnectionFactory to create an IMSConnectionFactory instance.
Parameters:
aConnectionManager - The connection manager to be used to manage the connections created by this IMSConnectionFactory instance. The Connection Manager could be DefaultConnectionManager for the non-managed case or a connection manager provided by the application server in the managed case.

Method Detail

getConnection

  1. public javax.resource.cci.Connection getConnection( )
  2. throws javax.resource.ResourceException
Gets a connection to a particular IMS Connect instance and, in turn, to a particular IMS OTMA. This variant of the getConnection() method is used when the component requires the container to manage sign-on to IMS Connect/IMS (which is called container-managed sign-on), and does not need to send any other IMSConnectionSpec properties such as clientID.
Returns:
An IMSConnection instance.
Throws:
javax.resource.ResourceException - Failed to get an IMSConnection instance.
See Also:

getConnection

  1. public javax.resource.cci.Connection getConnection( javax.resource.cci.ConnectionSpec aConnectionSpec)
  2. throws javax.resource.ResourceException
Gets a connection to a particular IMS Connect instance and, in turn, to a particular IMS OTMA. This variant of the getConnection() method is used when a component needs to pass resource adapter specific security information and additional connection parameters.
  • For the IMS resource adapter, security information includes userName, password, and groupName. This information is provided in the component-managed sign-on case.
  • For the IMS resource adapter, additional connection parameters include the clientID. A value for clientID must be passed when the application is using a dedicated persistent socket connection to IMS Connect.

Both the security information and additional connection parameters are passed in an IMSConnectionSpec object.

Note: This will always be the version of getConnection used for component-managed sign-on.

Parameters:
aConnectionSpec - An IMSConnectionSpec instance containing security and/or connection information provided by the component.
Returns:
An IMSConnection instance.
Throws:
javax.resource.ResourceException -

If failed to get an IMSConnection instance.

See Also:

getMetaData

  1. public ResourceAdapterMetaData getMetaData( )
  2. throws javax.resource.ResourceException
Returns meta information about IMS Connector for Java, the resource adapter. An invocation of this method does not require that an active connection to IMS via IMS Connect exists.
Returns:
An IMSResourceAdapterMetaData instance containing information about IMS TM Resource Adapter.
Throws:
javax.resource.ResourceException

getRecordFactory

  1. public RecordFactory getRecordFactory( )
  2. throws javax.resource.ResourceException
Gets a RecordFactory (not supported).

Note: RecordFactory is not supported by IMS TM Resource Adapter.

Returns:
A RecordFactory instance.
Throws:
javax.resource.ResourceExecption -

Note: The derived exception javax.resource.NotSupportedExecption is thrown by getRecordFactory().

javax.resource.ResourceException

getReference

  1. public final javax.naming.Reference getReference( )
  2. throws javax.naming.NamingException
Returns:
A javax.naming.Reference instance.
Throws:
javax.naming.NamingException

setReference

  1. public final void setReference( javax.naming.Reference aRef)
Sets the reference instance.
Parameters:
aRef - The reference instance to set.

getConnectionManager

  1. public ConnectionManager getConnectionManager( )
Returns a reference to the ConnectionManager.
Returns:
A reference to the ConnectionManager.