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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

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

◆ readObjectVersion1()

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

◆ writeObject()

void org.keycloak.models.cache.infinispan.authorization.events.ResourceServerRemovedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
ResourceServerRemovedEvent  obj 
) throws IOException
inline
67  {
68  output.writeByte(VERSION_1);
69 
70  MarshallUtil.marshallString(obj.id, output);
71  MarshallUtil.marshallString(obj.clientId, output);
72  }

メンバ詳解

◆ VERSION_1

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

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