org.bitbucket.fermenter.stout.authz.PolicyDecision Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stout-authzforce Show documentation
Show all versions of stout-authzforce Show documentation
Provides base functionality and patterns for utilizing Authzforce to provide core
authorization needs.
package org.bitbucket.fermenter.stout.authz;
/**
* A library-egnostic view of possible policy decision values. These values map directly to the XACML 3.0 standard.
*/
public enum PolicyDecision {
PERMIT,
DENY,
NOT_APPLICABLE,
INDETERMINATE;
}