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

クラス

class  ExternalizerImpl
 

公開メンバ関数

InResourceServerPredicate resourceServer (String id)
 
boolean test (Map.Entry< String, Revisioned > entry)
 

静的公開メンバ関数

static InResourceServerPredicate create ()
 

非公開変数類

String serverId
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ create()

static InResourceServerPredicate org.keycloak.models.cache.infinispan.authorization.stream.InResourceServerPredicate.create ( )
inlinestatic
24  {
25  return new InResourceServerPredicate();
26  }

◆ resourceServer()

InResourceServerPredicate org.keycloak.models.cache.infinispan.authorization.stream.InResourceServerPredicate.resourceServer ( String  id)
inline
28  {
29  serverId = id;
30  return this;
31  }

◆ test()

boolean org.keycloak.models.cache.infinispan.authorization.stream.InResourceServerPredicate.test ( Map.Entry< String, Revisioned entry)
inline
34  {
35  Object value = entry.getValue();
36  if (value == null) return false;
37  if (!(value instanceof InResourceServer)) return false;
38 
39  return serverId.equals(((InResourceServer)value).getResourceServerId());
40  }

メンバ詳解

◆ serverId

String org.keycloak.models.cache.infinispan.authorization.stream.InResourceServerPredicate.serverId
private

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