-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// This file was generated by the RMI Plugin for Eclipse. | ||
|
||
/////////////////////////////////////////////////////////////// | ||
// This is a sample policy file that grants the application all permissions. | ||
// A policy file is needed by the RMISecurityManager and your application might | ||
// not work after installing the RMISecurityManager unless you provide a | ||
// security policy file at launch. | ||
// | ||
// You can configure the security policy of a launched application using either | ||
// the RMI Launcher or by manually setting the java.security.policy property. | ||
// | ||
// SECURITY NOTE: This security policy is good for development. For deployment | ||
// you may need a stricter security policy. | ||
// | ||
// For more information see: | ||
// http://java.sun.com/docs/books/tutorial/rmi/running.html | ||
// http://java.sun.com/j2se/1.5.0/docs/guide/security/PolicyFiles.html | ||
// | ||
|
||
grant { | ||
permission java.security.AllPermission; | ||
permission java.net.SocketPermission "*", "accept, connect, listen, resolve"; | ||
|
||
// Other options: | ||
// permission java.net.SocketPermission "127.0.0.1:1024-", "accept, connect, listen, resolve"; | ||
// permission java.net.SocketPermission "localhost:1024-", "accept, connect, listen, resolve"; | ||
|
||
// From http://java.sun.com/docs/books/tutorial/rmi/running.html | ||
// Copyright 1995-2005 Sun Microsystems, Inc. Reprinted with permission | ||
|
||
// permission java.net.SocketPermission "*:1024-65535", "connect,accept"; | ||
// permission java.net.SocketPermission "*:80", "connect"; | ||
|
||
// permission java.net.SocketPermission "*:1024-65535", "connect,accept"; | ||
// permission java.io.FilePermission "c:\\home\\ann\\public_html\\classes\\-", "read"; | ||
// permission java.io.FilePermission "c:\\home\\jones\\public_html\\classes\\-", "read"; | ||
}; |