public void setEndPointAddressString(String s) { if (s == null) { throw new IllegalArgumentException(); } else { this.endpointAddress = EndpointAddress.create(s); } }
/** * 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; }