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