summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/binding-ws
diff options
context:
space:
mode:
authoredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-05-27 08:51:58 +0000
committeredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-05-27 08:51:58 +0000
commit71ae540bdd3163ed0d9eceb328a3aefb28d49c96 (patch)
tree305dbd3dc4e10a756e99579d6ddbf9d70aa429d6 /java/sca/modules/binding-ws
parentf3a5df33dfddec6cfd177e29448ceaa64f38fa2f (diff)
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
Diffstat (limited to 'java/sca/modules/binding-ws')
-rw-r--r--java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java b/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java
index 4ea8fb41a1..45a421e5ff 100644
--- a/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java
+++ b/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java
@@ -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;
}