com.sun.identity.saml.assertion
Class AuthorizationDecisionStatement.DecisionType

java.lang.Object
  |
  +--com.sun.identity.saml.assertion.AuthorizationDecisionStatement.DecisionType
Enclosing class:
AuthorizationDecisionStatement

public static class AuthorizationDecisionStatement.DecisionType
extends java.lang.Object

The DecisionType is an inner class defining constants for the type of Decisions than can be conveyed by an AuthorizationDecisionStatement .
1 implies PERMIT
2 implies DENY
3 implies INDETERMINATE
4 implies NOT_SUPPORTED


Field Summary
static int DENY
          The specified action is denied.
static int INDETERMINATE
          The issuer cannot determine whether the specified action is permitted or denied.
static int NOT_SUPPORTED
          The specified action is not supported.
static int PERMIT
          The specified action is permitted.
 
Constructor Summary
AuthorizationDecisionStatement.DecisionType()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PERMIT

public static final int PERMIT
The specified action is permitted.

DENY

public static final int DENY
The specified action is denied.

INDETERMINATE

public static final int INDETERMINATE
The issuer cannot determine whether the specified action is permitted or denied.

NOT_SUPPORTED

public static final int NOT_SUPPORTED
The specified action is not supported.
Constructor Detail

AuthorizationDecisionStatement.DecisionType

public AuthorizationDecisionStatement.DecisionType()