You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by gl...@apache.org on 2001/01/23 23:12:37 UTC

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/loader Reloader.java

glenn       01/01/23 14:12:35

  Modified:    catalina/src/share/org/apache/catalina/loader Reloader.java
  Log:
  Implement SecurityManager
  
  Revision  Changes    Path
  1.3       +4 -61     jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/loader/Reloader.java
  
  Index: Reloader.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/loader/Reloader.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Reloader.java	2000/09/21 20:06:04	1.2
  +++ Reloader.java	2001/01/23 22:12:32	1.3
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/loader/Reloader.java,v 1.2 2000/09/21 20:06:04 craigmcc Exp $
  - * $Revision: 1.2 $
  - * $Date: 2000/09/21 20:06:04 $
  + * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/loader/Reloader.java,v 1.3 2001/01/23 22:12:32 glenn Exp $
  + * $Revision: 1.3 $
  + * $Date: 2001/01/23 22:12:32 $
    *
    * ====================================================================
    *
  @@ -71,23 +71,13 @@
    * <code>StandardLoader</code>.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.2 $ $Date: 2000/09/21 20:06:04 $
  + * @version $Revision: 1.3 $ $Date: 2001/01/23 22:12:32 $
    */
   
   public interface Reloader {
   
   
       /**
  -     * Add a new fully qualified class or resource name to which access will be
  -     * allowed, even if the class or resource name would otherwise match one
  -     * of the restricted patterns.
  -     *
  -     * @param name Class or resource name to allow access for
  -     */
  -    public void addAllowed(String name);
  -
  -
  -    /**
        * Add a new repository to the set of places this ClassLoader can look for
        * classes to be loaded.
        *
  @@ -101,58 +91,11 @@
   
   
       /**
  -     * Add a fully qualified class or resource name prefix that, if it matches
  -     * the name of a requested class or resource, will cause access to that
  -     * class or resource to fail (unless the complete name is on the allowed
  -     * list).
  -     *
  -     * @param prefix The restricted prefix
  -     */
  -    public void addRestricted(String prefix);
  -
  -
  -    /**
  -     * Add a fully qualified class or resource name prefix that, if it matches
  -     * the name of a requested class or resource, will cause access to that
  -     * class or resource to be attempted in the system class loader only
  -     * (bypassing the repositories defined in this class loader).  By default,
  -     * the <code>java.</code> prefix is defined as a system prefix.
  -     *
  -     * @param prefix The system prefix
  -     */
  -    public void addSystem(String prefix);
  -
  -
  -    /**
  -     * Return a String array of the allowed class or resource name list
  -     * for this class loader.  If there are none, a zero-length array
  -     * is returned.
  -     */
  -    public String[] findAllowed();
  -
  -
  -    /**
        * Return a String array of the current repositories for this class
        * loader.  If there are no repositories, a zero-length array is
        * returned.
        */
       public String[] findRepositories();
  -
  -
  -    /**
  -     * Return a String array of the restricted class or resource name prefixes
  -     * for this class loader.  If there are none, a zero-length array
  -     * is returned.
  -     */
  -    public String[] findRestricted();
  -
  -
  -    /**
  -     * Return a Striong array of the sytsem class or resource name prefixes
  -     * for this class loader.  If there are none, a zero-length array
  -     * is returned.
  -     */
  -    public String[] findSystem();
   
   
       /**