| java.net.URLClassLoader org.apache.axis2.deployment.DeploymentClassLoader
Inner Class :public static class ByteURLConnection extends URLConnection | |
DeploymentClassLoader | public DeploymentClassLoader(URL[] urls, List embedded_jars, ClassLoader parent)(Code) | | DeploymentClassLoader is extended from URLClassLoader. The constructor
does not override the super constructor, but takes in an addition list of
jar files inside /lib directory.
Parameters: urls - URL s Parameters: parent - parent classloader ClassLoader |
findClass | protected Class findClass(String name) throws ClassNotFoundException(Code) | | Finds and loads the class with the specified name from the URL search
path. Any URLs referring to JAR files are loaded and opened as needed
until the class is found.
Parameters: name - the name of the class the resulting class exception: ClassNotFoundException - if the class could not be found |
findResource | public URL findResource(String resource)(Code) | | Finds the resource with the specified name on the URL search path.
Parameters: resource - the name of the resource a URL for the resource, or null if the resource could not be found. |
findResources | public Enumeration findResources(String resource) throws IOException(Code) | | Returns an Enumeration of URLs representing all of the resources
on the URL search path having the specified name.
Parameters: resource - the resource name exception: IOException - if an I/O exception occurs an Enumeration of URL s |
|
|