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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

HasRolePredicate org.keycloak.models.cache.infinispan.stream.HasRolePredicate.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  }
static final int VERSION_1
Definition: HasRolePredicate.java:68
HasRolePredicate readObjectVersion1(ObjectInput input)
Definition: HasRolePredicate.java:87

◆ readObjectVersion1()

HasRolePredicate org.keycloak.models.cache.infinispan.stream.HasRolePredicate.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
87  {
88  HasRolePredicate res = new HasRolePredicate();
89  res.role = MarshallUtil.unmarshallString(input);
90 
91  return res;
92  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.stream.HasRolePredicate.ExternalizerImpl.writeObject ( ObjectOutput  output,
HasRolePredicate  obj 
) throws IOException
inline
71  {
72  output.writeByte(VERSION_1);
73 
74  MarshallUtil.marshallString(obj.role, output);
75  }
static final int VERSION_1
Definition: HasRolePredicate.java:68

メンバ詳解

◆ VERSION_1

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

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