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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

ClientUpdatedEvent org.keycloak.models.cache.infinispan.events.ClientUpdatedEvent.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  }
static final int VERSION_1
Definition: ClientUpdatedEvent.java:65
ClientUpdatedEvent readObjectVersion1(ObjectInput input)
Definition: ClientUpdatedEvent.java:86

◆ readObjectVersion1()

ClientUpdatedEvent org.keycloak.models.cache.infinispan.events.ClientUpdatedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
86  {
87  ClientUpdatedEvent res = new ClientUpdatedEvent();
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.ClientUpdatedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
ClientUpdatedEvent  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: ClientUpdatedEvent.java:65

メンバ詳解

◆ VERSION_1

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

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