Class java.net.NetPermission
java.lang.Object
|
+----java.security.Permission
|
+----java.security.BasicPermission
|
+----java.net.NetPermission
- public final class NetPermission
- extends BasicPermission
This class is for various network permissions.
A NetPermission contains a name but
no actions list; you either have the named permission
or you don't.
The name is the name of the network permission ("Authenticator.setDefault",
"Authenticator.requestPasswordAuthentication", etc). The naming
convention follows the hierarchical property naming convention.
Also, an asterisk
may appear at the end of the name, following a ".", or by itself, to
signify a wildcard match. For example: "Authenticator.*" or "*" is valid,
"*foo" or "a*b" is not valid.
- See Also:
- BasicPermission, Permission, Permissions, PermissionCollection, SecurityManager
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NetPermission
public NetPermission(String name)
- Creates a new NetPermission with the specified name.
The name is the symbolic name of the NetPermission, such as
"Authenticator.setDefault", etc. An asterisk
may appear at the end of the name, following a ".", or by itself, to
signify a wildcard match.
- Parameters:
name
- the name of the NetPermission.
NetPermission
public NetPermission(String name,
String actions)
- Creates a new NetPermission object with the specified name.
The name is the symbolic name of the NetPermission, and the
actions String is currently unused and should be null. This
constructor exists for use by the
Policy
object
to instantiate new Permission objects.
- Parameters:
name
- the name of the NetPermission.
actions
- should be null.
Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.