final String wsdlLocSEIFromAnnotation = getServiceWsdlLocation(clazz, loader);
return wsdlLocSEIFromAnnotation != null && !wsdlLocSEIFromAnnotation.equals("");
}
public static String getBindingUriFromAnn(final Class<?> clazz) {
final BindingType bindingType = clazz.getAnnotation(BindingType.class);
if (bindingType != null) {
return bindingType.value();
}
return null;
}