-
br.com.humberto.jdbc.ConnectionFactory
-
br.inatel.ec.ac308.agenda.dao.ConnectionFactory
-
ch.marcsladek.jrtnp.connection.ConnectionFactory
-
ch.rakudave.jnetmap.model.factories.ConnectionFactory
-
com.atomikos.datasource.pool.ConnectionFactory
-
com.github.kevinsawicki.http.HttpRequest.ConnectionFactory
-
com.github.neuralnetworks.architecture.ConnectionFactory
Factory for connections. In order to use shared weights it cannot be static.
-
com.netflix.staash.connection.ConnectionFactory
-
com.rabbitmq.client.ConnectionFactory
Convenience "factory" class to facilitate opening a {@link Connection} to an AMQP broker.
-
com.sun.messaging.ConnectionFactory
A ConnectionFactory
is used to create Connections with the Sun MQ Java Message Service (JMS) provider.
@see javax.jms.ConnectionFactory javax.jms.ConnectionFactory
@see com.sun.messaging.ConnectionConfiguration com.sun.messaging.ConnectionConfiguration
-
de.fu_berlin.inf.dpp.videosharing.net.ConnectionFactory
Factory for creating the needed connections for video-sharing.
@author s-lau
-
de.zib.scalaris.ConnectionFactory
Provides means to create connections to scalaris nodes. This class uses a singleton-alike pattern providing a global (static) instance through its {@link #getInstance()} method but also allowing forobject construction which might be useful when using multiple threads each creating its own connections. The location of the default configuration file used by {@link #ConnectionFactory()} can be overridden by specifying the
scalaris.java.config system property - otherwise the class tries to load
scalaris.properties. A specific property can also be overridden specifying a (non-empty) system property with its name. A user-defined {@link Properties} object can also be used by creating objectswith {@link #ConnectionFactory(Properties)} or setting the new values with{@link #setProperties(Properties)} but must provide the following values(default values as shown)
- scalaris.node = "node1@localhost"
- scalaris.cookie = "chocolate chip cookie"
- scalaris.client.name = "java_client"
- scalaris.client.appendUUID = "true"
Note: {@code scalaris.node} can be a whitespace, ',' or ';' separated list ofavailable nodes. See {@link DefaultConnectionPolicy} about how this list isused when connections are setup or when existing connections fail. Since Java and Erlang both need to known the same node name in order to connect, any "@localhost" in such a name is translated using {@link #fixLocalhostName(String)} to a real node name. The best method ofchanging this name is to use the name Erlang uses - it can be provided by setting the
scalaris.erlang.nodename system property. If this is not set or empty, we will try to look-up the name ourselves (see {@link #getLocalhostName()}. The {@link #connectionPolicy} set will be passed on to created connections.Changing it via {@link #setConnectionPolicy(ConnectionPolicy)} will notchange previously created connections - they keep the old policy. By default, {@link DefaultConnectionPolicy} is used.
@author Nico Kruber, kruber@zib.de
@version 3.10
@since 2.0
-
jade.imtp.leap.JICP.ConnectionFactory
@author Giovanni Caire - Telecom Italia LAB S.p.A.
-
javax.jms.ConnectionFactory
@version $Rev: 46019 $ $Date: 2004-09-14 03:56:06 -0600 (Tue, 14 Sep 2004) $
-
javax.resource.cci.ConnectionFactory
@version $Rev: 46019 $ $Date: 2004-09-14 03:56:06 -0600 (Tue, 14 Sep 2004) $
-
javax.xml.registry.ConnectionFactory
@version $Revision$ $Date$
-
mondrian.xmla.XmlaHandler.ConnectionFactory
-
net.rim.device.api.io.transport.ConnectionFactory
-
net.spy.memcached.ConnectionFactory
Factory for creating instances of MemcachedConnection. This is used to provide more fine-grained configuration of connections.
-
org.apache.ace.connectionfactory.ConnectionFactory
Provides a service to create {@link URLConnection}s. The connection factory will be responsible for supplying the necessary credentials to ensure the authentication of the connection succeeds.
-
org.apache.ambari.server.controller.jdbc.ConnectionFactory
Simple JDBC connection factory interface.
-
org.apache.commons.dbcp.ConnectionFactory
Abstract factory interface for creating {@link java.sql.Connection}s.
@author Rodney Waldhoff
@version $Id: ConnectionFactory.java,v 1.4 2003/10/09 21:04:44 rdonkin Exp $
-
org.apache.commons.dbcp2.ConnectionFactory
Abstract factory interface for creating {@link java.sql.Connection}s.
@author Rodney Waldhoff
@version $Revision: 1572242 $ $Date: 2014-02-26 20:34:39 +0000 (Wed, 26 Feb 2014) $
@since 2.0
-
org.apache.jackrabbit.core.util.db.ConnectionFactory
A factory for new database connections. Supported are regular JDBC drivers, as well as JNDI resources. FIXME: the registry currently is ClassLoader wide. I.e., if you start two repositories then you share the registered datasources...
-
org.apache.ojb.broker.accesslayer.ConnectionFactory
ConnectionFactory is responsible to lookup and release the connections used by the {@link org.apache.ojb.broker.accesslayer.ConnectionManagerIF}implementation.
@version $Id: ConnectionFactory.java,v 1.11.2.1 2005/04/26 03:41:35 mkalen Exp $
@see org.apache.ojb.broker.accesslayer.ConnectionFactoryPooledImpl
@see org.apache.ojb.broker.accesslayer.ConnectionFactoryNotPooledImpl
@see org.apache.ojb.broker.accesslayer.ConnectionFactoryDBCPImpl
@see org.apache.ojb.broker.accesslayer.ConnectionFactoryManagedImpl
-
org.apache.tomcat.dbcp.dbcp.ConnectionFactory
-
org.castor.jdo.engine.ConnectionFactory
Interface for creation of new JDBC Connection instances.
@author
Werner Guttmann
@author
Ralf Joachim
@version $Revision: 6907 $ $Date: 2005-07-24 14:37:16 -0600 (Sun, 24 Jul 2005) $
@since 0.9.9
-
org.datanucleus.ConnectionFactory
Factory for connections to the datastore. To be implemented by all StoreManagers.
-
org.datanucleus.store.connection.ConnectionFactory
-
org.datanucleus.store.rdbms.datasource.dbcp.ConnectionFactory
Abstract factory interface for creating {@link java.sql.Connection}s.
@author Rodney Waldhoff
@version $Revision: 491655 $ $Date: 2007-01-01 17:05:30 -0500 (Mon, 01 Jan 2007) $
-
org.eclipse.jetty.server.ConnectionFactory
A Factory to create {@link Connection} instances for {@link Connector}s.
A Connection factory is responsible for instantiating and configuring a {@link Connection} instanceto handle an {@link EndPoint} accepted by a {@link Connector}.
A ConnectionFactory has a protocol name that represents the protocol of the Connections created. Example of protocol names include:
- http
- Creates a HTTP connection that can handle multiple versions of HTTP from 0.9 to 1.1
- spdy/2
- Creates a HTTP connection that handles a specific version of the SPDY protocol
- SSL-XYZ
- Create an SSL connection chained to a connection obtained from a connection factory with a protocol "XYZ".
- SSL-http
- Create an SSL connection chained to a HTTP connection (aka https)
- SSL-npn
- Create an SSL connection chained to a NPN connection, that uses a negotiation with the client to determine the next protocol.
-
org.geotools.wfs.protocol.ConnectionFactory
Interface to abstract out the plain connection and stream set up against the target WFS
@author Gabriel Roldan (TOPP)
@version $Id$
@since 2.5.x
@source $URL$
@deprecated in favour of {@link HTTPProtocol}
-
org.infinispan.loader.jdbc.connectionfactory.ConnectionFactory
Defines the functionality a connection factory should implement.
@author Mircea.Markus@jboss.com
-
org.infinispan.loaders.jdbc.connectionfactory.ConnectionFactory
Defines the functionality a connection factory should implement.
@author Mircea.Markus@jboss.com
-
org.infinispan.persistence.jdbc.connectionfactory.ConnectionFactory
Defines the functionality a connection factory should implement.
@author Mircea.Markus@jboss.com
-
org.jboss.as.console.client.shared.subsys.messaging.model.ConnectionFactory
@author Heiko Braun
@date 5/10/11
-
org.jboss.blacktie.jatmibroker.xatmi.ConnectionFactory
This is a factory that will create connections to remote Blacktie services.
@see Connection
@see ConnectionException
-
org.jboss.narayana.blacktie.jatmibroker.xatmi.ConnectionFactory
This is a factory that will create connections to remote Blacktie services.
@see Connection
@see ConnectionException
-
org.jitterbit.integration.server.db.infoprovider.ConnectionFactory
@author Torgil Zethson
@since 3.0.0
-
org.jpox.ConnectionFactory
Factory for connections to the datastore. To be implemented by all StoreManagers.
@version $Revision: 1.13 $
-
org.mc4j.ems.connection.ConnectionFactory
@author Greg Hinkle (ghinkle@users.sourceforge.net), Apr 5, 2005
@version $Revision: 602 $($Author: ianpspringer $ / $Date: 2009-07-14 16:25:40 -0400 (Tue, 14 Jul 2009) $)
-
org.mule.module.db.internal.domain.connection.ConnectionFactory
Creates {@link Connection} from {@link DataSource}
-
org.objectweb.joram.client.jms.ConnectionFactory
-
org.osgi.service.io.ConnectionFactory
A Connection Factory service is called by the implementation of the Connector Service to create {@code javax.microedition.io.Connection} objects whichimplement the scheme named by {@code IO_SCHEME}. When a {@code ConnectorService.open} method is called, the implementation ofthe Connector Service will examine the specified name for a scheme. The Connector Service will then look for a Connection Factory service which is registered with the service property {@code IO_SCHEME} which matches thescheme. The {@link #createConnection(String,int,boolean)} method of theselected Connection Factory will then be called to create the actual {@code Connection} object.
@author $Id: 9f6aae71e9b0b65afb94f94a8c0493a96d925558 $
-
org.postgresql.core.ConnectionFactory
Handles protocol-specific connection setup.
@author Oliver Jowett (oliver@opencloud.com)
-
org.serviceconnector.net.connection.ConnectionFactory
A factory for creating connection objects. Provides access to concrete client instances. Possible connection types are shown as constants below.
-
org.skife.jdbi.v2.tweak.ConnectionFactory
Interface which abstracts away how JDBC Connections are obtained
-
org.springframework.amqp.rabbit.connection.ConnectionFactory
An interface based ConnectionFactory for creating {@link com.rabbitmq.client.Connection Connections}.
NOTE: The Rabbit API contains a ConnectionFactory class (same name).
@author Mark Fisher
@author Dave Syer
-
org.uengine.util.dao.ConnectionFactory
@author Jinyoung Jang
-
util.ConnectionFactory