266267268269270271272273274275276
} String getOutputAction(@Nullable WSDLBoundOperation wbo) { String action = AddressingVersion.UNSET_OUTPUT_ACTION; if (wbo != null) { WSDLOutput op = wbo.getOperation().getOutput(); if (op != null) action = op.getAction(); } return action; }
294295296297298299300301302303304305
} String getOutputAction(@Nullable WSDLBoundOperation wbo) { String action = AddressingVersion.UNSET_OUTPUT_ACTION; if (wbo != null) { WSDLOutput op = wbo.getOperation().getOutput(); if (op != null) { action = op.getAction(); } } return action; }