keycloak
公開メンバ関数 | 静的非公開変数類 | 全メンバ一覧
org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl クラス
org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl の継承関係図
Inheritance graph
org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl 連携図
Collaboration graph

公開メンバ関数

void writeObject (ObjectOutput output, AuthenticatedClientSessionStore obj) throws IOException
 
AuthenticatedClientSessionStore readObject (ObjectInput input) throws IOException, ClassNotFoundException
 
AuthenticatedClientSessionStore readObjectVersion1 (ObjectInput input) throws IOException, ClassNotFoundException
 

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

AuthenticatedClientSessionStore org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
99  {
100  switch (input.readByte()) {
101  case VERSION_1:
102  return readObjectVersion1(input);
103  default:
104  throw new IOException("Unknown version");
105  }
106  }
static final int VERSION_1
Definition: AuthenticatedClientSessionStore.java:89
AuthenticatedClientSessionStore readObjectVersion1(ObjectInput input)
Definition: AuthenticatedClientSessionStore.java:108

◆ readObjectVersion1()

AuthenticatedClientSessionStore org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
108  {
110  KeycloakMarshallUtil.readMap(input, KeycloakMarshallUtil.STRING_EXT, KeycloakMarshallUtil.UUID_EXT, ConcurrentHashMap::new)
111  );
112  return res;
113  }
AuthenticatedClientSessionStore()
Definition: AuthenticatedClientSessionStore.java:42

◆ writeObject()

void org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl.writeObject ( ObjectOutput  output,
AuthenticatedClientSessionStore  obj 
) throws IOException
inline
92  {
93  output.writeByte(VERSION_1);
94 
95  KeycloakMarshallUtil.writeMap(obj.authenticatedClientSessionIds, KeycloakMarshallUtil.STRING_EXT, KeycloakMarshallUtil.UUID_EXT, output);
96  }
static final int VERSION_1
Definition: AuthenticatedClientSessionStore.java:89

メンバ詳解

◆ VERSION_1

final int org.keycloak.models.sessions.infinispan.entities.AuthenticatedClientSessionStore.ExternalizerImpl.VERSION_1 = 1
staticprivate

このクラス詳解は次のファイルから抽出されました: