@Override protected AbstractPoolEntry getPoolEntry() { // override needed only to make method visible in this package return super.getPoolEntry(); }
protected ElegantBasicPooledConnAdapter(ThreadSafeClientConnManager paramThreadSafeClientConnManager, AbstractPoolEntry paramAbstractPoolEntry) { super(paramAbstractPoolEntry); }
/** * Creates a new adapter. * * @param tsccm the connection manager * @param entry the pool entry for the connection being wrapped */ protected BasicPooledConnAdapter(ThreadSafeClientConnManager tsccm, AbstractPoolEntry entry) { super(tsccm, entry); markReusable(); }
/** * Creates a new adapter. * * @param tsccm the connection manager * @param entry the pool entry for the connection being wrapped */ protected BasicPooledConnAdapter(final ThreadSafeClientConnManager tsccm, final AbstractPoolEntry entry) { super(tsccm, entry); markReusable(); }
/** * Obtains the pool entry. * * @return the pool entry, or <code>null</code> if detached */ protected AbstractPoolEntry getPoolEntry() { return super.poolEntry; }