| org.objectweb.jonas_lib.loader.AbsModuleClassLoader org.objectweb.jonas_lib.loader.ClientClassLoader
ClientClassLoader | public class ClientClassLoader extends AbsModuleClassLoader (Code) | | ClassLoader used for loading Client classes and resources
author: Guillaume Sauthier |
Method Summary | |
protected void | init() Add the directory and the content of
META-INF/wsdl/ in the ClassLoader. |
ClientClassLoader | public ClientClassLoader(URL module) throws IOException(Code) | | Create a new ClientClassLoader with default parent ClassLoader
Parameters: module - an URL of Client files throws: IOException - if creation fails |
ClientClassLoader | public ClientClassLoader(URL module, ClassLoader parent) throws IOException(Code) | | Create a new ClientClassLoader with specified parent ClassLoader
Parameters: module - an URL of Client files Parameters: parent - the parent ClassLoader to use throws: IOException - if creation fails |
ClientClassLoader | public ClientClassLoader(URL[] modules, ClassLoader parent) throws IOException(Code) | | Create a new ClientClassLoader with specified parent ClassLoader
Parameters: modules - an URL[] of Client files + dependencies Parameters: parent - the parent ClassLoader to use throws: IOException - if creation fails |
init | protected void init() throws IOException(Code) | | Add the directory and the content of
META-INF/wsdl/ in the ClassLoader.
throws: IOException - When initialisation fails. |
|
|