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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

ScopeRemovedEvent org.keycloak.models.cache.infinispan.authorization.events.ScopeRemovedEvent.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
78  {
79  switch (input.readByte()) {
80  case VERSION_1:
81  return readObjectVersion1(input);
82  default:
83  throw new IOException("Unknown version");
84  }
85  }
ScopeRemovedEvent readObjectVersion1(ObjectInput input)
Definition: ScopeRemovedEvent.java:87

◆ readObjectVersion1()

ScopeRemovedEvent org.keycloak.models.cache.infinispan.authorization.events.ScopeRemovedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
87  {
88  ScopeRemovedEvent res = new ScopeRemovedEvent();
89  res.id = MarshallUtil.unmarshallString(input);
90  res.name = MarshallUtil.unmarshallString(input);
91  res.serverId = MarshallUtil.unmarshallString(input);
92 
93  return res;
94  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.authorization.events.ScopeRemovedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
ScopeRemovedEvent  obj 
) throws IOException
inline
69  {
70  output.writeByte(VERSION_1);
71 
72  MarshallUtil.marshallString(obj.id, output);
73  MarshallUtil.marshallString(obj.name, output);
74  MarshallUtil.marshallString(obj.serverId, output);
75  }

メンバ詳解

◆ VERSION_1

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

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