Examples of poolBelongsToSystemRar()


Examples of com.sun.enterprise.connectors.util.ResourcesUtil.poolBelongsToSystemRar()

            throw cre;
            */
        }
        killPool(poolName);
        boolean result = _registry.removeManagedConnectionFactory(poolName);
        if(result == false && !resUtil.poolBelongsToSystemRar(poolName)) {
            _logger.log( Level.FINE,
                           "rardeployment.mcf_removal_failure",poolName);
      return;
        }
        try {
View Full Code Here

Examples of com.sun.enterprise.connectors.util.ResourcesUtil.poolBelongsToSystemRar()

            String jndiNameForPool = ConnectorAdminServiceUtils.
                getReservePrefixedJNDINameForPool( poolName );
            InitialContext ic = new InitialContext();
            ic.unbind(jndiNameForPool);
        } catch(NamingException ne) {
            if(resUtil.poolBelongsToSystemRar(poolName)) {
                return;
            }
            _logger.log(Level.SEVERE,
                   "rardeployment.connectionpool_removal_from_jndi_error",
                   poolName);
View Full Code Here

Examples of com.sun.enterprise.connectors.util.ResourcesUtil.poolBelongsToSystemRar()

          ConnectorRuntimeException( i18nMsg )
            cre.initCause(ne);
            _logger.log(Level.SEVERE,"",cre);
      throw cre;
        }
        if(errorOccured==true && !resUtil.poolBelongsToSystemRar(poolName)) {
      String i18nMsg = localStrings.getString(
          "ccp_adm.failed_to_delete_conn_res", poolName);
      ConnectorRuntimeException cre = new
        ConnectorRuntimeException( i18nMsg );   
            _logger.log(Level.SEVERE,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.