Browse Source

Add SecurityManager TODO

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271993 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
daa0b5fc35
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      proposal/myrmidon/src/xdocs/todo.xml

+ 20
- 0
proposal/myrmidon/src/xdocs/todo.xml View File

@@ -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


Loading…
Cancel
Save