com.ibm.ws.classloading
Interface ClassLoaderConfiguration
- public interface ClassLoaderConfiguration
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getCommonLibraries()
|
|
getDelegateToParentAfterCheckingLocalClasspath()
|
getId()
|
|
getParentId()
|
|
|
getSharedLibraries()
|
setCommonLibraries(java.util.List<java.lang.String> libs)
|
|
setCommonLibraries(java.lang.String... libs)
|
|
setDelegateToParentAfterCheckingLocalClasspath(boolean delegateLast)
|
|
setId(ClassLoaderIdentity id)
|
|
setParentId(ClassLoaderIdentity id)
|
|
setSharedLibraries(java.util.List<java.lang.String> libs)
|
|
setSharedLibraries(java.lang.String... libs)
|
Method Detail
setDelegateToParentAfterCheckingLocalClasspath
- ClassLoaderConfiguration setDelegateToParentAfterCheckingLocalClasspath( boolean delegateLast)
Parameters:
delegateLast
- true indicates that the parent classloader should be
consulted after the local class space. This is not the default behaviour for
normal class loading. false indicates normal class loading semantics should be used. setId
- ClassLoaderConfiguration setId( ClassLoaderIdentity id)
Parameters:
id
- The identity for this classloader setParentId
- ClassLoaderConfiguration setParentId( ClassLoaderIdentity id)
Parameters:
id
- The identity of the parent to this classloader, if a parent is required. setSharedLibraries
- ClassLoaderConfiguration setSharedLibraries( java.util.List<java.lang.String> libs)
Parameters:
libs
- the names of shared libraries that should be associated with this classloader setSharedLibraries
- ClassLoaderConfiguration setSharedLibraries( java.lang.String... libs)
See Also:
getSharedLibraries
- java.util.List<java.lang.String> getSharedLibraries( )
setCommonLibraries
- ClassLoaderConfiguration setCommonLibraries( java.util.List<java.lang.String> libs)
Parameters:
libs
- the names of common shared libraries that should be associated with this classloader setCommonLibraries
- ClassLoaderConfiguration setCommonLibraries( java.lang.String... libs)
See Also:
getCommonLibraries
- java.util.List<java.lang.String> getCommonLibraries( )
getParentId
- ClassLoaderIdentity getParentId( )
getId
- ClassLoaderIdentity getId()
getDelegateToParentAfterCheckingLocalClasspath
- boolean getDelegateToParentAfterCheckingLocalClasspath( )