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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

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

◆ readObjectVersion1()

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

◆ writeObject()

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

メンバ詳解

◆ VERSION_1

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

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