Searched refs:ManagedConnection (Results 1 - 25 of 41) sorted by relevance

12

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DLazyEnlistableConnectionManager.java60 * @param mc The <code>ManagedConnection</code> instance that needs to be
75 void lazyEnlist(ManagedConnection mc) throws ResourceException;
H A DConnectionEvent.java51 * <LI>ManagedConnection instance that generated the connection event.
52 * A ManagedConnection instance is returned from the method
54 * <LI>Connection handle associated with the ManagedConnection instance;
98 * This event indicates that the ManagedConnection instance is
120 * @param source ManagedConnection that is the
124 public ConnectionEvent(ManagedConnection source, int eid) {
132 * @param source ManagedConnection that is the
137 public ConnectionEvent(ManagedConnection source, int eid,
H A DManagedConnectionFactory.java49 * ManagedConnectionFactory instance is a factory of both ManagedConnection
52 * ManagedConnection instance. A ManagedConnectionFactory
58 * @see javax.resource.spi.ManagedConnection
118 * @return ManagedConnection instance
120 public ManagedConnection createManagedConnection(
135 * <p>This method returns a ManagedConnection instance that is the best
149 * @return ManagedConnection if resource adapter finds an
152 public ManagedConnection matchManagedConnections(
172 * <p>The ManagedConnection instances created by ManagedConnectionFactory
174 * using ManagedConnection
[all...]
H A DManagedConnection.java47 /** ManagedConnection instance represents a physical connection
50 * <p>A ManagedConnection instance provides access to a pair of
57 * protocol. The ManagedConnection interface is not directly used
71 public interface ManagedConnection { interface
74 * represented by the ManagedConnection instance. This connection handle
77 * ManagedConnection instance in a resource adapter implementation
80 * <P>The ManagedConnection uses the Subject and additional ConnectionRequest
88 * ManagedConnection instance is of the type
98 * setting state of ManagedConnection
109 * explictly call ManagedConnection
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/listener/
H A DUnpooledConnectionEventListener.java49 * ManagedConnection that is not acquired through the appserver's pool.
50 * The ManagedConnection is simply destroyed after close is called
51 * Such an "unpooled" ManagedConnection is obtained for testConnectionPool
63 ManagedConnection mc = (ManagedConnection) evt.getSource();
81 ManagedConnection mc = (ManagedConnection) evt.getSource();
H A DLocalTxConnectionEventListener.java58 // Whenever a connection is associated with a ManagedConnection,
60 // original ManagedConnection will be put in this table.
82 ManagedConnection mc = (ManagedConnection) evt.getSource();
104 ManagedConnection mc = (ManagedConnection) evt.getSource();
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DConnectionManager.java45 import javax.resource.spi.ManagedConnection;
67 ManagedConnection mc = mcf.createManagedConnection(null, info);
H A DLocalTransactionImpl.java59 private ManagedConnection mc;
63 _logger = LogDomains.getLogger(ManagedConnection.class, LogDomains.RSR_LOGGER);
69 * @param mc <code>ManagedConnection</code> that returns
73 public LocalTransactionImpl(ManagedConnection mc) {
H A DManagedConnectionMetaData.java59 private ManagedConnection mc;
72 * @param mc <code>ManagedConnection</code>
75 public ManagedConnectionMetaData(ManagedConnection mc) throws ResourceException {
87 * through the ManagedConnection.
103 * through the ManagedConnection.
134 * Returns name of the user associated with the ManagedConnection instance. The name
H A DXAResourceImpl.java56 ManagedConnection mc;
62 * @param mc <code>ManagedConnection</code>
64 public XAResourceImpl(XAResource xar, ManagedConnection mc) {
H A DManagedConnectionFactory.java84 * This class is extended by the DataSource specific <code>ManagedConnection</code> factories
163 * @return <code>ManagedConnection</code> object created
166 * creation of the <code>ManagedConnection</code> object
172 public abstract javax.resource.spi.ManagedConnection createManagedConnection
218 * Returns a matched <code>ManagedConnection</code> from the candidate
219 * set of <code>ManagedConnection</code> objects.
221 * @param connectionSet <code>Set</code> of <code>ManagedConnection</code>
227 * @return <code>ManagedConnection</code> that is the best match satisfying this request
229 * parameter or the <code>Set</code> of <code>ManagedConnection</code>
232 public javax.resource.spi.ManagedConnection matchManagedConnection
[all...]
H A DDSManagedConnectionFactory.java88 * @return <code>ManagedConnection</code> object created
91 * creation of the <code>ManagedConnection</code> object
97 public javax.resource.spi.ManagedConnection createManagedConnection(javax.security.auth.Subject subject,
105 com.sun.gjc.spi.ManagedConnection mc = null;
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc30/src/main/java/com/sun/gjc/spi/jdbc30/
H A DConnectionHolder30.java43 import com.sun.gjc.spi.ManagedConnection;
59 * @param mc ManagedConnection
62 public ConnectionHolder30(Connection con, ManagedConnection mc,
H A DJdbc30ObjectsFactory.java59 * @param mcObject ManagedConnection
65 com.sun.gjc.spi.ManagedConnection mcObject,
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/allocator/
H A DConnectorAllocator.java97 ManagedConnection mc = (ManagedConnection) evt.getSource();
111 ManagedConnection mc = (ManagedConnection) evt.getSource();
119 ManagedConnection mc = (ManagedConnection) evt.getSource();
160 ManagedConnection mc =
188 ManagedConnection mc = (ManagedConnection) resource.getResource();
208 ManagedConnection m
[all...]
H A DNoTxConnectorAllocator.java54 import javax.resource.spi.ManagedConnection;
81 ManagedConnection mc = (ManagedConnection) evt.getSource();
87 ManagedConnection mc = (ManagedConnection) evt.getSource();
128 ManagedConnection mc =
155 ManagedConnection mc = (ManagedConnection) resource.getResource();
167 ManagedConnection mc = (ManagedConnection) resourc
[all...]
H A DLocalTxConnectorAllocator.java87 ManagedConnection mc = mcf.createManagedConnection(subject, reqInfo);
117 ManagedConnection mc = (ManagedConnection) resource.getResource();
132 ManagedConnection mc = (ManagedConnection) resource.getResource();
H A DAbstractConnectorAllocator.java57 import javax.resource.spi.ManagedConnection;
165 ManagedConnection mc = (ManagedConnection) h.getResource();
177 ManagedConnection mc =
188 ManagedConnection mc = (ManagedConnection) resource.getResource();
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/
H A DConnectorXAResource.java78 private ManagedConnection localConnection;
104 localConnection = (ManagedConnection) handle.getResource();
123 ManagedConnection mc = (ManagedConnection) handle.getResource();
138 ManagedConnection mc = (ManagedConnection) handle.getResource();
165 ManagedConnection associatedConnection = (ManagedConnection) handle.getResource();
212 ManagedConnection mc = (ManagedConnection) handl
[all...]
/glassfish-3.1.2/transaction/internal-api/src/main/java/com/sun/enterprise/transaction/api/
H A DXAResourceWrapper.java46 import javax.resource.spi.ManagedConnection;
65 protected ManagedConnection m_xacon;
68 public void init(ManagedConnection xacon,Subject subject){
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DLazyEnlistableConnectionManagerImpl.java59 public void lazyEnlist( javax.resource.spi.ManagedConnection mc ) throws ResourceException {
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/rm/
H A DLazyEnlistableResourceManagerImpl.java44 import javax.resource.spi.ManagedConnection;
87 * @param mc ManagedConnection
90 public void lazyEnlist( ManagedConnection mc ) throws ResourceException {
127 ManagedConnection toEnlist = (ManagedConnection) hand.getResource();
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/
H A DConnectionHolder.java45 import com.sun.gjc.spi.ManagedConnection;
66 protected ManagedConnection mc;
89 _logger = LogDomains.getLogger(ManagedConnection.class, LogDomains.RSR_LOGGER);
102 * the ManagedConnection if it can be the active connection
104 * ManagedConnection reports that this connection handle
119 public ConnectionHolder(Connection con, ManagedConnection mc,
160 * Returns the <code>ManagedConnection</code> instance responsible
163 * @return <code>ManagedConnection</code> instance.
165 public ManagedConnection getManagedConnection() {
171 * supplied. Also replace <code>ManagedConnection</cod
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/
H A DPoolManager.java57 import javax.resource.spi.ManagedConnection;
151 public void lazyEnlist(ManagedConnection mc) throws ResourceException;
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/src/main/java/com/sun/gjc/spi/jdbc40/
H A DJdbc40ObjectsFactory.java69 * @param mcObject ManagedConnection
75 com.sun.gjc.spi.ManagedConnection mcObject,
122 public void detectJDBC30Connection(Connection con, com.sun.gjc.spi.ManagedConnection mcObject) {

Completed in 1063 milliseconds

12