org.ota.misc
Enum AuthorizationRS.Authorization.AuthorizationResult.CVCResult

java.lang.Object
  extended by java.lang.Enum<AuthorizationRS.Authorization.AuthorizationResult.CVCResult>
      extended by org.ota.misc.AuthorizationRS.Authorization.AuthorizationResult.CVCResult
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AuthorizationRS.Authorization.AuthorizationResult.CVCResult>
Enclosing class:
AuthorizationRS.Authorization.AuthorizationResult

public static enum AuthorizationRS.Authorization.AuthorizationResult.CVCResult
extends java.lang.Enum<AuthorizationRS.Authorization.AuthorizationResult.CVCResult>

Schema fragment(s) for this class:

 <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:restriction base="xs:string">
     <xs:enumeration value="Match"/>
     <xs:enumeration value="DoesNotMatch"/>
     <xs:enumeration value="NotProcessed"/>
     <xs:enumeration value="Required"/>
     <xs:enumeration value="IssuerNotCertified"/>
   </xs:restriction>
 </xs:simpleType>
 


Enum Constant Summary
DOES_NOT_MATCH
          The CV code entered does not match what is in the customer file.
ISSUER_NOT_CERTIFIED
          The issuer is not authorized to use this CV code.
MATCH
          The CV code entered matches what is in the customer file.
NOT_PROCESSED
          The CV code could not be processed.
REQUIRED
          The CV code was not provided but is required.
 
Method Summary
static AuthorizationRS.Authorization.AuthorizationResult.CVCResult convert(java.lang.String value)
           
 java.lang.String toString()
           
static AuthorizationRS.Authorization.AuthorizationResult.CVCResult valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AuthorizationRS.Authorization.AuthorizationResult.CVCResult[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MATCH

public static final AuthorizationRS.Authorization.AuthorizationResult.CVCResult MATCH
The CV code entered matches what is in the customer file.


DOES_NOT_MATCH

public static final AuthorizationRS.Authorization.AuthorizationResult.CVCResult DOES_NOT_MATCH
The CV code entered does not match what is in the customer file.


NOT_PROCESSED

public static final AuthorizationRS.Authorization.AuthorizationResult.CVCResult NOT_PROCESSED
The CV code could not be processed.


REQUIRED

public static final AuthorizationRS.Authorization.AuthorizationResult.CVCResult REQUIRED
The CV code was not provided but is required.


ISSUER_NOT_CERTIFIED

public static final AuthorizationRS.Authorization.AuthorizationResult.CVCResult ISSUER_NOT_CERTIFIED
The issuer is not authorized to use this CV code.

Method Detail

values

public static AuthorizationRS.Authorization.AuthorizationResult.CVCResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AuthorizationRS.Authorization.AuthorizationResult.CVCResult c : AuthorizationRS.Authorization.AuthorizationResult.CVCResult.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AuthorizationRS.Authorization.AuthorizationResult.CVCResult valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<AuthorizationRS.Authorization.AuthorizationResult.CVCResult>

convert

public static AuthorizationRS.Authorization.AuthorizationResult.CVCResult convert(java.lang.String value)