gluu
静的公開メンバ関数 | 非公開メンバ関数 | 全メンバ一覧
org.xdi.oxauth.model.uma.JsonLogicNodeParser クラス
org.xdi.oxauth.model.uma.JsonLogicNodeParser 連携図
Collaboration graph

静的公開メンバ関数

static JsonLogicNode parseNode (String json)
 
static boolean isNodeValid (String json)
 

非公開メンバ関数

 JsonLogicNodeParser ()
 

詳解

著者
yuriyz

構築子と解体子

◆ JsonLogicNodeParser()

org.xdi.oxauth.model.uma.JsonLogicNodeParser.JsonLogicNodeParser ( )
inlineprivate
10  {
11  }

関数詳解

◆ isNodeValid()

static boolean org.xdi.oxauth.model.uma.JsonLogicNodeParser.isNodeValid ( String  json)
inlinestatic
21  {
22  JsonLogicNode node = parseNode(json);
23  return node != null && node.isValid();
24  }
static JsonLogicNode parseNode(String json)
Definition: JsonLogicNodeParser.java:13

◆ parseNode()

static JsonLogicNode org.xdi.oxauth.model.uma.JsonLogicNodeParser.parseNode ( String  json)
inlinestatic
13  {
14  try {
15  return Util.createJsonMapper().readValue(json, JsonLogicNode.class);
16  } catch (Exception e) {
17  return null;
18  }
19  }

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