May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.security.auth.Policy
This class provides the interface to the JAAS policy. The default policy is implemented by the class specified as the auth.policy.provider property in the java.security file. You can write a new implementation of this class and install it by setting that property or by calling the setPolicy( ) method of this class.
public abstract class javax.security.auth.Policy
extends java.lang.Object {
// Constructors
protected Policy( );
// Class Methods
public static Policy getPolicy( );
public static void setPolicy(Policy);
// Instance Methods
public abstract PermissionCollection getPermissions(
Subject, CodeSource);
public abstract void refresh( );
}Read now
Unlock full access