Class sun.server.http.ServerSecurity
All Packages Class Hierarchy This Package Previous Next Index
Class sun.server.http.ServerSecurity
java.lang.Object
|
+----java.lang.SecurityManager
|
+----sun.server.http.ServerSecurity
- public class ServerSecurity
- extends SecurityManager
An abstract class that can be subclassed
to implement a server security policy. This class
adds server-specific methods to the Java security
manager. The methods in this class should be overridden by
the security manager for a particular server, eg the ServletSecurity manager
used by the http server.
- See Also:
- SecurityManager, ServletSecurity
-
ServerSecurity()
-
-
checkACLaccess(Principal, Acl, String)
- Check if the principal is allowed to access the ACL
ServerSecurity
public ServerSecurity()
checkACLaccess
public void checkACLaccess(Principal principal,
Acl acl,
String access)
- Check if the principal is allowed to access the ACL
- Parameters:
- principal - the person, servlet or Java object that wants
to access the ACL
- acl - the AclEntry that the principal wants to access
- access - the type of access desired: set, get, delete
All Packages Class Hierarchy This Package Previous Next Index