* Set the address of the provided endpoint reference.
* @param ref - the endpoint reference
* @param address - the address
*/
public static void setAddress(EndpointReferenceType ref, String address) {
AttributedURIType a = new ObjectFactory().createAttributedURIType();
a.setValue(address);
ref.setAddress(a);
}