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


Java OMElement.getChildren方法代碼示例

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


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

示例1: formatResponse

import org.apache.axiom.om.OMElement; //導入方法依賴的package包/類
/**
 * Format the sent in response as required by OpenSAML
 *
 * @param xacmlResponse : received XACML response
 * @return formatted response
 */
private String formatResponse(String xacmlResponse) throws Exception {

    xacmlResponse = xacmlResponse.replace("\n", "");
    OMElement omElemnt;

    try {
        omElemnt = org.apache.axiom.om.util.AXIOMUtil.stringToOM(xacmlResponse);
        omElemnt.setNamespace(xacmlContextNS);
        if (omElemnt.getChildren() != null) {
            Iterator childIterator = omElemnt.getChildElements();
            setXACMLNamespace(childIterator);
        }
    } catch (Exception e) {
        log.error("Error while generating the OMElement from the XACML request.", e);
        throw new Exception("Error while generating the OMElement from the XACML request.", e);
    }

    return omElemnt.toString();
}
 
開發者ID:wso2,項目名稱:carbon-identity-framework,代碼行數:26,代碼來源:WSXACMLMessageReceiver.java

示例2: listVehicles

import org.apache.axiom.om.OMElement; //導入方法依賴的package包/類
private void listVehicles() throws Exception {

        HttpClientUtil httpClient = new HttpClientUtil();
        OMElement result = httpClient.get(serviceEndPoint + "_getvehicles");
        Assert.assertNotNull(result, "Response null");
        Iterator itr = result.getChildren();
        while (itr.hasNext()) {
            OMElement product = (OMElement) itr.next();
            OMElement productModel = (OMElement) product.getChildrenWithLocalName("Model").next();
            OMAttribute modelResource = (OMAttribute) productModel.getAllAttributes().next();
            Assert.assertEquals(modelResource.getAttributeValue().startsWith("http://productlines/"),
                    true, "Model rdf resource value is correct");
        }
    }
 
開發者ID:wso2,項目名稱:product-ei,代碼行數:15,代碼來源:RDFExposedAsRDFSampleTestCase.java


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