Example #1
0
 /**
  * Return <code>getURLName.toString()</code> if this service has a URLName, otherwise it will
  * return the default <code>toString</code>.
  */
 public String toString() {
   URLName url = getURLName();
   if (url != null) return url.toString();
   else return super.toString();
 }