本文整理汇总了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");
}
}