com.sun.enterprise.security.jacc.provider
Class SimplePolicyConfiguration

java.lang.Object
  extended by com.sun.enterprise.security.jacc.provider.SimplePolicyConfiguration
All Implemented Interfaces:
PolicyConfiguration

public class SimplePolicyConfiguration
extends java.lang.Object
implements PolicyConfiguration

Author:
monzillo The methods of this interface are used by containers to create policy statements in a Policy provider. An object that implements the PolicyConfiguration interface provides the policy statement configuration interface for a corresponding policy context within the corresponding Policy provider.

Field Summary
static int DELETED_STATE
           
static int INSERVICE_STATE
           
static int OPEN_STATE
           
 
Constructor Summary
protected SimplePolicyConfiguration(java.lang.String contextID)
          Creates a new instance of SimplePolicyConfiguration
 
Method Summary
 void addToExcludedPolicy(java.security.Permission permission)
          Used to add a single excluded policy statement to this PolicyConfiguration.
 void addToExcludedPolicy(java.security.PermissionCollection permissions)
          Used to add excluded policy statements to this PolicyConfiguration.
 void addToRole(java.lang.String roleName, java.security.Permission permission)
          Used to add a single permission to a named role in this PolicyConfiguration.
 void addToRole(java.lang.String roleName, java.security.PermissionCollection permissions)
          Used to add permissions to a named role in this PolicyConfiguration.
 void addToUncheckedPolicy(java.security.Permission permission)
          Used to add a single unchecked policy statement to this PolicyConfiguration.
 void addToUncheckedPolicy(java.security.PermissionCollection permissions)
          Used to add unchecked policy statements to this PolicyConfiguration.
protected static void checkSetPolicyPermission()
           
 void commit()
          This method is used to set to "inService" the state of the policy context whose interface is this PolicyConfiguration Object.
 void delete()
          Causes all policy statements to be deleted from this PolicyConfiguration and sets its internal state such that calling any method, other than delete, getContextID, or inService on the PolicyConfiguration will be rejected and cause an UnsupportedOperationException to be thrown.
 java.lang.String getContextID()
          This method returns this object's policy context identifier.
static java.security.PermissionCollection getPermissions(java.security.PermissionCollection basePerms, java.security.CodeSource codesource)
          Evaluates the global policy and returns a PermissionCollection object specifying the set of permissions allowed for code from the specified code source.
static java.security.PermissionCollection getPermissions(java.security.PermissionCollection basePerms, java.security.ProtectionDomain domain)
          Evaluates the policy and returns a PermissionCollection object specifying the set of permissions allowed given the characteristics of the protection domain.
protected static SimplePolicyConfiguration getPolicyConfig(java.lang.String pcid, boolean remove)
           
static int implies(java.security.ProtectionDomain domain, java.security.Permission p)
          Evaluates the policy to determine whether the permissions is granted to the ProtectionDomain.
 boolean inService()
          This method is used to determine if the policy context whose interface is this PolicyConfiguration Object is in the "inService" state.
protected static boolean inService(java.lang.String pcid)
           
 void linkConfiguration(PolicyConfiguration link)
          Creates a relationship between this configuration and another such that they share the same principal-to-role mappings.
 void removeExcludedPolicy()
          Used to remove any excluded policy statements from this PolicyConfiguration.
 void removeRole(java.lang.String roleName)
          Used to remove a role and all its permissions from this PolicyConfiguration.
 void removeUncheckedPolicy()
          Used to remove any unchecked policy statements from this PolicyConfiguration.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

OPEN_STATE

public static final int OPEN_STATE
See Also:
Constant Field Values

INSERVICE_STATE

public static final int INSERVICE_STATE
See Also:
Constant Field Values

DELETED_STATE

public static final int DELETED_STATE
See Also:
Constant Field Values
Constructor Detail

SimplePolicyConfiguration

protected SimplePolicyConfiguration(java.lang.String contextID)
Creates a new instance of SimplePolicyConfiguration

Method Detail

getContextID

public java.lang.String getContextID()
                              throws PolicyContextException
This method returns this object's policy context identifier.

Specified by:
getContextID in interface PolicyConfiguration
Returns:
this object's policy context identifier.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the getContextID method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToRole

public void addToRole(java.lang.String roleName,
                      java.security.PermissionCollection permissions)
               throws PolicyContextException
Used to add permissions to a named role in this PolicyConfiguration. If the named Role does not exist in the PolicyConfiguration, it is created as a result of the call to this function.

It is the job of the Policy provider to ensure that all the permissions added to a role are granted to principals "mapped to the role".

Specified by:
addToRole in interface PolicyConfiguration
Parameters:
roleName - the name of the Role to which the permissions are to be added.

permissions - the collection of permissions to be added to the role. The collection may be either a homogenous or heterogenous collection.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToRole method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToRole

public void addToRole(java.lang.String roleName,
                      java.security.Permission permission)
               throws PolicyContextException
Used to add a single permission to a named role in this PolicyConfiguration. If the named Role does not exist in the PolicyConfiguration, it is created as a result of the call to this function.

It is the job of the Policy provider to ensure that all the permissions added to a role are granted to principals "mapped to the role".

Specified by:
addToRole in interface PolicyConfiguration
Parameters:
roleName - the name of the Role to which the permission is to be added.

permission - the permission to be added to the role.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToRole method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToUncheckedPolicy

public void addToUncheckedPolicy(java.security.PermissionCollection permissions)
                          throws PolicyContextException
Used to add unchecked policy statements to this PolicyConfiguration.

Specified by:
addToUncheckedPolicy in interface PolicyConfiguration
Parameters:
permissions - the collection of permissions to be added as unchecked policy statements. The collection may be either a homogenous or heterogenous collection.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToUncheckedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToUncheckedPolicy

public void addToUncheckedPolicy(java.security.Permission permission)
                          throws PolicyContextException
Used to add a single unchecked policy statement to this PolicyConfiguration.

Specified by:
addToUncheckedPolicy in interface PolicyConfiguration
Parameters:
permission - the permission to be added to the unchecked policy statements.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToUncheckedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToExcludedPolicy

public void addToExcludedPolicy(java.security.PermissionCollection permissions)
                         throws PolicyContextException
Used to add excluded policy statements to this PolicyConfiguration.

Specified by:
addToExcludedPolicy in interface PolicyConfiguration
Parameters:
permissions - the collection of permissions to be added to the excluded policy statements. The collection may be either a homogenous or heterogenous collection.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToExcludedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

addToExcludedPolicy

public void addToExcludedPolicy(java.security.Permission permission)
                         throws PolicyContextException
Used to add a single excluded policy statement to this PolicyConfiguration.

Specified by:
addToExcludedPolicy in interface PolicyConfiguration
Parameters:
permission - the permission to be added to the excluded policy statements.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the addToExcludedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

removeRole

public void removeRole(java.lang.String roleName)
                throws PolicyContextException
Used to remove a role and all its permissions from this PolicyConfiguration.

Specified by:
removeRole in interface PolicyConfiguration
Parameters:
roleName - the name of the Role to remove from this PolicyConfiguration.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the removeRole method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

removeUncheckedPolicy

public void removeUncheckedPolicy()
                           throws PolicyContextException
Used to remove any unchecked policy statements from this PolicyConfiguration.

Specified by:
removeUncheckedPolicy in interface PolicyConfiguration
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the removeUncheckedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

removeExcludedPolicy

public void removeExcludedPolicy()
                          throws PolicyContextException
Used to remove any excluded policy statements from this PolicyConfiguration.

Specified by:
removeExcludedPolicy in interface PolicyConfiguration
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the removeExcludedPolicy method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

linkConfiguration

public void linkConfiguration(PolicyConfiguration link)
                       throws PolicyContextException
Creates a relationship between this configuration and another such that they share the same principal-to-role mappings. PolicyConfigurations are linked to apply a common principal-to-role mapping to multiple seperately manageable PolicyConfigurations, as is required when an application is composed of multiple modules.

Note that the policy statements which comprise a role, or comprise the excluded or unchecked policy collections in a PolicyConfiguration are unaffected by the configuration being linked to another.

Specified by:
linkConfiguration in interface PolicyConfiguration
Parameters:
link - a reference to a different PolicyConfiguration than this PolicyConfiguration.

The relationship formed by this method is symetric, transitive and idempotent. If the argument PolicyConfiguration does not have a different Policy context identifier than this PolicyConfiguration no relationship is formed, and an exception, as described below, is thrown.

Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" or "inService" when this method is called.
java.lang.IllegalArgumentException - if called with an argument PolicyConfiguration whose Policy context is equivalent to that of this PolicyConfiguration.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the linkConfiguration method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

delete

public void delete()
            throws PolicyContextException
Causes all policy statements to be deleted from this PolicyConfiguration and sets its internal state such that calling any method, other than delete, getContextID, or inService on the PolicyConfiguration will be rejected and cause an UnsupportedOperationException to be thrown.

This operation has no affect on any linked PolicyConfigurations other than removing any links involving the deleted PolicyConfiguration.

Specified by:
delete in interface PolicyConfiguration
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the delete method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

commit

public void commit()
            throws PolicyContextException
This method is used to set to "inService" the state of the policy context whose interface is this PolicyConfiguration Object. Only those policy contexts whose state is "inService" will be included in the policy contexts processed by the Policy.refresh method. A policy context whose state is "inService" may be returned to the "owpen" state by calling the getPolicyConfiguration method of the PolicyConfiguration factory with the policy context identifier of the policy context.

When the state of a policy context is "inService", calling any method other than commit, delete, getContextID, or inService on its PolicyConfiguration Object will cause an UnsupportedOperationException to be thrown.

Specified by:
commit in interface PolicyConfiguration
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
java.lang.UnsupportedOperationException - if the state of the policy context whose interface is this PolicyConfiguration Object is "deleted" when this method is called.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the commit method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

inService

public boolean inService()
                  throws PolicyContextException
This method is used to determine if the policy context whose interface is this PolicyConfiguration Object is in the "inService" state.

Specified by:
inService in interface PolicyConfiguration
Returns:
true if the state of the associated policy context is "inService"; false otherwise.
Throws:
java.lang.SecurityException - if called by an AccessControlContext that has not been granted the "setPolicy" SecurityPermission.
PolicyContextException - if the implementation throws a checked exception that has not been accounted for by the inService method signature. The exception thrown by the implementation class will be encapsulated (during construction) in the thrown PolicyContextException.

getPolicyConfig

protected static SimplePolicyConfiguration getPolicyConfig(java.lang.String pcid,
                                                           boolean remove)
                                                    throws PolicyContextException
Throws:
PolicyContextException

inService

protected static boolean inService(java.lang.String pcid)
                            throws PolicyContextException
Throws:
PolicyContextException

checkSetPolicyPermission

protected static void checkSetPolicyPermission()

getPermissions

public static java.security.PermissionCollection getPermissions(java.security.PermissionCollection basePerms,
                                                                java.security.CodeSource codesource)
                                                         throws PolicyContextException
Evaluates the global policy and returns a PermissionCollection object specifying the set of permissions allowed for code from the specified code source.

Parameters:
codeSource - the CodeSource associated with the caller. This encapsulates the original location of the code (where the code came from) and the public key(s) of its signer.
Returns:
the set of permissions allowed for code from codesource according to the policy.The returned set of permissions must be a new mutable instance and it must support heterogeneous Permission types.
Throws:
PolicyContextException

getPermissions

public static java.security.PermissionCollection getPermissions(java.security.PermissionCollection basePerms,
                                                                java.security.ProtectionDomain domain)
                                                         throws PolicyContextException
Evaluates the policy and returns a PermissionCollection object specifying the set of permissions allowed given the characteristics of the protection domain.

Parameters:
domain - the ProtectionDomain associated with the caller.
Returns:
the set of permissions allowed for the domain according to the policy.The returned set of permissions must be a new mutable instance and it must support heterogeneous Permission types.
Throws:
PolicyContextException
Since:
1.4
See Also:
ProtectionDomain, SecureClassLoader

implies

public static int implies(java.security.ProtectionDomain domain,
                          java.security.Permission p)
                   throws PolicyContextException
Evaluates the policy to determine whether the permissions is granted to the ProtectionDomain.

Parameters:
domain - the ProtectionDomain to test
permission - the Permission object to be tested for implication.
Returns:
integer -1 if excluded, 0 if not implied, 1 if implied granted to this ProtectionDomain.
Throws:
PolicyContextException


Copyright © 2012 GlassFish Community. All Rights Reserved.