Package org.jboss.jca.adapters.jdbc

Examples of org.jboss.jca.adapters.jdbc.WrappedConnectionRequestInfo


        @Override
        protected ModelNode invokeCommandOn(Pool pool, Object... parameters) throws Exception {
            boolean returnedValue;
            if (parameters != null) {
                WrappedConnectionRequestInfo cri = new WrappedConnectionRequestInfo((String) parameters[0], (String) parameters[1]);
                returnedValue = pool.testConnection(cri, null);
            } else {
                returnedValue = pool.testConnection();
            }
            if (!returnedValue)
View Full Code Here

TOP

Related Classes of org.jboss.jca.adapters.jdbc.WrappedConnectionRequestInfo

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.