Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%OAuth2] >  [Server] >  [CookieSession]
Private  Storage   

abstract persistent class %OAuth2.Server.CookieSession extends %Persistent, %OAuth2.Server.AbstractSession

This class implements a simple OAuth2 session maintenance class where the user's session is tracked by an opaque cookie. This is a persistent class containing basic session data indexed by the cookie value.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
1 5 12 3


Summary

Properties
AuthTime Cookie Expires Scope Username

Methods
%AddToSaveSet %AddToSyncSet %BuildDeferredIndices %BuildIndices
%BuildIndicesAsync %BuildIndicesAsyncResponse %CheckConstraints %CheckConstraintsForExtent
%ClassIsLatestVersion %ClassName %ComposeOid %ConstructClone
%Delete %DeleteExtent %DeleteId %DispatchClassMethod
%DispatchGetModified %DispatchGetProperty %DispatchMethod %DispatchSetModified
%DispatchSetMultidimProperty %DispatchSetProperty %Exists %ExistsId
%Extends %GUID %GUIDSet %GetLock
%GetParameter %GetSwizzleObject %Id %IsA
%IsModified %IsNull %KillExtent %LockExtent
%LockId %New %NormalizeObject %ObjectIsNull
%ObjectModified %Oid %OnBeforeAddToSync %OnDeleteFinally
%OnDetermineClass %OnOpenFinally %OnSaveFinally %Open
%OpenId %OriginalNamespace %PackageName %PurgeIndices
%Reload %RemoveFromSaveSet %ResolveConcurrencyConflict %RollBack
%Save %SaveDirect %SerializeObject %SetModified
%SortBegin %SortEnd %SyncObjectIn %SyncTransport
%UnlockExtent %UnlockId %ValidateObject DeleteAll
GetCookie GetUser Login Logout
MakeCookieValue SetCookie Update UpdateTokenGroup


Parameters

• parameter COOKIENAME;
The name of the cookie used to maintain the session

Properties

• property AuthTime as %Integer;
The time when the user was authenticated
• property Cookie as %String(COLLATION="EXACT",MAXLEN=128) [ Required ];
Opaque Cookie value used to track the user's session
• property Expires as %Integer;
Expires is the time in seconds from beginning of the Unix epoch when the session expires. If Expires="", then session does not expire.
• property Scope as %String(MAXLEN="");
Scope is the blank separated list of scopes permitted for this user in this session.
• property Username as %Library.Username(COLLATION="EXACT");
The User name associated with this session

Methods

• classmethod DeleteAll() as %Status
Delete all sessions.
• classmethod GetCookie() as %String
This method will retrieve the cookie value for the current session, if one exists.
• classmethod GetUser(Output scope As %String, Output authTime As %Integer, Output sc As %Status, authCode As %String = "") as %String
Return the username (and granted scopes, and authentication time) for the current session, or "" if there is no current session.
• classmethod Login(username As %String, scope As %String, interval As %Integer, Output authTime As %Integer, authCode As %String = "") as %Status
Create a new session for the given user. This creates a new session Object and sets a new cookie in the User Agent referencing this session.
• classmethod Logout() as %Status
Terminate the current session. This will delete the session object and all cookies associated with it and expire the cookie. Absence of a session is not seen as an error and this method will still return 1 (though it won't actually do anything if no session exists).
• classmethod MakeCookieValue() as %String
This method is used to produce the cookie value for a new session.
• classmethod SetCookie(value As %String, expires As %Integer)
This method will set the given cookie value in the User Agent, with the given expiration time.
• classmethod Update(scope As %String, interval As %Integer) as %Status
Update the current session with the given scope values and timeout interval. This does nothing if there is no current session.

Indices

•index (CookieIndex on Cookie) [IdKey,Unique];
The IDKEY for the session class.
•index (ExpiresIndex on Expires);
Order by expiration time
•index (UserIndex on Username);
The session is indexed by the Username


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.