Esempio n. 1
0
 public void setEndPointAddressString(String s) {
   if (s == null) {
     throw new IllegalArgumentException();
   } else {
     this.endpointAddress = EndpointAddress.create(s);
   }
 }
Esempio n. 2
0
 /**
  * Creates {@link BindingProvider#ENDPOINT_ADDRESS_PROPERTY} view on top of {@link
  * #endpointAddress}.
  *
  * @deprecated always access {@link #endpointAddress}.
  */
 @Property(ENDPOINT_ADDRESS_PROPERTY)
 public String getEndPointAddressString() {
   return endpointAddress != null ? endpointAddress.toString() : null;
 }