| java.security.BasicPermission java.net.NetPermission
NetPermission | final public class NetPermission extends java.security.BasicPermission (Code) | | This class represents permission to access network resources.
There are three valid target names:
- setDefaultAuthenticator
- Allows the default authenticator to be set.
- requestPasswordAuthentication
- Allows the default authenticator to be retrieved.
- specifyStreamHandler
- Allows a stream (protocol) handler to be set when constructing an URL
object
See Also: java.security.BasicPermission See Also: SecurityManager |
Constructor Summary | |
public | NetPermission(String name) Creates an instance of this class with the given name. | public | NetPermission(String name, String actions) Creates an instance of this class with the given name and action list. |
NetPermission | public NetPermission(String name)(Code) | | Creates an instance of this class with the given name.
Parameters: name - String the name of the new permission. |
NetPermission | public NetPermission(String name, String actions)(Code) | | Creates an instance of this class with the given name and action list.
The action list is ignored.
Parameters: name - String the name of the new permission. Parameters: actions - String ignored. |
|
|