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

クラス

class  ExternalizerImpl
 

公開メンバ関数

InScopePredicate scope (String id)
 
boolean test (Map.Entry< String, Revisioned > entry)
 

静的公開メンバ関数

static InScopePredicate create ()
 

非公開変数類

String scopeId
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ create()

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

◆ scope()

InScopePredicate org.keycloak.models.cache.infinispan.authorization.stream.InScopePredicate.scope ( String  id)
inline
28  {
29  scopeId = id;
30  return this;
31  }

◆ test()

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

メンバ詳解

◆ scopeId

String org.keycloak.models.cache.infinispan.authorization.stream.InScopePredicate.scopeId
private

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