當前位置: 首頁>>代碼示例>>Java>>正文


Java RequestCtx.getInstance方法代碼示例

本文整理匯總了Java中org.wso2.balana.ctx.xacml3.RequestCtx.getInstance方法的典型用法代碼示例。如果您正苦於以下問題:Java RequestCtx.getInstance方法的具體用法?Java RequestCtx.getInstance怎麽用?Java RequestCtx.getInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.wso2.balana.ctx.xacml3.RequestCtx的用法示例。


在下文中一共展示了RequestCtx.getInstance方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getRequestCtx

import org.wso2.balana.ctx.xacml3.RequestCtx; //導入方法依賴的package包/類
/**
 *  Returns instance of <code>AbstractRequestCtx</code> based one the XACML version.
 *
 * @param root  the node to parse for the <code>AbstractRequestCtx</code>
 * @return <code>AbstractRequestCtx</code> object
 * @throws org.wso2.balana.ParsingException  if the DOM node is invalid
 */
public AbstractRequestCtx getRequestCtx(Node root) throws ParsingException {

    String requestCtxNs = root.getNamespaceURI();

    if(requestCtxNs != null){
        if(XACMLConstants.REQUEST_CONTEXT_3_0_IDENTIFIER.equals(requestCtxNs.trim())){
            return RequestCtx.getInstance(root);
        } else if(XACMLConstants.REQUEST_CONTEXT_1_0_IDENTIFIER.equals(requestCtxNs.trim()) ||
                XACMLConstants.REQUEST_CONTEXT_2_0_IDENTIFIER.equals(requestCtxNs.trim())) {
            return org.wso2.balana.ctx.xacml2.RequestCtx.getInstance(root);
        } else {
            throw new ParsingException("Invalid namespace in XACML request");
        }
    } else {
        log.warn("No Namespace defined in XACML request and Assume as XACML 3.0");
        return RequestCtx.getInstance(root);
    }
}
 
開發者ID:FTSRG,項目名稱:mondo-collab-framework,代碼行數:26,代碼來源:RequestCtxFactory.java


注:本文中的org.wso2.balana.ctx.xacml3.RequestCtx.getInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。