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

公開メンバ関数

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

静的非公開変数類

static final int VERSION_1 = 1
 

詳解

関数詳解

◆ readObject()

UserFederationLinkRemovedEvent org.keycloak.models.cache.infinispan.events.UserFederationLinkRemovedEvent.ExternalizerImpl.readObject ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
95  {
96  switch (input.readByte()) {
97  case VERSION_1:
98  return readObjectVersion1(input);
99  default:
100  throw new IOException("Unknown version");
101  }
102  }
static final int VERSION_1
Definition: UserFederationLinkRemovedEvent.java:82
UserFederationLinkRemovedEvent readObjectVersion1(ObjectInput input)
Definition: UserFederationLinkRemovedEvent.java:104

◆ readObjectVersion1()

UserFederationLinkRemovedEvent org.keycloak.models.cache.infinispan.events.UserFederationLinkRemovedEvent.ExternalizerImpl.readObjectVersion1 ( ObjectInput  input) throws IOException, ClassNotFoundException
inline
104  {
105  UserFederationLinkRemovedEvent res = new UserFederationLinkRemovedEvent();
106  res.userId = MarshallUtil.unmarshallString(input);
107  res.realmId = MarshallUtil.unmarshallString(input);
108  res.identityProviderId = MarshallUtil.unmarshallString(input);
109  res.socialUserId = MarshallUtil.unmarshallString(input);
110 
111  return res;
112  }

◆ writeObject()

void org.keycloak.models.cache.infinispan.events.UserFederationLinkRemovedEvent.ExternalizerImpl.writeObject ( ObjectOutput  output,
UserFederationLinkRemovedEvent  obj 
) throws IOException
inline
85  {
86  output.writeByte(VERSION_1);
87 
88  MarshallUtil.marshallString(obj.userId, output);
89  MarshallUtil.marshallString(obj.realmId, output);
90  MarshallUtil.marshallString(obj.identityProviderId, output);
91  MarshallUtil.marshallString(obj.socialUserId, output);
92  }
static final int VERSION_1
Definition: UserFederationLinkRemovedEvent.java:82

メンバ詳解

◆ VERSION_1

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

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