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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

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

◆ readObjectVersion1()

ClientTemplateEvent org.keycloak.models.cache.infinispan.events.ClientTemplateEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
84  {
85  ClientTemplateEvent res = new ClientTemplateEvent();
86  res.clientTemplateId = MarshallUtil.unmarshallString(input);
87 
88  return res;
89  }

◆ writeObject()

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

メンバ詳解

◆ VERSION_1

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

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