Serialized Form


Package org.jasig.cas.authentication

Class org.jasig.cas.authentication.AbstractAuthentication extends Object implements Serializable

Serialized Fields

principal

Principal principal
A Principal object representing the authenticated entity.


attributes

Map<K,V> attributes
Associated authentication attributes.

Class org.jasig.cas.authentication.ImmutableAuthentication extends AbstractAuthentication implements Serializable

serialVersionUID: 3906647483978365235L

Serialized Fields

authenticatedDate

Date authenticatedDate
The date/time this authentication object became valid.

Class org.jasig.cas.authentication.MutableAuthentication extends AbstractAuthentication implements Serializable

serialVersionUID: -4415875344376642246L

Serialized Fields

authenticatedDate

Date authenticatedDate
The date/time this authentication object became valid.


Package org.jasig.cas.authentication.handler

Class org.jasig.cas.authentication.handler.AuthenticationException extends Exception implements Serializable

serialVersionUID: 3906648604830611762L

Serialized Fields

code

String code
The code to return for resolving to a message description.


type

String type
The error type that provides additional info about the nature of the exception cause

Class org.jasig.cas.authentication.handler.BadCredentialsAuthenticationException extends AuthenticationException implements Serializable

serialVersionUID: 3256719585087797044L

Class org.jasig.cas.authentication.handler.BadPasswordAuthenticationException extends BadUsernameOrPasswordAuthenticationException implements Serializable

serialVersionUID: 3977861752513837361L

Class org.jasig.cas.authentication.handler.BadUsernameOrPasswordAuthenticationException extends BadCredentialsAuthenticationException implements Serializable

serialVersionUID: 3977861752513837361L

Class org.jasig.cas.authentication.handler.BlockedCredentialsAuthenticationException extends AuthenticationException implements Serializable

serialVersionUID: 3544669598642420017L

Class org.jasig.cas.authentication.handler.UncategorizedAuthenticationException extends AuthenticationException implements Serializable

Class org.jasig.cas.authentication.handler.UnknownUsernameAuthenticationException extends BadUsernameOrPasswordAuthenticationException implements Serializable

serialVersionUID: 3977861752513837361L

Class org.jasig.cas.authentication.handler.UnsupportedCredentialsException extends AuthenticationException implements Serializable

serialVersionUID: 3977861752513837361L


Package org.jasig.cas.authentication.principal

Class org.jasig.cas.authentication.principal.AbstractWebApplicationService extends Object implements Serializable

Serialized Fields

id

String id
The id of the service.


originalUrl

String originalUrl
The original url provided, used to reconstruct the redirect url.


artifactId

String artifactId

principal

Principal principal

loggedOutAlready

boolean loggedOutAlready

httpClient

HttpClient httpClient

Class org.jasig.cas.authentication.principal.GoogleAccountsService extends AbstractWebApplicationService implements Serializable

serialVersionUID: 6678711809842282833L

Serialized Fields

relayState

String relayState

publicKey

PublicKey publicKey

privateKey

PrivateKey privateKey

requestId

String requestId

alternateUserName

String alternateUserName

Class org.jasig.cas.authentication.principal.HttpBasedServiceCredentials extends Object implements Serializable

serialVersionUID: 3904681574350991665L

Serialized Fields

callbackUrl

URL callbackUrl
The callbackURL to check that identifies the application.


callbackUrlAsString

String callbackUrlAsString
String form of callbackUrl;

Class org.jasig.cas.authentication.principal.RememberMeUsernamePasswordCredentials extends UsernamePasswordCredentials implements Serializable

serialVersionUID: -9178853167397038282L

Serialized Fields

rememberMe

boolean rememberMe

Class org.jasig.cas.authentication.principal.SamlService extends AbstractWebApplicationService implements Serializable

serialVersionUID: -6867572626767140223L

Serialized Fields

requestId

String requestId

Class org.jasig.cas.authentication.principal.SimplePrincipal extends Object implements Serializable

serialVersionUID: -5265620187476296219L

Serialized Fields

id

String id
The unique identifier for the principal.


attributes

Map<K,V> attributes
Map of attributes for the Principal.

Class org.jasig.cas.authentication.principal.SimpleWebApplicationServiceImpl extends AbstractWebApplicationService implements Serializable

serialVersionUID: 8334068957483758042L

Serialized Fields

responseType

Response.ResponseType responseType

Class org.jasig.cas.authentication.principal.UsernamePasswordCredentials extends Object implements Serializable

serialVersionUID: -8343864967200862794L

Serialized Fields

username

String username
The username.


password

String password
The password.


Package org.jasig.cas.services

Class org.jasig.cas.services.AbstractRegisteredService extends Object implements Serializable

serialVersionUID: 7645279151115635245L

Serialized Fields

id

long id

allowedAttributes

List<E> allowedAttributes

description

String description

serviceId

String serviceId

name

String name

theme

String theme

allowedToProxy

boolean allowedToProxy

enabled

boolean enabled

ssoEnabled

boolean ssoEnabled

anonymousAccess

boolean anonymousAccess

ignoreAttributes

boolean ignoreAttributes

evaluationOrder

int evaluationOrder

Class org.jasig.cas.services.RegexRegisteredService extends AbstractRegisteredService implements Serializable

serialVersionUID: -8258660210826975771L

Class org.jasig.cas.services.RegisteredServiceImpl extends AbstractRegisteredService implements Serializable

serialVersionUID: -5906102762271197627L

Class org.jasig.cas.services.UnauthorizedProxyingException extends UnauthorizedServiceException implements Serializable

serialVersionUID: -7307803750894078575L

Class org.jasig.cas.services.UnauthorizedServiceException extends RuntimeException implements Serializable

serialVersionUID: 3905807495715960369L

Class org.jasig.cas.services.UnauthorizedSsoServiceException extends UnauthorizedServiceException implements Serializable

serialVersionUID: 8909291297815558561L


Package org.jasig.cas.ticket

Class org.jasig.cas.ticket.AbstractTicket extends Object implements Serializable

Serialized Fields

expirationPolicy

ExpirationPolicy expirationPolicy
The ExpirationPolicy this ticket will be following.


id

String id
The unique identifier for this ticket.


ticketGrantingTicket

TicketGrantingTicketImpl ticketGrantingTicket
The TicketGrantingTicket this is associated with.


lastTimeUsed

long lastTimeUsed
The last time this ticket was used.


previousLastTimeUsed

long previousLastTimeUsed
The previous last time this ticket was used.


creationTime

long creationTime
The time the ticket was created.


countOfUses

int countOfUses
The number of times this was used.

Class org.jasig.cas.ticket.InvalidTicketException extends TicketException implements Serializable

serialVersionUID: 3256723974594508849L

Class org.jasig.cas.ticket.ServiceTicketImpl extends AbstractTicket implements Serializable

serialVersionUID: -4223319704861765405L

Serialized Fields

service

Service service
The service this ticket is valid for.


fromNewLogin

boolean fromNewLogin
Is this service ticket the result of a new login.


grantedTicketAlready

Boolean grantedTicketAlready

Class org.jasig.cas.ticket.TicketCreationException extends TicketException implements Serializable

serialVersionUID: 5501212207531289993L

Class org.jasig.cas.ticket.TicketException extends Exception implements Serializable

serialVersionUID: -6000583436059919480L

Serialized Fields

code

String code
The code description of the TicketException.

Class org.jasig.cas.ticket.TicketGrantingTicketImpl extends AbstractTicket implements Serializable

serialVersionUID: -5197946718924166491L

Serialized Fields

authentication

Authentication authentication
The authenticated object for which this ticket was generated for.


expired

Boolean expired
Flag to enforce manual expiration.


services

HashMap<K,V> services

Class org.jasig.cas.ticket.TicketValidationException extends TicketException implements Serializable

serialVersionUID: 3257004341537093175L

Serialized Fields

service

Service service

Package org.jasig.cas.ticket.support

Class org.jasig.cas.ticket.support.HardTimeoutExpirationPolicy extends Object implements Serializable

serialVersionUID: -1465997330804816888L

Serialized Fields

timeToKillInMilliSeconds

long timeToKillInMilliSeconds
The time to kill in milliseconds.

Class org.jasig.cas.ticket.support.MultiTimeUseOrTimeoutExpirationPolicy extends Object implements Serializable

serialVersionUID: 3257844372614558261L

Serialized Fields

timeToKillInMilliSeconds

long timeToKillInMilliSeconds
The time to kill in millseconds.


numberOfUses

int numberOfUses
The maximum number of uses before expiration.

Class org.jasig.cas.ticket.support.NeverExpiresExpirationPolicy extends Object implements Serializable

serialVersionUID: 3833747698242303540L

Class org.jasig.cas.ticket.support.RememberMeDelegatingExpirationPolicy extends Object implements Serializable

serialVersionUID: -575145836880428365L

Serialized Fields

rememberMeExpirationPolicy

ExpirationPolicy rememberMeExpirationPolicy

sessionExpirationPolicy

ExpirationPolicy sessionExpirationPolicy

Class org.jasig.cas.ticket.support.ThrottledUseAndTimeoutExpirationPolicy extends Object implements Serializable

serialVersionUID: -848036845536731268L

Serialized Fields

timeToKillInMilliSeconds

long timeToKillInMilliSeconds
The time to kill in milliseconds.


timeInBetweenUsesInMilliSeconds

long timeInBetweenUsesInMilliSeconds
Time time between which a ticket must wait to be used again.

Class org.jasig.cas.ticket.support.TicketGrantingTicketExpirationPolicy extends Object implements Serializable

serialVersionUID: 2136490343650084287L

Serialized Fields

maxTimeToLiveInMilliSeconds

long maxTimeToLiveInMilliSeconds
Maximum time this ticket is valid


timeToKillInMilliSeconds

long timeToKillInMilliSeconds
Time to kill in milliseconds.

Class org.jasig.cas.ticket.support.TimeoutExpirationPolicy extends Object implements Serializable

serialVersionUID: 3545511790222979383L

Serialized Fields

timeToKillInMilliSeconds

long timeToKillInMilliSeconds
The time to kill in milliseconds.


Package org.jasig.cas.util

Class org.jasig.cas.util.HttpClient extends Object implements Serializable

serialVersionUID: -5306738686476129516L

Serialized Fields

acceptableCodes

int[] acceptableCodes
List of HTTP status codes considered valid by this AuthenticationHandler.


connectionTimeout

int connectionTimeout

readTimeout

int readTimeout

Package org.jasig.cas.validation

Class org.jasig.cas.validation.ImmutableAssertionImpl extends Object implements Serializable

serialVersionUID: -1921502350732798866L

Serialized Fields

principals

List<E> principals
The list of principals.


fromNewLogin

boolean fromNewLogin
Was this the result of a new login.


service

Service service
The service we are asserting this ticket for.


Package org.jasig.cas.web.init

Class org.jasig.cas.web.init.SafeDispatcherServlet extends javax.servlet.http.HttpServlet implements Serializable

serialVersionUID: 1L

Serialized Fields

delegate

org.springframework.web.servlet.DispatcherServlet delegate
The actual DispatcherServlet to which we will delegate to.


initSuccess

boolean initSuccess
Boolean to determine if the application deployed successfully.



Copyright © 2004-2012 Jasig. All Rights Reserved.