donaldp     02/03/23 15:20:13

  Modified:    proposal/myrmidon/src/xdocs todo.xml
  Log:
  Add SecurityManager TODO
  
  Revision  Changes    Path
  1.12      +20 -0     jakarta-ant/proposal/myrmidon/src/xdocs/todo.xml
  
  Index: todo.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/xdocs/todo.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- todo.xml  22 Mar 2002 04:26:34 -0000      1.11
  +++ todo.xml  23 Mar 2002 23:20:13 -0000      1.12
  @@ -14,6 +14,26 @@
               sections describe some of the many things which still need to be 
done to
               achieve that goal.  This list is currently under 
construction.</p>
   
  +
  +            <subsection name="Security Manager">
  +                <p>Add the ability to run java programs that call 
System.exit() by adding a
  +                security manager. Should look something like:</p>
  +                <source>
  +public class MyrmidonSecurityManager
  +    extends SecurityManager
  +{
  +    public void checkExit( final int status )
  +    {
  +        throw new ExitException( status );
  +    }
  +
  +    public void checkPermission( final Permission permission )
  +    {
  +    }
  +}
  +                </source>
  +            </subsection>
  +
               <subsection name="Self Hosting">
   
                   <p>Myrmidon must be able to build itself.  Currently, it is 
built using
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to