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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

UserCacheRealmInvalidationEvent org.keycloak.models.cache.infinispan.events.UserCacheRealmInvalidationEvent.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
71  {
72  switch (input.readByte()) {
73  case VERSION_1:
74  return readObjectVersion1(input);
75  default:
76  throw new IOException("Unknown version");
77  }
78  }
static final int VERSION_1
Definition: UserCacheRealmInvalidationEvent.java:61
UserCacheRealmInvalidationEvent readObjectVersion1(ObjectInput input)
Definition: UserCacheRealmInvalidationEvent.java:80

◆ readObjectVersion1()

UserCacheRealmInvalidationEvent org.keycloak.models.cache.infinispan.events.UserCacheRealmInvalidationEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
80  {
81  UserCacheRealmInvalidationEvent res = new UserCacheRealmInvalidationEvent();
82  res.realmId = MarshallUtil.unmarshallString(input);
83 
84  return res;
85  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.events.UserCacheRealmInvalidationEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
UserCacheRealmInvalidationEvent  obj 
) throws IOException
inline
64  {
65  output.writeByte(VERSION_1);
66 
67  MarshallUtil.marshallString(obj.realmId, output);
68  }
static final int VERSION_1
Definition: UserCacheRealmInvalidationEvent.java:61

メンバ詳解

◆ VERSION_1

final int org.keycloak.models.cache.infinispan.events.UserCacheRealmInvalidationEvent.ExternalizerImpl.VERSION_1 = 1
staticprivate

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