Package org.mapfish.print.config.access
Class AndAccessAssertion
java.lang.Object
org.mapfish.print.config.access.AndAccessAssertion
- All Implemented Interfaces:
AccessAssertion
,ConfigurationObject
An access assertion that throws fails if any of the encapsulated assertions fail.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
assertAccess
(String resourceDescription, Object protectedResource) Checks that the user can access the resource.copy()
Deep copy of this access assertion.boolean
int
hashCode()
org.json.JSONObject
marshal()
Encode the assertion as JSON for later loading.void
setPredicates
(AccessAssertion... predicates) Set all the Predicates/AccessAssertion that have to all pass in order for this assertion to pass.void
unmarshal
(org.json.JSONObject encodedAssertion) Load the assertion properties from the JSON data.void
validate
(List<Throwable> validationErrors, Configuration configuration) validate that the configuration was correct.
-
Constructor Details
-
AndAccessAssertion
public AndAccessAssertion()
-
-
Method Details
-
setPredicates
Set all the Predicates/AccessAssertion that have to all pass in order for this assertion to pass.An exception is thrown if this method is called more than once.
- Parameters:
predicates
- the Predicates/AccessAssertion
-
assertAccess
Description copied from interface:AccessAssertion
Checks that the user can access the resource.Will throw
AuthenticationCredentialsNotFoundException
if the user has not logged in or supplied credentials.Will throw
AccessDeniedException
if the user is logged in but may not access the resource.- Specified by:
assertAccess
in interfaceAccessAssertion
- Parameters:
resourceDescription
- a string describing the resource for logging and exception throwing purposesprotectedResource
- the resource being protected.
-
marshal
public org.json.JSONObject marshal()Description copied from interface:AccessAssertion
Encode the assertion as JSON for later loading. Each call should return a unique JSON object.- Specified by:
marshal
in interfaceAccessAssertion
-
unmarshal
public void unmarshal(org.json.JSONObject encodedAssertion) Description copied from interface:AccessAssertion
Load the assertion properties from the JSON data.- Specified by:
unmarshal
in interfaceAccessAssertion
- Parameters:
encodedAssertion
- the assertion encoded as JSON.
-
validate
Description copied from interface:ConfigurationObject
validate that the configuration was correct.- Specified by:
validate
in interfaceConfigurationObject
- Parameters:
validationErrors
- a list to add any detected errors to.configuration
- the containing configuration
-
equals
-
hashCode
public int hashCode() -
copy
Description copied from interface:AccessAssertion
Deep copy of this access assertion.- Specified by:
copy
in interfaceAccessAssertion
- Returns:
- the copy
-