247248249250251252253254255256257
} 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; }
255256257258259260261262263264265