本文整理匯總了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);
}
}