com.aol.acc
Enum AccCertificateProp

java.lang.Object
  extended by java.lang.Enum<AccCertificateProp>
      extended by com.aol.acc.AccCertificateProp
All Implemented Interfaces:
AccEnum, java.io.Serializable, java.lang.Comparable<AccCertificateProp>

public enum AccCertificateProp
extends java.lang.Enum<AccCertificateProp>
implements AccEnum

The IAccCertificate interface is used to wrap X.509 certificate objects.


Enum Constant Summary
ExpireTime
          The time the certificate expires
IssuerCommonName
          The issuer name
IssuerDomainComponent
          The issuer domain component
IssuerOrg
          The issuer organization
IssuerOrgUnit
          The issuer organizational unit
IssueTime
          The time the certificate was issued
Name
          The friendly name for the certificate
SerialNumber
          The serial number of the certificate
SubjectCommonName
          The subject name for the certificate (CN)
SubjectDomainComponent
          The domain component for the certificate (DC)
SubjectEmailAddress
          The email address for the certificate
SubjectOrg
          The organization name for the certificate (O)
SubjectOrgUnit
          The organizational unit for the certificate (OU)
Trusted
          The categories in which this certificate has been trusted; values are from AccCertificateTrustFlags
UNKNOWNVALUE
           
Usage
          The certificate usage type; values are from AccCertificateUsage.
 
Method Summary
 boolean equals(int i)
           
static AccCertificateProp intToEnum(int value)
           
 AccCertificateProp or(AccCertificateProp val)
           
 int value()
           
static AccCertificateProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccCertificateProp[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWNVALUE

public static final AccCertificateProp UNKNOWNVALUE

Name

public static final AccCertificateProp Name
The friendly name for the certificate


SerialNumber

public static final AccCertificateProp SerialNumber
The serial number of the certificate


IssueTime

public static final AccCertificateProp IssueTime
The time the certificate was issued


ExpireTime

public static final AccCertificateProp ExpireTime
The time the certificate expires


Usage

public static final AccCertificateProp Usage
The certificate usage type; values are from AccCertificateUsage.


SubjectCommonName

public static final AccCertificateProp SubjectCommonName
The subject name for the certificate (CN)


SubjectOrg

public static final AccCertificateProp SubjectOrg
The organization name for the certificate (O)


SubjectOrgUnit

public static final AccCertificateProp SubjectOrgUnit
The organizational unit for the certificate (OU)


SubjectDomainComponent

public static final AccCertificateProp SubjectDomainComponent
The domain component for the certificate (DC)


SubjectEmailAddress

public static final AccCertificateProp SubjectEmailAddress
The email address for the certificate


IssuerCommonName

public static final AccCertificateProp IssuerCommonName
The issuer name


IssuerOrg

public static final AccCertificateProp IssuerOrg
The issuer organization


IssuerOrgUnit

public static final AccCertificateProp IssuerOrgUnit
The issuer organizational unit


IssuerDomainComponent

public static final AccCertificateProp IssuerDomainComponent
The issuer domain component


Trusted

public static final AccCertificateProp Trusted
The categories in which this certificate has been trusted; values are from AccCertificateTrustFlags

Method Detail

values

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

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

valueOf

public static AccCertificateProp 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

value

public final int value()
Specified by:
value in interface AccEnum

equals

public final boolean equals(int i)

or

public final AccCertificateProp or(AccCertificateProp val)

intToEnum

public static AccCertificateProp intToEnum(int value)