Beispiel #1
0
 /** Recursively populate the Subcodes */
 private void fillFaultSubCodes(SOAPFault fault, SubcodeType subcode) throws SOAPException {
   if (subcode != null) {
     fault.appendFaultSubcode(subcode.getValue());
     fillFaultSubCodes(fault, subcode.getSubcode());
   }
 }