Java Doc for XURLClassLoader.java in  » Science » Cougaar12_4 » org » cougaar » bootstrap » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Science » Cougaar12_4 » org.cougaar.bootstrap 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.lang.ClassLoader
      java.security.SecureClassLoader
         org.cougaar.bootstrap.XURLClassLoader

All known Subclasses:   org.cougaar.bootstrap.LoggingClassLoader,  org.cougaar.bootstrap.BootstrapClassLoader,
XURLClassLoader
public class XURLClassLoader extends SecureClassLoader (Code)
This class loader is used to load classes and resources from a search path of URLs referring to both JAR files and directories. Any URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be opened as needed.

The AccessControlContext of the thread that created the instance of XURLClassLoader will be used when subsequently loading classes and resources.

The classes that are loaded are by default granted permission only to access the URLs specified when the XURLClassLoader was created.
since:
   1.2




Constructor Summary
public  XURLClassLoader(URL[] urls, ClassLoader parent)
     Constructs a new XURLClassLoader for the given URLs.
public  XURLClassLoader(URL[] urls)
     Constructs a new XURLClassLoader for the specified URLs using the default delegation parent ClassLoader.
public  XURLClassLoader(URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory)
     Constructs a new XURLClassLoader for the specified URLs, parent class loader, and URLStreamHandlerFactory.

Method Summary
protected  voidaddURL(URL url)
     Appends the specified URL to the list of URLs to search for classes and resources.
protected  ClassdefineClass(String name, Resource res)
    
protected  PackagedefinePackage(String name, Manifest man, URL url)
     Defines a new package by name in this ClassLoader.
protected  ClassfindClass(String name)
     Finds and loads the class with the specified name from the URL search path.
public  URLfindResource(String name)
     Finds the resource with the specified name on the URL search path.
public  EnumerationfindResources(String name)
     Returns an Enumeration of URLs representing all of the resources on the URL search path having the specified name.
protected  PermissionCollectiongetPermissions(CodeSource codesource)
     Returns the permissions for the given codesource object. The implementation of this method first calls super.getPermissions and then adds permissions based on the URL of the codesource.

If the protocol is "file" and the path specifies a file, then permission to read that file is granted.

public  URL[]getURLs()
     Returns the search path of URLs for loading classes and resources.
public static  XURLClassLoadernewInstance(URL[] urls, ClassLoader parent)
     Creates a new instance of XURLClassLoader for the specified URLs and parent class loader.
public static  XURLClassLoadernewInstance(URL[] urls)
     Creates a new instance of XURLClassLoader for the specified URLs and default parent class loader.


Constructor Detail
XURLClassLoader
public XURLClassLoader(URL[] urls, ClassLoader parent)(Code)
Constructs a new XURLClassLoader for the given URLs. The URLs will be searched in the order specified for classes and resources after first searching in the specified parent class loader. Any URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be downloaded and opened as needed.

If there is a security manager, this method first calls the security manager's checkCreateClassLoader method to ensure creation of a class loader is allowed.
Parameters:
  urls - the URLs from which to load classes and resources
Parameters:
  parent - the parent class loader for delegation
exception:
  SecurityException - if a security manager exists and its checkCreateClassLoader method doesn't allow creation of a class loader.
See Also:   SecurityManager.checkCreateClassLoader




XURLClassLoader
public XURLClassLoader(URL[] urls)(Code)
Constructs a new XURLClassLoader for the specified URLs using the default delegation parent ClassLoader. The URLs will be searched in the order specified for classes and resources after first searching in the parent class loader. Any URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be downloaded and opened as needed.

If there is a security manager, this method first calls the security manager's checkCreateClassLoader method to ensure creation of a class loader is allowed.
Parameters:
  urls - the URLs from which to load classes and resources
exception:
  SecurityException - if a security manager exists and its checkCreateClassLoader method doesn't allow creation of a class loader.
See Also:   SecurityManager.checkCreateClassLoader




XURLClassLoader
public XURLClassLoader(URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory)(Code)
Constructs a new XURLClassLoader for the specified URLs, parent class loader, and URLStreamHandlerFactory. The parent argument will be used as the parent class loader for delegation. The factory argument will be used as the stream handler factory to obtain protocol handlers when creating new URLs.

If there is a security manager, this method first calls the security manager's checkCreateClassLoader method to ensure creation of a class loader is allowed.
Parameters:
  urls - the URLs from which to load classes and resources
Parameters:
  parent - the parent class loader for delegation
Parameters:
  factory - the URLStreamHandlerFactory to use when creating URLs
exception:
  SecurityException - if a security manager exists and its checkCreateClassLoader method doesn't allow creation of a class loader.
See Also:   SecurityManager.checkCreateClassLoader





Method Detail
addURL
protected void addURL(URL url)(Code)
Appends the specified URL to the list of URLs to search for classes and resources.
Parameters:
  url - the URL to be added to the search path of URLs



defineClass
protected Class defineClass(String name, Resource res) throws IOException(Code)



definePackage
protected Package definePackage(String name, Manifest man, URL url) throws IllegalArgumentException(Code)
Defines a new package by name in this ClassLoader. The attributes contained in the specified Manifest will be used to obtain package version and sealing information. For sealed packages, the additional URL specifies the code source URL from which the package was loaded.
Parameters:
  name - the package name
Parameters:
  man - the Manifest containing package version and sealinginformation
Parameters:
  url - the code source url for the package, or null if none
exception:
  IllegalArgumentException - if the package name duplicatesan existing package either in this class loader or oneof its ancestors the newly defined Package object



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 name)(Code)
Finds the resource with the specified name on the URL search path.
Parameters:
  name - the name of the resource a URL for the resource, or null if the resource could not be found.



findResources
public Enumeration findResources(String name) throws IOException(Code)
Returns an Enumeration of URLs representing all of the resources on the URL search path having the specified name.
Parameters:
  name - the resource name
exception:
  IOException - if an I/O exception occurs an Enumeration of URLs



getPermissions
protected PermissionCollection getPermissions(CodeSource codesource)(Code)
Returns the permissions for the given codesource object. The implementation of this method first calls super.getPermissions and then adds permissions based on the URL of the codesource.

If the protocol is "file" and the path specifies a file, then permission to read that file is granted. If protocol is "file" and the path is a directory, permission is granted to read all files and (recursively) all files and subdirectories contained in that directory.

If the protocol is not "file", then to connect to and accept connections from the URL's host is granted.
Parameters:
  codesource - the codesource the permissions granted to the codesource




getURLs
public URL[] getURLs()(Code)
Returns the search path of URLs for loading classes and resources. This includes the original list of URLs specified to the constructor, along with any URLs subsequently appended by the addURL() method. the search path of URLs for loading classes and resources.



newInstance
public static XURLClassLoader newInstance(URL[] urls, ClassLoader parent)(Code)
Creates a new instance of XURLClassLoader for the specified URLs and parent class loader. If a security manager is installed, the loadClass method of the XURLClassLoader returned by this method will invoke the SecurityManager.checkPackageAccess method before loading the class.
Parameters:
  urls - the URLs to search for classes and resources
Parameters:
  parent - the parent class loader for delegation the resulting class loader



newInstance
public static XURLClassLoader newInstance(URL[] urls)(Code)
Creates a new instance of XURLClassLoader for the specified URLs and default parent class loader. If a security manager is installed, the loadClass method of the XURLClassLoader returned by this method will invoke the SecurityManager.checkPackageAccess before loading the class.
Parameters:
  urls - the URLs to search for classes and resources the resulting class loader



Methods inherited from java.security.SecureClassLoader
final protected Class defineClass(String name, byte[] b, int off, int len, CodeSource cs)(Code)(Java Doc)
final protected Class defineClass(String name, java.nio.ByteBuffer b, CodeSource cs)(Code)(Java Doc)
protected PermissionCollection getPermissions(CodeSource codesource)(Code)(Java Doc)

Methods inherited from java.lang.ClassLoader
public synchronized void clearAssertionStatus()(Code)(Java Doc)
final protected Class defineClass(byte[] b, int off, int len) throws ClassFormatError(Code)(Java Doc)
final protected Class defineClass(String name, byte[] b, int off, int len) throws ClassFormatError(Code)(Java Doc)
final protected Class defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain) throws ClassFormatError(Code)(Java Doc)
final protected Class defineClass(String name, java.nio.ByteBuffer b, ProtectionDomain protectionDomain) throws ClassFormatError(Code)(Java Doc)
protected Package definePackage(String name, String specTitle, String specVersion, String specVendor, String implTitle, String implVersion, String implVendor, URL sealBase) throws IllegalArgumentException(Code)(Java Doc)
protected Class findClass(String name) throws ClassNotFoundException(Code)(Java Doc)
protected String findLibrary(String libname)(Code)(Java Doc)
final protected Class findLoadedClass(String name)(Code)(Java Doc)
protected URL findResource(String name)(Code)(Java Doc)
protected Enumeration<URL> findResources(String name) throws IOException(Code)(Java Doc)
final protected Class findSystemClass(String name) throws ClassNotFoundException(Code)(Java Doc)
protected Package getPackage(String name)(Code)(Java Doc)
protected Package[] getPackages()(Code)(Java Doc)
final public ClassLoader getParent()(Code)(Java Doc)
public URL getResource(String name)(Code)(Java Doc)
public InputStream getResourceAsStream(String name)(Code)(Java Doc)
public Enumeration<URL> getResources(String name) throws IOException(Code)(Java Doc)
public static ClassLoader getSystemClassLoader()(Code)(Java Doc)
public static URL getSystemResource(String name)(Code)(Java Doc)
public static InputStream getSystemResourceAsStream(String name)(Code)(Java Doc)
public static Enumeration<URL> getSystemResources(String name) throws IOException(Code)(Java Doc)
public Class loadClass(String name) throws ClassNotFoundException(Code)(Java Doc)
protected synchronized Class loadClass(String name, boolean resolve) throws ClassNotFoundException(Code)(Java Doc)
final protected void resolveClass(Class c)(Code)(Java Doc)
public synchronized void setClassAssertionStatus(String className, boolean enabled)(Code)(Java Doc)
public synchronized void setDefaultAssertionStatus(boolean enabled)(Code)(Java Doc)
public synchronized void setPackageAssertionStatus(String packageName, boolean enabled)(Code)(Java Doc)
final protected void setSigners(Class c, Object[] signers)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.