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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

GroupListPredicate org.keycloak.models.cache.infinispan.stream.GroupListPredicate.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
56  {
57  switch (input.readByte()) {
58  case VERSION_1:
59  return readObjectVersion1(input);
60  default:
61  throw new IOException("Unknown version");
62  }
63  }
GroupListPredicate readObjectVersion1(ObjectInput input)
Definition: GroupListPredicate.java:65
static final int VERSION_1
Definition: GroupListPredicate.java:46

◆ readObjectVersion1()

GroupListPredicate org.keycloak.models.cache.infinispan.stream.GroupListPredicate.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
65  {
66  GroupListPredicate res = new GroupListPredicate();
67  res.realm = MarshallUtil.unmarshallString(input);
68 
69  return res;
70  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.stream.GroupListPredicate.ExternalizerImpl.writeObject ( ObjectOutput  output,
GroupListPredicate  obj 
) throws IOException
inline
49  {
50  output.writeByte(VERSION_1);
51 
52  MarshallUtil.marshallString(obj.realm, output);
53  }
static final int VERSION_1
Definition: GroupListPredicate.java:46

メンバ詳解

◆ VERSION_1

final int org.keycloak.models.cache.infinispan.stream.GroupListPredicate.ExternalizerImpl.VERSION_1 = 1
staticprivate

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