Package com.sun.gjc.spi.ConnectionHolder

Examples of com.sun.gjc.spi.ConnectionHolder.ConnectionType


    public void setReference(Reference reference) {
      this.reference = reference;
    }  

    private ConnectionType findConnectionType() {
        ConnectionType cmType = ConnectionType.STANDARD;
       
        if ( cm instanceof javax.resource.spi.LazyAssociatableConnectionManager ) {
            if (! ((com.sun.enterprise.connectors.ConnectionManagerImpl)cm).
                    getJndiName().endsWith( ConnectorConstants.PM_JNDI_SUFFIX ) ) {
                cmType = ConnectionType.LAZY_ASSOCIATABLE;
View Full Code Here

TOP

Related Classes of com.sun.gjc.spi.ConnectionHolder.ConnectionType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.