Class CASSPSessionSerializer
java.lang.Object
net.shibboleth.shared.component.AbstractInitializableComponent
net.shibboleth.idp.session.AbstractSPSessionSerializer
net.shibboleth.idp.cas.session.impl.CASSPSessionSerializer
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,StorageSerializer<SPSession>
JSON serializer for
CASSPSession class.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected SPSessiondoDeserialize(JsonObject obj, String id, Instant creation, Instant expiration) Implement this method to return the appropriate type of object, populated with the basic information supplied.protected voiddoSerializeAdditional(SPSession instance, JsonGenerator generator) Override this method to handle serialization of additional data.Methods inherited from class net.shibboleth.idp.session.AbstractSPSessionSerializer
deserialize, serializeMethods inherited from class net.shibboleth.shared.component.AbstractInitializableComponent
checkComponentActive, checkSetterPreconditions, destroy, doDestroy, doInitialize, ifDestroyedThrowDestroyedComponentException, ifInitializedThrowUnmodifiabledComponentException, ifNotInitializedThrowUninitializedComponentException, initialize, isDestroyed, isInitializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.shibboleth.shared.component.InitializableComponent
initialize, isInitialized
-
Field Details
-
TICKET_FIELD
Field name of CAS ticket.- See Also:
-
SERVICE_URL_FIELD
Field name of CAS service URL.- See Also:
-
-
Constructor Details
-
CASSPSessionSerializer
Constructor.- Parameters:
offset- time to subtract from record expiration to establish session expiration value
-
-
Method Details
-
doSerializeAdditional
Override this method to handle serialization of additional data.The serialization "context" is the continuation of a JSON struct.
- Overrides:
doSerializeAdditionalin classAbstractSPSessionSerializer- Parameters:
instance- object to serializegenerator- JSON generator to write to
-
doDeserialize
@Nonnull protected SPSession doDeserialize(@Nonnull JsonObject obj, @Nonnull @NotEmpty String id, @Nonnull Instant creation, @Nonnull Instant expiration) throws IOException Implement this method to return the appropriate type of object, populated with the basic information supplied.The JSON object supplied is a structure that may contain additional data created by the concrete subclass during serialization.
- Specified by:
doDeserializein classAbstractSPSessionSerializer- Parameters:
obj- JSON structure to parseid- the identifier of the service associated with this sessioncreation- creation time of sessionexpiration- expiration time of session- Returns:
- the newly constructed object
- Throws:
IOException- if an error occurs during deserialization
-