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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

GroupRemovedEvent org.keycloak.models.cache.infinispan.events.GroupRemovedEvent.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
81  {
82  switch (input.readByte()) {
83  case VERSION_1:
84  return readObjectVersion1(input);
85  default:
86  throw new IOException("Unknown version");
87  }
88  }
GroupRemovedEvent readObjectVersion1(ObjectInput input)
Definition: GroupRemovedEvent.java:90
static final int VERSION_1
Definition: GroupRemovedEvent.java:69

◆ readObjectVersion1()

GroupRemovedEvent org.keycloak.models.cache.infinispan.events.GroupRemovedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
90  {
91  GroupRemovedEvent res = new GroupRemovedEvent();
92  res.realmId = MarshallUtil.unmarshallString(input);
93  res.groupId = MarshallUtil.unmarshallString(input);
94  res.parentId = MarshallUtil.unmarshallString(input);
95 
96  return res;
97  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.events.GroupRemovedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
GroupRemovedEvent  obj 
) throws IOException
inline
72  {
73  output.writeByte(VERSION_1);
74 
75  MarshallUtil.marshallString(obj.realmId, output);
76  MarshallUtil.marshallString(obj.groupId, output);
77  MarshallUtil.marshallString(obj.parentId, output);
78  }
static final int VERSION_1
Definition: GroupRemovedEvent.java:69

メンバ詳解

◆ VERSION_1

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

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