Package org.glassfish.internal.api
Interface ConnectorClassLoaderService
-
@Contract public interface ConnectorClassLoaderServiceWe support two policies: 1. All standalone RARs are available to all other applications. This is the Java EE 5 specific behavior. 2. An application has visbility to only those standalone RARs that it depends on. This is the new behavior defined in Java EE 6 as well as JCA 1.6 spec. See https://glassfish.dev.java.net/issues/show_bug.cgi?id=5380- Author:
- Sanjeeb.Sahoo@Sun.COM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DelegatingClassLoadergetConnectorClassLoader(String appName)provides connector-class-loader for the specified application If application is null, global connector class loader will be provided
-
-
-
Method Detail
-
getConnectorClassLoader
DelegatingClassLoader getConnectorClassLoader(String appName)
provides connector-class-loader for the specified application If application is null, global connector class loader will be provided- Parameters:
appName- application-name- Returns:
- class-loader
-
-