Document document = getEmptyDocument();
Element rootElement = document.createElement("stubMethods");
AxisOperation axisOperation;
QName opName;
PolicyInclude policyInclude;
Policy policy;
Iterator a = axisService.getOperations();
for (Iterator iterator = axisService.getOperations(); iterator.hasNext(); ) {
axisOperation = (AxisOperation) iterator.next();
opName = axisOperation.getName();
policyInclude = axisOperation.getPolicyInclude();
policy = policyInclude.getEffectivePolicy();
if (policy != null) {
processPolicies(document, rootElement, policy, opName);
}
}