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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

ScopeUpdatedEvent org.keycloak.models.cache.infinispan.authorization.events.ScopeUpdatedEvent.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  }
ScopeUpdatedEvent readObjectVersion1(ObjectInput input)
Definition: ScopeUpdatedEvent.java:87

◆ readObjectVersion1()

ScopeUpdatedEvent org.keycloak.models.cache.infinispan.authorization.events.ScopeUpdatedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
87  {
88  ScopeUpdatedEvent res = new ScopeUpdatedEvent();
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.ScopeUpdatedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
ScopeUpdatedEvent  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.ScopeUpdatedEvent.ExternalizerImpl.VERSION_1 = 1
staticprivate

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