@Override
protected List<String> getLookupKeysForMethod(Method method) {
List<String> result = new ArrayList<String>();
SoapActions soapActions = AnnotationUtils.findAnnotation(method,
SoapActions.class);
if (soapActions != null) {
for (SoapAction soapAction : soapActions.value()) {
result.add(soapAction.value());
}
}
else {
SoapAction soapAction = AnnotationUtils.findAnnotation(method, SoapAction.class);