persistent class %SYS.TokenAuth
extends %Persistent
property AccessTokenHash
as %String(MAXLEN=64);
property Expires
as %BigInt;
property GroupId
as %String(MAXLEN="");
property RefreshTokenHash
as %String(MAXLEN=64);
property SID
as %String(MAXLEN=24) [ InitialExpression = $System.Encryption.Base64Encode($System.Encryption.GenCryptRand(18)) ];
property SecurityContext
as %String(MAXLEN="");
index (ExpiresIndex on Expires);
index (SIDIndex on SID) [IdKey];