Improve reporting information using a toString() method in WebServicesBindingImpl

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@779065 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
edwardsmj 2009-05-27 08:51:58 +00:00
parent f3a5df33df
commit 71ae540bdd

View file

@ -75,6 +75,13 @@ class WebServiceBindingImpl implements WebServiceBinding, PolicySubject, Extensi
protected WebServiceBindingImpl() {
}
/**
* Provide a meaningful representation of this Binding
*/
public String toString() {
return "Web Service Binding: " + name;
} // end method toString
public String getName() {
return name;
}