* @return The name of the soap binding.
* @see org.codehaus.enunciate.soap.annotations.SoapBindingName
*/
public String getSoapBindingName() {
String name = getSimpleName() + "PortBinding";
SoapBindingName bindingNameInfo = getAnnotation(SoapBindingName.class);
if (bindingNameInfo != null) {
name = bindingNameInfo.value();
}
return name;
}