站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档

ConnectionFactory (JBoss J2EE API) - JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档


javax.xml.registry
Class ConnectionFactory

java.lang.Object
  extended byjavax.xml.registry.ConnectionFactory

public abstract class ConnectionFactory
extends Object

This is the abstract base class for factory classes for creating a JAXR connection. A JAXR ConnectionFactory object is configured in a provider-specific way to create connections with registry providers. Looking Up a ConnectionFactory Using the JNDI API The preferred way for a client to look up a JAXR ConnectionFactory is within the Java Naming and Directory InterfaceTM (JNDI) API. A ConnectionFactory object is registered with a naming service in a provider specific way, such as one based on the JNDI API. This registration associates the ConnectionFactory object with a logical name. When an application wants to establish a connection with the provider associated with that ConnectionFactory object, it does a lookup, providing the logical name. The application can then use the ConnectionFactory object that is returned to create a connection to the messaging provider. Looking Up a ConnectionFactory Without Using the JNDI API The JAXR API provides an alternative way to look up a JAXR ConnectionFactory that does not require the use of the JNDI API. This is done using the newInstance static method on the abstract class ConnectionFactory provided in the JAXR API. The newInstance method returns a JAXR ConnectionFactory. The client may indicate which factory class should be instantiated by the newInstance method by defining the system property javax.xml.registry.ConnectionFactoryClass. If this property is not set, the JAXR provider must return a default ConnectionFactory instance.

Version:
$Revision: 1.1 $
Author:
Scott.Stark@jboss.org, Farrukh S. Najmi (javadoc)

Constructor Summary
ConnectionFactory()
           
 
Method Summary
abstract  Connection createConnection()
           
abstract  FederatedConnection createFederatedConnection(Collection connections)
           
abstract  Properties getProperties()
           
static ConnectionFactory newInstance()
           
abstract  void setProperties(Properties factoryProps)
          Sets the Properties used during createConnection and createFederatedConnection calls.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConnectionFactory

public ConnectionFactory()
Method Detail

newInstance

public static ConnectionFactory newInstance()
                                     throws JAXRException
Throws:
JAXRException

createConnection

public abstract Connection createConnection()
                                     throws JAXRException
Throws:
JAXRException

createFederatedConnection

public abstract FederatedConnection createFederatedConnection(Collection connections)
                                                       throws JAXRException
Throws:
JAXRException

getProperties

public abstract Properties getProperties()
                                  throws JAXRException
Throws:
JAXRException

setProperties

public abstract void setProperties(Properties factoryProps)
                            throws JAXRException
Sets the Properties used during createConnection and createFederatedConnection calls. Standard Connection Properties: javax.xml.registry.queryManagerURL - URL String for the query manager service within the target registry provider javax.xml.registry.lifeCycleManagerURL - URL String for the life cycle manager service within the target registry provider. If unspecified, must default to value of the queryManagerURL described above javax.xml.registry.semanticEquivalences - String that allows specification of semantic equivalences javax.xml.registry.security.authenticationMethod - string that provides a hint to the JAXR provider on the authentication method to be used when authenticating with the registry provider. Possible value include but are not limited to "UDDI_GET_AUTHTOKEN", "HTTP_BASIC", "CLIENT_CERTIFICATE", "MS_PASSPORT" javax.xml.registry.uddi.maxRows - integer that specifies the maximum number of rows to be returned for find operations. This property is specific for UDDI providers javax.xml.registry.postalAddressScheme - String that specifies the id of a ClassificationScheme that is used as the default postal address scheme for this connection

Parameters:
factoryProps -
Throws:
JAXRException


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.