com.aol.acc
Enum AccServiceTicketProp

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

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

An IAccServiceTicket is obtained from IAccSession::RequestServiceTicket.


Enum Constant Summary
Authenticator
          Generated every time you read this property
AuthenticatorBase64
          Generated every time you read this property
AuthenticatorStream
          Generated every time you read this property
Identity
          The screenname or other identity associated with the ticket
ServerRealm
          It's a kerberos thing
Service
          The name of the service that this ticket is for
Ticket
          The actual ticket data as an array of VT_UI1
TicketBase64
          The actual ticket data as a base-64-encoded string
TicketStream
          The actual ticket data as a stream
UNKNOWNVALUE
           
UrlEncodedString
          A string formatted for use by "mcAuth"
Version
          By version, we mean what type of ticket
 
Method Summary
 boolean equals(int i)
           
static AccServiceTicketProp intToEnum(int value)
           
 AccServiceTicketProp or(AccServiceTicketProp val)
           
 int value()
           
static AccServiceTicketProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccServiceTicketProp[] 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 AccServiceTicketProp UNKNOWNVALUE

Identity

public static final AccServiceTicketProp Identity
The screenname or other identity associated with the ticket


Service

public static final AccServiceTicketProp Service
The name of the service that this ticket is for


ServerRealm

public static final AccServiceTicketProp ServerRealm
It's a kerberos thing


Version

public static final AccServiceTicketProp Version
By version, we mean what type of ticket


UrlEncodedString

public static final AccServiceTicketProp UrlEncodedString
A string formatted for use by "mcAuth"


Ticket

public static final AccServiceTicketProp Ticket
The actual ticket data as an array of VT_UI1


TicketStream

public static final AccServiceTicketProp TicketStream
The actual ticket data as a stream


TicketBase64

public static final AccServiceTicketProp TicketBase64
The actual ticket data as a base-64-encoded string


Authenticator

public static final AccServiceTicketProp Authenticator
Generated every time you read this property


AuthenticatorStream

public static final AccServiceTicketProp AuthenticatorStream
Generated every time you read this property


AuthenticatorBase64

public static final AccServiceTicketProp AuthenticatorBase64
Generated every time you read this property

Method Detail

values

public static final AccServiceTicketProp[] 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(AccServiceTicketProp c : AccServiceTicketProp.values())
        System.out.println(c);

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

valueOf

public static AccServiceTicketProp 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 AccServiceTicketProp or(AccServiceTicketProp val)

intToEnum

public static AccServiceTicketProp intToEnum(int value)