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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

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

◆ readObjectVersion1()

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

◆ writeObject()

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

メンバ詳解

◆ VERSION_1

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

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