for (SoapAction soapAction : soapActions.value()) {
result.add(soapAction.value());
}
}
else {
SoapAction soapAction = AnnotationUtils.findAnnotation(method, SoapAction.class);
if (soapAction != null) {
result.add(soapAction.value());
}
}
return result;
}