Protocols
The following protocols are available globally.
-
A protocol representing a Single Sign-On (SSO) token with session information.
SSOTokenextends theSessionprotocol to provide additional authentication context including the success URL and realm. Types conforming to this protocol can be used throughout the Journey framework for session management and storage.Conforming types must be both
Codable(for serialization/deserialization) and inherit fromSession(providing the session value).See also
SSOTokenImplfor the concrete implementationSee moreSee also
SessionConfigfor configuring SSO token storageDeclaration
Swift
public protocol SSOToken : Session, Decodable, Encodable
View on GitHub
Protocols Reference