All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.connectors.ConnectorRuntime Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
// Portions Copyright [2019-2021] [Payara Foundation and/or its affiliates]

package com.sun.enterprise.connectors;

import com.sun.appserv.connectors.internal.api.*;
import com.sun.appserv.connectors.internal.spi.ConnectorNamingEventListener;
import com.sun.enterprise.config.serverbeans.*;
import com.sun.enterprise.config.serverbeans.Module;
import com.sun.enterprise.connectors.authentication.AuthenticationService;
import com.sun.enterprise.connectors.connector.module.RarType;
import com.sun.enterprise.connectors.deployment.util.ConnectorArchivist;
import com.sun.enterprise.connectors.module.ConnectorApplication;
import com.sun.enterprise.connectors.service.*;
import com.sun.enterprise.connectors.util.*;
import com.sun.enterprise.container.common.spi.util.ComponentEnvManager;
import com.sun.enterprise.deploy.shared.FileArchive;
import com.sun.enterprise.deployment.ConnectorDescriptor;
import com.sun.enterprise.deployment.JndiNameEnvironment;
import com.sun.enterprise.deployment.archivist.ApplicationArchivist;
import com.sun.enterprise.deployment.archivist.ArchivistFactory;
import com.sun.enterprise.resource.pool.PoolManager;
import com.sun.enterprise.resource.pool.monitor.ConnectionPoolProbeProviderUtil;
import com.sun.enterprise.resource.pool.monitor.PoolMonitoringLevelListener;
import com.sun.enterprise.security.SecurityServicesUtil;
import com.sun.enterprise.security.jaspic.callback.ContainerCallbackHandler;
import com.sun.enterprise.transaction.api.JavaEETransactionManager;
import com.sun.enterprise.util.Utility;
import com.sun.logging.LogDomains;
import org.glassfish.admin.monitor.MonitoringBootstrap;
import org.glassfish.api.admin.ProcessEnvironment;
import org.glassfish.api.admin.ServerEnvironment;
import org.glassfish.api.invocation.InvocationManager;
import org.glassfish.api.naming.GlassfishNamingManager;
import org.glassfish.connectors.config.ResourceAdapterConfig;
import org.glassfish.connectors.config.SecurityMap;
import org.glassfish.connectors.config.WorkSecurityMap;
import org.glassfish.deployment.common.SecurityRoleMapperFactory;
import org.glassfish.hk2.api.PostConstruct;
import org.glassfish.hk2.api.PreDestroy;
import org.glassfish.internal.api.ClassLoaderHierarchy;
import org.glassfish.internal.api.ConnectorClassLoaderService;
import org.glassfish.internal.api.DelegatingClassLoader;
import org.glassfish.internal.data.ApplicationRegistry;
import org.glassfish.resourcebase.resources.api.ResourceDeployer;
import org.glassfish.resources.api.ResourcesRegistry;
import org.glassfish.server.ServerEnvironmentImpl;
import org.glassfish.resourcebase.resources.api.PoolInfo;
import org.glassfish.resourcebase.resources.api.ResourceInfo;
import org.glassfish.resourcebase.resources.naming.ResourceNamingService;
import org.glassfish.resourcebase.resources.util.ResourceManagerFactory;
import org.jvnet.hk2.annotations.Service;
import org.glassfish.hk2.api.ServiceLocator;
import org.jvnet.hk2.config.types.Property;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Provider;
import javax.inject.Singleton;
import javax.naming.NamingException;
import javax.resource.ResourceException;
import javax.resource.spi.ConnectionManager;
import javax.resource.spi.ManagedConnectionFactory;
import javax.resource.spi.ResourceAdapterAssociation;
import javax.resource.spi.XATerminator;
import javax.resource.spi.work.WorkManager;
import javax.security.auth.callback.CallbackHandler;
import javax.transaction.SystemException;
import javax.transaction.Transaction;
import java.io.PrintWriter;
import java.net.URI;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;


/**
 * This class is the entry point to connector backend module.
 * It exposes different API's called by external entities like JPA, admin
 * to perform various connector backend related  operations.
 * It delegates calls to various connetcor admin services and other
 * connector services which actually implement the functionality.
 * This is a delegating class.
 *
 * @author Binod P.G, Srikanth P, Aditya Gore, Jagadish Ramu
 */
@Service
@Singleton
public class ConnectorRuntime implements com.sun.appserv.connectors.internal.api.ConnectorRuntime,
        PostConstruct, PreDestroy {

    private static ConnectorRuntime _runtime;
    private Logger _logger = LogDomains.getLogger(ConnectorRuntime.class, LogDomains.RSR_LOGGER);
    private ConnectorConnectionPoolAdminServiceImpl ccPoolAdmService;
    private ConnectorResourceAdminServiceImpl connectorResourceAdmService;
    private ConnectorService connectorService;
    private ConnectorConfigurationParserServiceImpl configParserAdmService;
    private ResourceAdapterAdminServiceImpl resourceAdapterAdmService;
    private ConnectorSecurityAdminServiceImpl connectorSecurityAdmService;
    private ConnectorAdminObjectAdminServiceImpl adminObjectAdminService;
    private ConnectorRegistry connectorRegistry = ConnectorRegistry.getInstance();
    private PoolMonitoringLevelListener poolMonitoringLevelListener;

    @Inject
    private GlassfishNamingManager namingManager;

    @Inject
    private PoolManager poolManager;

    @Inject
    private InvocationManager invocationManager;

    @Inject
    private ComponentEnvManager componentEnvManager;

    @Inject
    private Provider javaEETransactionManagerProvider;

    @Inject
    private Provider workManagerFactoryProvider;

    @Inject
    private Provider resourceManagerFactoryProvider;

    @Inject
    private Provider applicationRegistryProvider;

    @Inject
    private Provider applicationArchivistProvider;

    @Inject
    private Provider fileArchiveProvider;

    @Inject
    private Provider securityRoleMapperFactoryProvider;

    @Inject
    private Provider securityServicesUtilProvider;

    @Inject
    private Provider containerCallbackHandlerProvider;

    @Inject
    private Provider archivistFactoryProvider;

    @Inject
    private Provider workContextHandlerProvider;

    @Inject
    private Provider mailSessionDeployerProvider;

    @Inject
    @Named(ServerEnvironment.DEFAULT_INSTANCE_NAME)
    private Provider connectorServiceProvider;

    @Inject
    private Provider applicationsProvider;

    @Inject
    private ClassLoaderHierarchy clh;

    @Inject
    private ConnectorsClassLoaderUtil cclUtil;

    @Inject
    private ActiveRAFactory activeRAFactory;

    @Inject
    private Provider connectionPoolProbeProviderUtilProvider;

    @Inject
    private Provider monitoringBootstrapProvider;

    @Inject
    private Provider poolMonitoringLevelListenerProvider;

    @Inject
    private Provider domainProvider;

    @Inject
    private Provider resourceManagerProvider;
    private org.glassfish.resourcebase.resources.listener.ResourceManager resourceManager;

    @Inject
    private ProcessEnvironment processEnvironment;

    @Inject
    private DriverLoader driverLoader;

    @Inject
    private ConnectorJavaBeanValidator connectorBeanValidator;

    @Inject
    private ConnectorClassLoaderService connectorClassLoaderService;

    @Inject
    private ServerEnvironmentImpl env;

    @Inject
    private ResourceNamingService resourceNamingService;

    @Inject
    private RarType archiveType;

    private Resources globalResources;

    // performance improvement, cache the lookup of transaction manager.
    private JavaEETransactionManager transactionManager;
    private ProcessEnvironment.ProcessType processType;

    @Inject
    private ServiceLocator habitat;

    /**
     * Returns the ConnectorRuntime instance.
     * It follows singleton pattern and only one instance exists at any point
     * of time. External entities need to call this method to get
     * ConnectorRuntime instance
     *
     * @return ConnectorRuntime instance
     */
    public static ConnectorRuntime getRuntime() {
        if (_runtime == null) {
            throw new RuntimeException("Connector Runtime not initialized");
        }
        return _runtime;
    }

    /**
     * Private constructor. It is private as it follows singleton pattern.
     */
    public ConnectorRuntime() {
        _runtime = this;
    }

    public ConnectionPoolProbeProviderUtil getProbeProviderUtil(){
        return connectionPoolProbeProviderUtilProvider.get();
    }

    public ResourceNamingService getResourceNamingService(){
        return resourceNamingService;
    }

    /**
     * Returns the execution environment.
     *
     * @return ConnectorConstants.SERVER if execution environment is
     *         appserv runtime
     *         else it returns ConnectorConstants.CLIENT
     */
    public ProcessEnvironment.ProcessType getEnvironment() {
        return processType;
    }

    public MonitoringBootstrap getMonitoringBootstrap(){
        return monitoringBootstrapProvider.get();
    }

    /**
     * Returns the generated default connection poolName for a
     * connection definition.
     *
     * @param moduleName        rar module name
     * @param connectionDefName connection definition name
     * @return generated connection poolname
     */
    public String getDefaultPoolName(String moduleName,
                                     String connectionDefName) {
        return connectorService.getDefaultPoolName(moduleName, connectionDefName);
    }

    /**
     * Deletes connector Connection pool
     *
     * @param poolInfo Name of the pool to delete
     * @throws ConnectorRuntimeException if pool deletion operation fails
     */
    public void deleteConnectorConnectionPool(PoolInfo poolInfo)
            throws ConnectorRuntimeException {
        ccPoolAdmService.deleteConnectorConnectionPool(poolInfo);
    }


    /**
     * Creates connector connection pool in the connector container.
     *
     * @param connectorPoolObj ConnectorConnectionPool instance to be bound to JNDI. This
     *                         object contains the pool properties.
     * @throws ConnectorRuntimeException When creation of pool fails.
     */
    public void createConnectorConnectionPool(
            ConnectorConnectionPool connectorPoolObj)
            throws ConnectorRuntimeException {
        ccPoolAdmService.createConnectorConnectionPool(connectorPoolObj);
    }

    /**
     * Creates the connector resource on a given connection pool
     *
     * @param resourceInfo     JNDI name of the resource to be created
     * @param poolInfo     to which the connector resource belongs.
     * @param resourceType Unused.
     * @throws ConnectorRuntimeException If the resouce creation fails.
     */
    public void createConnectorResource(ResourceInfo resourceInfo, PoolInfo poolInfo,
                                        String resourceType) throws ConnectorRuntimeException {

        connectorResourceAdmService.createConnectorResource(resourceInfo, poolInfo, resourceType);
    }

    /**
     * Returns the generated default connector resource for a
     * connection definition.
     *
     * @param moduleName        rar module name
     * @param connectionDefName connection definition name
     * @return generated default connector resource name
     */
    public String getDefaultResourceName(String moduleName,
                                         String connectionDefName) {
        return connectorService.getDefaultResourceName(
                moduleName, connectionDefName);
    }

    /**
     * Provides resource adapter log writer to be given to MCF of a resource-adapter
     *
     * @return PrintWriter
     */
    public PrintWriter getResourceAdapterLogWriter() {
        Logger logger = LogDomains.getLogger(ConnectorRuntime.class, LogDomains.RSR_LOGGER);
        RAWriterAdapter writerAdapter = new RAWriterAdapter(logger);
        return new PrintWriter(writerAdapter);
    }

    /**
     * Deletes the connector resource.
     *
     * @param resourceInfo JNDI name of the resource to delete.
     * @throws ConnectorRuntimeException if connector resource deletion fails.
     */
    public void deleteConnectorResource(ResourceInfo resourceInfo) throws ConnectorRuntimeException {
        connectorResourceAdmService.deleteConnectorResource(resourceInfo);
    }

    /**
     * Obtains the connector Descriptor pertaining to rar.
     * If ConnectorDescriptor is present in registry, it is obtained from
     * registry and returned. Else it is explicitly read from directory
     * where rar is exploded.
     *
     * @param rarName Name of the rar
     * @return ConnectorDescriptor pertaining to rar.
     * @throws ConnectorRuntimeException when unable to get descriptor
     */
    public ConnectorDescriptor getConnectorDescriptor(String rarName)
            throws ConnectorRuntimeException {
        return connectorService.getConnectorDescriptor(rarName);

    }

    /**
     * {@inheritDoc}
     */
    public void createActiveResourceAdapter(String moduleDir,
                                            String moduleName,
                                            ClassLoader loader) throws ConnectorRuntimeException {
        resourceAdapterAdmService.createActiveResourceAdapter(moduleDir, moduleName, loader);
    }
    /**
     * {@inheritDoc}
     */
    public void  createActiveResourceAdapter( ConnectorDescriptor connectorDescriptor, String moduleName,
            String moduleDir, ClassLoader loader) throws ConnectorRuntimeException {
        resourceAdapterAdmService.createActiveResourceAdapter(connectorDescriptor, moduleName, moduleDir, loader);
    }

    /** Creates Active resource Adapter which abstracts the rar module.
     *  During the creation of ActiveResourceAdapter, default pools and
     *  resources also are created.
     *  @param connectorDescriptor object which abstracts the connector
     *         deployment descriptor i.e rar.xml and sun-ra.xml.
     *  @param moduleName Name of the module
     *  @param moduleDir Directory where rar module is exploded.
     *  @throws ConnectorRuntimeException if creation fails.
     */

    public void  createActiveResourceAdapter( ConnectorDescriptor connectorDescriptor, String moduleName,
            String moduleDir) throws ConnectorRuntimeException {
        resourceAdapterAdmService.createActiveResourceAdapter(connectorDescriptor, moduleName, moduleDir, null);
    }

    /**
     * {@inheritDoc}
     */
    public void destroyActiveResourceAdapter(String moduleName)
            throws ConnectorRuntimeException {
        resourceAdapterAdmService.stopActiveResourceAdapter(moduleName);
    }


    /** Returns the MCF instance. If the MCF is already created and
     *  present in connectorRegistry that instance is returned. Otherwise it
     *  is created explicitly and added to ConnectorRegistry.
     *  @param poolInfo Name of the pool.MCF pertaining to this pool is
     *         created/returned.
     *  @return created/already present MCF instance
     *  @throws ConnectorRuntimeException if creation/retrieval of MCF fails
     */
    public ManagedConnectionFactory obtainManagedConnectionFactory(
           PoolInfo poolInfo) throws ConnectorRuntimeException {
        return ccPoolAdmService.obtainManagedConnectionFactory(poolInfo);
     }


    /**
     * Returns the MCF instance. If the MCF is already created and
     * present in connectorRegistry that instance is returned. Otherwise it
     * is created explicitly and added to ConnectorRegistry.
     *
     * @param poolInfo Name of the pool.MCF pertaining to this pool is
     *                 created/returned.
     * @return created/already present MCF instance
     * @throws ConnectorRuntimeException if creation/retrieval of MCF fails
     */
    public ManagedConnectionFactory obtainManagedConnectionFactory(
            PoolInfo poolInfo, Hashtable env) throws ConnectorRuntimeException {
        return ccPoolAdmService.obtainManagedConnectionFactory(poolInfo, env);
    }

    /** Returns the MCF instances in scenarions where a pool has to
     *  return multiple mcfs. Should be used only during JMS RA recovery.
     *  @param poolInfo Name of the pool.MCFs pertaining to this pool is
     *         created/returned.
     *  @return created MCF instances
     *  @throws ConnectorRuntimeException if creation/retrieval of MCFs fails
     */

    public ManagedConnectionFactory[]  obtainManagedConnectionFactories(
           PoolInfo poolInfo) throws ConnectorRuntimeException {
        return ccPoolAdmService.obtainManagedConnectionFactories(poolInfo);
    }


    /**
     * provides connection manager for a pool
     *
     * @param poolInfo         pool name
     * @param forceNoLazyAssoc when set to true, lazy association feature will be turned off (even if it is ON via
     *                         pool attribute)
     * @return ConnectionManager for the pool
     * @throws ConnectorRuntimeException when unable to provide a connection manager
     */
    public ConnectionManager obtainConnectionManager(PoolInfo poolInfo,
                                                     boolean forceNoLazyAssoc, ResourceInfo resourceInfo)
            throws ConnectorRuntimeException {
        ConnectionManager mgr = ConnectionManagerFactory.
                getAvailableConnectionManager(poolInfo, forceNoLazyAssoc, resourceInfo);
        return mgr;
    }

    /**
     * {@inheritDoc}
     */
    public Object lookupPMResource(ResourceInfo resourceInfo, boolean force) throws NamingException{
        Object result ;
        try{
            if(!resourceInfo.getName().endsWith(PM_JNDI_SUFFIX)){
                ResourceInfo tmpInfo = new ResourceInfo(resourceInfo.getName()+PM_JNDI_SUFFIX,
                        resourceInfo.getApplicationName(), resourceInfo.getModuleName());
                resourceInfo = tmpInfo;
            }

            result = connectorResourceAdmService.lookup(resourceInfo);
        }catch(NamingException ne){
            if(force && isDAS()){
                if(_logger.isLoggable(Level.FINE)) {
                    _logger.log(Level.FINE, "jdbc.unable_to_lookup_resource",new Object[] {resourceInfo});
                }
                result = lookupDataSourceInDAS(resourceInfo);
            }else{
                throw ne;
            }
        }
        return result;
    }

    /**
     * {@inheritDoc}
     */
    public Object lookupPMResource(String jndiName, boolean force) throws NamingException {
        ResourceInfo resourceInfo = new ResourceInfo(jndiName);
        return lookupPMResource(resourceInfo, force);
    }

    /**
     * {@inheritDoc}
     */
    public Object lookupNonTxResource(String jndiName, boolean force) throws NamingException {
        ResourceInfo resourceInfo = new ResourceInfo(jndiName);
        return lookupNonTxResource(resourceInfo, force);
    }

    /**
     * {@inheritDoc}
     */
    public Object lookupNonTxResource(ResourceInfo resourceInfo, boolean force) throws NamingException {

        Object result ;
        try{
            if(!resourceInfo.getName().endsWith(NON_TX_JNDI_SUFFIX)){
                ResourceInfo tmpInfo = new ResourceInfo(resourceInfo.getName()+NON_TX_JNDI_SUFFIX,
                        resourceInfo.getApplicationName(), resourceInfo.getModuleName());
                resourceInfo = tmpInfo;
            }
            result = connectorResourceAdmService.lookup(resourceInfo);
        }catch(NamingException ne){
            if(force && isDAS()){
                if(_logger.isLoggable(Level.FINE)) {
                    _logger.log(Level.FINE, "jdbc.unable_to_lookup_resource",new Object[] {resourceInfo});
                }
                result = lookupDataSourceInDAS(resourceInfo);
            }else{
                throw ne;
            }
        }
        return result;
    }

    private boolean isDAS(){
        return env.isDas();
    }

    /**
     * Get a wrapper datasource specified by the jdbcjndi name
     * This API is intended to be used in the DAS. The motivation for having this
     * API is to provide the CMP backend/ JPA-Java2DB a means of acquiring a connection during
     * the codegen phase. If a user is trying to deploy an JPA-Java2DB app on a remote server,
     * without this API, a resource reference has to be present both in the DAS
     * and the server instance. This makes the deployment more complex for the
     * user since a resource needs to be forcibly created in the DAS Too.
     * This API will mitigate this need.
     *
     * @param resourceInfo  jndi name of the resource
     * @return DataSource representing the resource.
     */
    private Object lookupDataSourceInDAS(ResourceInfo resourceInfo) {
        try{
            Collection extensions =
                    habitat.getAllServices(ConnectorRuntimeExtension.class);
            for(ConnectorRuntimeExtension extension : extensions) {
                return extension.lookupDataSourceInDAS(resourceInfo);
            }
            //return connectorResourceAdmService.lookupDataSourceInDAS(resourceInfo);
        }catch(ConnectorRuntimeException cre){
            throw new RuntimeException(cre.getMessage(), cre);
        }
        return null;
    }

    /**
     * Get a sql connection from the DataSource specified by the jdbcJndiName.
     * This API is intended to be used in the DAS. The motivation for having this
     * API is to provide the CMP backend a means of acquiring a connection during
     * the codegen phase. If a user is trying to deploy an app on a remote server,
     * without this API, a resource reference has to be present both in the DAS
     * and the server instance. This makes the deployment more complex for the
     * user since a resource needs to be forcibly created in the DAS Too.
     * This API will mitigate this need.
     *
     * @param resourceInfo the jndi name of the resource being used to get Connection from
     *                 This resource can either be a pmf resource or a jdbc resource
     * @param user  the user used to authenticate this request
     * @param password  the password used to authenticate this request
     *
     * @return a java.sql.Connection
     * @throws java.sql.SQLException in case of errors
     */
    public Connection getConnection(ResourceInfo resourceInfo, String user, String password)
            throws SQLException{
	    return ccPoolAdmService.getConnection( resourceInfo, user, password );
    }

    /**
     * Get a sql connection from the DataSource specified by the jdbcJndiName.
     * This API is intended to be used in the DAS. The motivation for having this
     * API is to provide the CMP backend a means of acquiring a connection during
     * the codegen phase. If a user is trying to deploy an app on a remote server,
     * without this API, a resource reference has to be present both in the DAS
     * and the server instance. This makes the deployment more complex for the
     * user since a resource needs to be forcibly created in the DAS Too.
     * This API will mitigate this need.
     *
     * @param resourceInfo the jndi name of the resource being used to get Connection from
     *                 This resource can either be a pmf resource or a jdbc resource
     *
     * @return a java.sql.Connection
     * @throws java.sql.SQLException in case of errors
     */
    public Connection getConnection(ResourceInfo resourceInfo)
            throws SQLException{
	    return ccPoolAdmService.getConnection( resourceInfo );
    }


    /**
     * Gets the properties of the Java bean connection definition class that
     * have setter methods defined and the default values as provided by the
     * Connection Definition java bean developer.
     * This method is used to get properties of jdbc-data-source
* To get Connection definition properties for Connector Connection Pool, * use ConnectorRuntime.getMCFConfigProperties()
* When the connection definition class is not found, standard JDBC * properties (of JDBC 3.0 Specification) will be returned.
* * @param connectionDefinitionClassName The Connection Definition Java bean class for which * overrideable properties are required. * @return Map String represents property name * and Object is the defaultValue that is a primitive type or String. */ public Map getConnectionDefinitionPropertiesAndDefaults(String connectionDefinitionClassName, String resType) { return ccPoolAdmService.getConnectionDefinitionPropertiesAndDefaults( connectionDefinitionClassName, resType); } /** * Provides the list of built in custom resources by * resource-type and factory-class-name pair. * @return map of resource-type & factory-class-name */ public Map getBuiltInCustomResources(){ return ConnectorsUtil.getBuiltInCustomResources(); } /** * Returns the system RAR names that allow pool creation * @return String array representing list of system-rars */ public String[] getSystemConnectorsAllowingPoolCreation(){ Collection validSystemRarsAllowingPoolCreation = new ArrayList(); Collection validSystemRars = ConnectorsUtil.getSystemRARs(); for(String systemRarName : systemRarsAllowingPoolCreation){ if(validSystemRars.contains(systemRarName)){ validSystemRarsAllowingPoolCreation.add(systemRarName); } } String[] systemRarNames = new String[validSystemRarsAllowingPoolCreation.size()]; return validSystemRarsAllowingPoolCreation.toArray(systemRarNames); } /** * {@inheritDoc} */ public String[] getConnectionDefinitionNames(String rarName) throws ConnectorRuntimeException { return configParserAdmService.getConnectionDefinitionNames(rarName); } /** * {@inheritDoc} */ public String getSecurityPermissionSpec(String moduleName) throws ConnectorRuntimeException { return configParserAdmService.getSecurityPermissionSpec(moduleName); } /** * {@inheritDoc} */ public String[] getAdminObjectInterfaceNames(String rarName) throws ConnectorRuntimeException { return configParserAdmService.getAdminObjectInterfaceNames(rarName); } /** * {@inheritDoc} */ public String[] getAdminObjectClassNames(String rarName, String intfName) throws ConnectorRuntimeException { return configParserAdmService.getAdminObjectClassNames(rarName, intfName); } /** * {@inheritDoc} */ public boolean hasAdminObject(String rarName, String intfName, String className) throws ConnectorRuntimeException{ return configParserAdmService.hasAdminObject(rarName, intfName, className); } /** * {@inheritDoc} */ public Map getResourceAdapterConfigProps(String rarName) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getResourceAdapterConfigProps(rarName); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public Map getMCFConfigProps( String rarName,String connectionDefName) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getMCFConfigProps( rarName,connectionDefName); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public Map getAdminObjectConfigProps( String rarName,String adminObjectIntf) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getAdminObjectConfigProps(rarName,adminObjectIntf); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public Map getAdminObjectConfigProps( String rarName,String adminObjectIntf, String adminObjectClass) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getAdminObjectConfigProps(rarName,adminObjectIntf, adminObjectClass); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public Map getConnectorConfigJavaBeans(String rarName, String connectionDefName,String type) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getConnectorConfigJavaBeans( rarName,connectionDefName,type); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public String getActivationSpecClass( String rarName, String messageListenerType) throws ConnectorRuntimeException { return configParserAdmService.getActivationSpecClass( rarName,messageListenerType); } /** * {@inheritDoc} */ public String[] getMessageListenerTypes(String rarName) throws ConnectorRuntimeException { return configParserAdmService.getMessageListenerTypes( rarName); } /** * {@inheritDoc} */ public Map getMessageListenerConfigProps(String rarName, String messageListenerType)throws ConnectorRuntimeException { Properties properties = configParserAdmService.getMessageListenerConfigProps( rarName,messageListenerType); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * {@inheritDoc} */ public Map getMessageListenerConfigPropTypes(String rarName, String messageListenerType) throws ConnectorRuntimeException { Properties properties = configParserAdmService.getMessageListenerConfigPropTypes( rarName,messageListenerType); return ConnectorsUtil.convertPropertiesToMap(properties); } /** * Returns the configurable ResourceAdapterBean Properties * for a connector module bundled as a RAR. * * @param pathToDeployableUnit a physical,accessible location of the connector module. * [either a RAR for RAR-based deployments or a directory for Directory based deployments] * @return A Map that is of * An empty map is returned in the case of a 1.0 RAR */ /* TODO public Map getResourceAdapterBeanProperties(String pathToDeployableUnit) throws ConnectorRuntimeException{ return configParserAdmService.getRABeanProperties(pathToDeployableUnit); } */ /** * Causes pool to switch on the matching of connections. * It can be either directly on the pool or on the ConnectorConnectionPool * object that is bound in JNDI. * * @param rarName Name of Resource Adpater. * @param poolInfo Name of the pool. */ public void switchOnMatching(String rarName, PoolInfo poolInfo) { connectorService.switchOnMatching(rarName, poolInfo); } /** * Causes matching to be switched on the ConnectorConnectionPool * bound in JNDI * * @param poolInfo Name of the pool * @throws ConnectorRuntimeException when unable to set matching via jndi object */ public void switchOnMatchingInJndi(PoolInfo poolInfo) throws ConnectorRuntimeException { ccPoolAdmService.switchOnMatching(poolInfo); } public GlassfishNamingManager getNamingManager() { return namingManager; } /** * The component has been injected with any dependency and * will be placed into commission by the subsystem. */ public void postConstruct() { ccPoolAdmService = (ConnectorConnectionPoolAdminServiceImpl) ConnectorAdminServicesFactory.getService(ConnectorConstants.CCP); connectorResourceAdmService = (ConnectorResourceAdminServiceImpl) ConnectorAdminServicesFactory.getService(ConnectorConstants.CR); connectorService = new ConnectorService(); resourceAdapterAdmService = (ResourceAdapterAdminServiceImpl) ConnectorAdminServicesFactory.getService(ConnectorConstants.RA); connectorSecurityAdmService = (ConnectorSecurityAdminServiceImpl) ConnectorAdminServicesFactory.getService(ConnectorConstants.SEC); adminObjectAdminService = (ConnectorAdminObjectAdminServiceImpl) ConnectorAdminServicesFactory.getService(ConnectorConstants.AOR); configParserAdmService = new ConnectorConfigurationParserServiceImpl(); initializeEnvironment(processEnvironment); if(isServer()) { getProbeProviderUtil().registerProbeProvider(); } if(isServer() || isEmbedded()){ poolMonitoringLevelListener = poolMonitoringLevelListenerProvider.get(); // Force initialization of the ResourceManager getResourceManager(); } } /** * initializes the connector runtime mode to be SERVER or CLIENT * @param processEnvironment ProcessEnvironment */ private void initializeEnvironment(ProcessEnvironment processEnvironment) { processType = processEnvironment.getProcessType(); } /** * Checks if a conncetor connection pool has been deployed to this server * instance * * @param poolInfo connection pool name * @return boolean indicating whether the resource is deployed or not */ public boolean isConnectorConnectionPoolDeployed(PoolInfo poolInfo) { return ccPoolAdmService.isConnectorConnectionPoolDeployed(poolInfo); } /** * Reconfigure a connection pool. * This method compares the passed connector connection pool with the one * in memory. If the pools are unequal and the MCF properties are changed * a pool recreate is required. However if the pools are unequal and the * MCF properties are not changed a recreate is not required * * @param ccp - the Updated connector connection pool object that admin * hands over * @param excludedProps - A set of excluded property names that we want * to be excluded in the comparison check while * comparing MCF properties * @return true - if a pool restart is required, false otherwise * @throws ConnectorRuntimeException when unable to reconfigure ccp */ public boolean reconfigureConnectorConnectionPool(ConnectorConnectionPool ccp, Set excludedProps) throws ConnectorRuntimeException { return ccPoolAdmService.reconfigureConnectorConnectionPool( ccp, excludedProps); } /** * Recreate a connector connection pool. This method essentially does * the following things: * 1. Delete the said connector connection pool
* 2. Bind the pool to JNDI
* 3. Create an MCF for this pool and register with the connector registry
* * @param ccp - the ConnectorConnectionPool to publish * @throws ConnectorRuntimeException when unable to recreate ccp */ public void recreateConnectorConnectionPool(ConnectorConnectionPool ccp) throws ConnectorRuntimeException { ccPoolAdmService.recreateConnectorConnectionPool(ccp); } /** * Creates connector connection pool in the connector container. * * @param ccp ConnectorConnectionPool instance to be bound to JNDI. This * object contains the pool properties. * @param connectionDefinitionName Connection definition name against which * connection pool is being created * @param rarName Name of the resource adapter * @param props Properties of MCF which are present in domain.xml * These properties override the ones present in ra.xml * @param securityMaps Array fo security maps. * @throws ConnectorRuntimeException When creation of pool fails. */ public void createConnectorConnectionPool(ConnectorConnectionPool ccp, String connectionDefinitionName, String rarName, List props, List securityMaps) throws ConnectorRuntimeException { ccPoolAdmService.createConnectorConnectionPool(ccp, connectionDefinitionName, rarName, props, securityMaps); } private synchronized org.glassfish.resourcebase.resources.listener.ResourceManager getResourceManager() { if (resourceManager == null) { try { resourceManager = resourceManagerProvider.get(); } catch (Exception e) { return null; } } return resourceManager; } /** * {@inheritDoc} */ public void cleanUpResourcesAndShutdownAllActiveRAs(){ Domain domain = domainProvider.get(); if (domain != null) { org.glassfish.resourcebase.resources.listener.ResourceManager rm = getResourceManager(); if (rm != null) { Collection resources = ConnectorsUtil.getAllSystemRAResourcesAndPools(domain.getResources()); resourceManager.undeployResources(resources); resources = null; Collection extensions = habitat.getAllServices(ConnectorRuntimeExtension.class); for(ConnectorRuntimeExtension extension : extensions) { resources = extension.getAllSystemRAResourcesAndPools(); resourceManager.undeployResources(resources); } } } poolManager.killFreeConnectionsInPools(); resourceAdapterAdmService.stopAllActiveResourceAdapters(); } /** * {@inheritDoc} */ public void shutdownAllActiveResourceAdapters() { resourceAdapterAdmService.stopAllActiveResourceAdapters(); } public PoolManager getPoolManager() { return poolManager; } /** * provides the invocationManager * * @return InvocationManager */ public InvocationManager getInvocationManager() { return invocationManager; } public Timer getTimer() { ClassLoader appClassLoader = Utility.getClassLoader(); // prevent app class loader leaking into timer Utility.setContextClassLoader(null); try { return AccessController.doPrivileged((PrivilegedAction) ConnectorTimerProxy::getProxy); } finally { Utility.setContextClassLoader(appClassLoader); } } /** * get resource reference descriptors from current component's jndi environment * * @return set of resource-refs */ public Set getResourceReferenceDescriptor() { JndiNameEnvironment jndiEnv = componentEnvManager.getCurrentJndiNameEnvironment(); if (jndiEnv != null) { return jndiEnv.getResourceReferenceDescriptors(); } else { return null; } } /** * The component is about to be removed from commission */ public void preDestroy() { } /** * Obtain the authentication service associated with rar module. * Currently only the BasicPassword authentication is supported. * * @param rarName Rar module Name * @param poolInfo Name of the pool. Used for creation of * BasicPasswordAuthenticationService * @return AuthenticationService connector runtime's authentication service */ public AuthenticationService getAuthenticationService(String rarName, PoolInfo poolInfo) { return connectorSecurityAdmService.getAuthenticationService(rarName, poolInfo); } /** * Checks whether the executing environment is embedded * @return true if execution environment is embedded */ public boolean isEmbedded() { return ProcessEnvironment.ProcessType.Embedded.equals(processType); } /** * Checks whether the executing environment is non-acc (standalone) * @return true if execution environment is non-acc (standalone) */ public boolean isNonACCRuntime() { return ProcessEnvironment.ProcessType.Other.equals(processType); } /** * Checks whether the executing environment is application server * @return true if execution environment is server * false if it is client */ public boolean isServer() { return ProcessEnvironment.ProcessType.Server.equals(processType); } /** * Checks whether the executing environment is appclient container runtime * @return true if execution environment is appclient container * false if it is not ACC */ public boolean isACCRuntime() { return ProcessEnvironment.ProcessType.ACC.equals(processType); } /** * provides the current transaction * @return Transaction * @throws SystemException when unable to get the transaction */ public Transaction getTransaction() throws SystemException { return getTransactionManager().getTransaction(); } /** * provides the transactionManager * @return TransactionManager */ public JavaEETransactionManager getTransactionManager() { if (transactionManager == null) { transactionManager = javaEETransactionManagerProvider.get(); } return transactionManager; } /** * Gets Connector Resource Rebind Event notifier. * * @return ConnectorNamingEventNotifier */ /* private ConnectorNamingEventNotifier getResourceRebindEventNotifier() { return connectorResourceAdmService.getResourceRebindEventNotifier(); } */ /** * register the connector naming event listener * @param listener connector-naming-event-listener */ public void registerConnectorNamingEventListener(ConnectorNamingEventListener listener){ connectorResourceAdmService.getResourceRebindEventNotifier().addListener(listener); } /** * unregister the connector naming event listner * @param listener connector-naming-event-listener */ public void unregisterConnectorNamingEventListener(ConnectorNamingEventListener listener){ connectorResourceAdmService.getResourceRebindEventNotifier().removeListener(listener); } public ResourcePool getConnectionPoolConfig(PoolInfo poolInfo) { ResourcePool pool = ResourcesUtil.createInstance().getPoolConfig(poolInfo); if(pool == null && (ConnectorsUtil.isApplicationScopedResource(poolInfo) || ConnectorsUtil.isModuleScopedResource(poolInfo))){ //it is possible that the application scoped resources is being deployed Resources asc = ResourcesRegistry.getResources(poolInfo.getApplicationName(), poolInfo.getModuleName()); pool = ConnectorsUtil.getConnectionPoolConfig(poolInfo, asc); } if(pool == null){ throw new RuntimeException("No pool by name [ "+poolInfo+" ] found"); } return pool; } public boolean pingConnectionPool(PoolInfo poolInfo) throws ResourceException { return ccPoolAdmService.testConnectionPool(poolInfo); } public PoolType getPoolType(PoolInfo poolInfo) throws ConnectorRuntimeException { return ccPoolAdmService.getPoolType(poolInfo); } /** * provides work manager proxy that is Serializable * * @param poolId ThreadPoolId * @param moduleName resource-adapter name * @param rarCL classloader of the resource-adapter * @return WorkManager * @throws ConnectorRuntimeException when unable to get work manager */ public WorkManager getWorkManagerProxy(String poolId, String moduleName, ClassLoader rarCL) throws ConnectorRuntimeException { return workManagerFactoryProvider.get().getWorkManagerProxy(poolId, moduleName, rarCL); } /** * provides XATerminator proxy that is Serializable * @param moduleName resource-adapter name * @return XATerminator */ public XATerminator getXATerminatorProxy(String moduleName){ XATerminator xat = getTransactionManager().getXATerminator(); return new XATerminatorProxy(xat); } public void removeWorkManagerProxy(String moduleName) { workManagerFactoryProvider.get().removeWorkManager(moduleName); } public void addAdminObject(String appName, String connectorName, ResourceInfo resourceInfo, String adminObjectType, String adminObjectClassName, Properties props) throws ConnectorRuntimeException { adminObjectAdminService.addAdminObject(appName, connectorName, resourceInfo, adminObjectType, adminObjectClassName, props); } public void deleteAdminObject(ResourceInfo resourceInfo) throws ConnectorRuntimeException { adminObjectAdminService.deleteAdminObject(resourceInfo); } public ClassLoader getSystemRARClassLoader(String rarName) throws ConnectorRuntimeException{ return cclUtil.getSystemRARClassLoader(rarName); } /** * Given the module directory, creates a connector-class-finder (class-loader) for the module * @param moduleDirectory rar module directory for which classloader is needed * @param parent parent classloader
* For standalone rars, pass null, as the parent should be common-class-loader * that will be automatically taken care by ConnectorClassLoaderService.
* For embedded rars, parent is necessary
* @return classloader created for the module */ public ClassLoader createConnectorClassLoader(String moduleDirectory, ClassLoader parent, String rarModuleName) throws ConnectorRuntimeException{ List libraries = ConnectorsUtil.getInstalledLibrariesFromManifest(moduleDirectory, env); return cclUtil.createRARClassLoader(moduleDirectory, parent, rarModuleName, libraries); } public ResourceDeployer getResourceDeployer(Object resource){ return resourceManagerFactoryProvider.get().getResourceDeployer(resource); } /** Add the resource adapter configuration to the connector registry * @param rarName rarmodule * @param raConfig Resource Adapter configuration object * @throws ConnectorRuntimeException if the addition fails. */ public void addResourceAdapterConfig(String rarName, ResourceAdapterConfig raConfig) throws ConnectorRuntimeException { resourceAdapterAdmService.addResourceAdapterConfig(rarName,raConfig); } /** Delete the resource adapter configuration to the connector registry * @param rarName rarmodule */ public void deleteResourceAdapterConfig(String rarName) throws ConnectorRuntimeException { resourceAdapterAdmService.deleteResourceAdapterConfig(rarName); } /** * register the connector application with registry * @param rarModule resource-adapter module */ public void registerConnectorApplication(ConnectorApplication rarModule){ connectorRegistry.addConnectorApplication(rarModule); } /** * unregister the connector application from registry * @param rarName resource-adapter name */ public void unregisterConnectorApplication(String rarName){ connectorRegistry.removeConnectorApplication(rarName); } /** * undeploy resources of the module * @param rarName resource-adapter name */ public void undeployResourcesOfModule(String rarName){ ConnectorApplication app = connectorRegistry.getConnectorApplication(rarName); app.undeployResources(); } /** * deploy resources of the module * @param rarName resource-adapter name */ public void deployResourcesOfModule(String rarName){ ConnectorApplication app = connectorRegistry.getConnectorApplication(rarName); app.deployResources(); } public ActiveRAFactory getActiveRAFactory(){ return activeRAFactory; } public Applications getApplications() { return applicationsProvider.get(); } public ApplicationRegistry getAppRegistry() { return applicationRegistryProvider.get(); } public ApplicationArchivist getApplicationArchivist(){ return applicationArchivistProvider.get(); } public FileArchive getFileArchive(){ return fileArchiveProvider.get(); } public Domain getDomain() { return domainProvider.get(); } public ServerEnvironment getServerEnvironment() { return env; } public void createActiveResourceAdapterForEmbeddedRar(String rarModuleName) throws ConnectorRuntimeException { connectorService.createActiveResourceAdapterForEmbeddedRar(rarModuleName); } /** * Check whether ClassLoader is permitted to access this resource adapter. * If the RAR is deployed and is not a standalone RAR, then only the ClassLoader * that loaded the archive (any of its child) should be able to access it. Otherwise everybody can * access the RAR. * * @param rarName Resource adapter module name. * @param loader ClassLoader to verify. */ public boolean checkAccessibility(String rarName, ClassLoader loader) { return connectorService.checkAccessibility(rarName, loader); } public void loadDeferredResourceAdapter(String rarName) throws ConnectorRuntimeException { connectorService.loadDeferredResourceAdapter(rarName); } public SecurityRoleMapperFactory getSecurityRoleMapperFactory() { return securityRoleMapperFactoryProvider.get(); } /** * {@inheritDoc} */ public CallbackHandler getCallbackHandler(){ //TODO V3 hack to make sure that SecurityServicesUtil is initialized before ContainerCallbackHander securityServicesUtilProvider.get(); return containerCallbackHandlerProvider.get(); } public ConnectorArchivist getConnectorArchvist() throws ConnectorRuntimeException { ArchivistFactory archivistFactory = archivistFactoryProvider.get(); return (ConnectorArchivist) archivistFactory.getArchivist(archiveType); } public WorkContextHandler getWorkContextHandler(){ return workContextHandlerProvider.get(); } public ComponentEnvManager getComponentEnvManager(){ return componentEnvManager; } /** * {@inheritDoc} */ public DelegatingClassLoader getConnectorClassLoader() { return clh.getConnectorClassLoader(null); } public ClassLoaderHierarchy getClassLoaderHierarchy(){ return clh; } /** * {@inheritDoc} */ public void registerDataSourceDefinitions(com.sun.enterprise.deployment.Application application) { Collection extensions = habitat.getAllServices(ConnectorRuntimeExtension.class); for(ConnectorRuntimeExtension extension : extensions) { extension.registerDataSourceDefinitions(application); } } /** * {@inheritDoc} */ public void unRegisterDataSourceDefinitions(com.sun.enterprise.deployment.Application application) { Collection extensions = habitat.getAllServices(ConnectorRuntimeExtension.class); for(ConnectorRuntimeExtension extension : extensions) { extension.unRegisterDataSourceDefinitions(application); } } /** * {@inheritDoc} */ public void registerMailSessions(com.sun.enterprise.deployment.Application application) { mailSessionDeployerProvider.get().registerMailSessions(application); } /** * {@inheritDoc} */ public void unRegisterMailSessions(com.sun.enterprise.deployment.Application application) { mailSessionDeployerProvider.get().unRegisterMailSessions(application); } /** * {@inheritDoc} */ public List getWorkSecurityMap(String raName) { List workSecurityMap = ConnectorsUtil.getWorkSecurityMaps(raName, getResources()); List appScopedMap = null; String appName = raName; if (!ConnectorsUtil.isStandAloneRA(raName)) { appName = ConnectorsUtil.getApplicationNameOfEmbeddedRar(raName); Application application = getApplications().getApplication(appName); if(application != null){ //embedded RAR String resourceAdapterName = ConnectorsUtil.getRarNameFromApplication(raName); Module module = application.getModule(resourceAdapterName); if (module != null) { Resources msr = module.getResources(); if (msr != null) { appScopedMap = ConnectorsUtil.getWorkSecurityMaps(raName, msr); } } } }else{ Application app = getApplications().getApplication(appName); if (app != null) { Resources asc = app.getResources(); if (asc != null) { appScopedMap = ConnectorsUtil.getWorkSecurityMaps(raName, asc); } } } if (appScopedMap != null) { workSecurityMap.addAll(appScopedMap); } return workSecurityMap; } public Resources getResources(PoolInfo poolInfo){ Resources resources; if(ConnectorsUtil.isModuleScopedResource(poolInfo)){ Application application = getApplications().getApplication(poolInfo.getApplicationName()); if(application != null){ Module module = application.getModule(poolInfo.getModuleName()); return module.getResources(); }else{ return null; } }else if(ConnectorsUtil.isApplicationScopedResource(poolInfo)){ Application application = getApplications().getApplication(poolInfo.getApplicationName()); if(application != null){ return application.getResources(); }else{ return null; } } return getResources(); } public Resources getResources(ResourceInfo resourceInfo){ if(ConnectorsUtil.isModuleScopedResource(resourceInfo)){ Application application = getApplications().getApplication(resourceInfo.getApplicationName()); Module module = application.getModule(resourceInfo.getModuleName()); return module.getResources(); }else if(ConnectorsUtil.isApplicationScopedResource(resourceInfo)){ Application application = getApplications().getApplication(resourceInfo.getApplicationName()); return application.getResources(); } return getResources(); } public Resources getResources(){ if(globalResources == null){ globalResources = domainProvider.get().getResources(); } return globalResources; } /** * @inheritDoc */ public long getShutdownTimeout() { return ConnectorsUtil.getShutdownTimeout( connectorServiceProvider.get()); } /** * Flush Connection pool by reinitializing the connections * established in the pool. * @param poolName * @throws com.sun.appserv.connectors.internal.api.ConnectorRuntimeException */ public boolean flushConnectionPool(String poolName) throws ConnectorRuntimeException { return ccPoolAdmService.flushConnectionPool(new PoolInfo(poolName)); } /** * Flush Connection pool by reinitializing the connections * established in the pool. * @param poolInfo * @throws com.sun.appserv.connectors.internal.api.ConnectorRuntimeException */ public boolean flushConnectionPool(PoolInfo poolInfo) throws ConnectorRuntimeException { return ccPoolAdmService.flushConnectionPool(poolInfo); } /** * Get jdbc driver implementation class names list for the dbVendor and * resource type supplied. * @param dbVendor * @param resType * @return all jdbc driver implementation class names */ public Set getJdbcDriverClassNames(String dbVendor, String resType) { return driverLoader.getJdbcDriverClassNames(dbVendor, resType); } /** * Get jdbc driver implementation class names list for the dbVendor and * resource type supplied. If introspect is true, classnames are got from * introspection of the jdbc driver jar. Else a pre-defined list is used to * retrieve the class names. * @param dbVendor * @param resType * @param introspect * @return all jdbc driver implementation class names */ public Set getJdbcDriverClassNames(String dbVendor, String resType, boolean introspect) { return driverLoader.getJdbcDriverClassNames(dbVendor, resType, introspect); } /** * returns the bean validator that can be used to validate various connector bean artifacts * (ResourceAdapter, ManagedConnetionFactory, AdministeredObject, ActivationSpec) * @return ConnectorBeanValidator */ public ConnectorJavaBeanValidator getConnectorBeanValidator(){ return connectorBeanValidator; } /** * Check if ping is on during pool creation. * * @param poolInfo * @return */ public boolean getPingDuringPoolCreation(PoolInfo poolInfo) { return ConnectorsUtil.getPingDuringPoolCreation(poolInfo, getResources(poolInfo)); } /** * Get jdbc database vendor names list. * @return set of common database vendor names */ public Set getDatabaseVendorNames() { return driverLoader.getDatabaseVendorNames(); } public boolean isJdbcPoolMonitoringEnabled(){ boolean enabled = false; if(poolMonitoringLevelListener != null){ enabled = poolMonitoringLevelListener.getJdbcPoolMonitoringEnabled(); } return enabled; } public boolean isConnectorPoolMonitoringEnabled(){ boolean enabled= false; if(poolMonitoringLevelListener != null){ enabled = poolMonitoringLevelListener.getConnectorPoolMonitoringEnabled(); } return enabled; } /** * @inheritDoc */ public void associateResourceAdapter(String rarName, ResourceAdapterAssociation raa) throws ResourceException{ resourceAdapterAdmService.associateResourceAdapter(rarName,raa); } public org.glassfish.resourcebase.resources.listener.ResourceManager getGlobalResourceManager(){ return getResourceManager(); } /** * @inheritDoc */ public List getConfidentialProperties(String rarName, String type, String... keyFields) throws ConnectorRuntimeException { ConnectorConfigParser configParser = ConnectorConfigParserFactory.getParser(type); if(configParser == null){ throw new ConnectorRuntimeException("Invalid type : " + type); } return configParser.getConfidentialProperties( getConnectorDescriptor(rarName), rarName, keyFields); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy