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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

ClientAddedEvent org.keycloak.models.cache.infinispan.events.ClientAddedEvent.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
77  {
78  switch (input.readByte()) {
79  case VERSION_1:
80  return readObjectVersion1(input);
81  default:
82  throw new IOException("Unknown version");
83  }
84  }
ClientAddedEvent readObjectVersion1(ObjectInput input)
Definition: ClientAddedEvent.java:86
static final int VERSION_1
Definition: ClientAddedEvent.java:65

◆ readObjectVersion1()

ClientAddedEvent org.keycloak.models.cache.infinispan.events.ClientAddedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
86  {
87  ClientAddedEvent res = new ClientAddedEvent();
88  res.clientUuid = MarshallUtil.unmarshallString(input);
89  res.clientId = MarshallUtil.unmarshallString(input);
90  res.realmId = MarshallUtil.unmarshallString(input);
91 
92  return res;
93  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.events.ClientAddedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
ClientAddedEvent  obj 
) throws IOException
inline
68  {
69  output.writeByte(VERSION_1);
70 
71  MarshallUtil.marshallString(obj.clientUuid, output);
72  MarshallUtil.marshallString(obj.clientId, output);
73  MarshallUtil.marshallString(obj.realmId, output);
74  }
static final int VERSION_1
Definition: ClientAddedEvent.java:65

メンバ詳解

◆ VERSION_1

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

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