Searched defs:createWithAddress (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DWSEndpointReference.java550 * @see #createWithAddress(String)
552 public @NotNull WSEndpointReference createWithAddress(@NotNull URI newAddress) { method in class:WSEndpointReference
553 return createWithAddress(newAddress.toString());
557 * @see #createWithAddress(String)
559 public @NotNull WSEndpointReference createWithAddress(@NotNull URL newAddress) { method in class:WSEndpointReference
560 return createWithAddress(newAddress.toString());
572 * epr = epr.createWithAddress("https:"+epr.getAddress().substring(5));
579 public @NotNull WSEndpointReference createWithAddress(@NotNull final String newAddress) { method in class:WSEndpointReference

Completed in 33 milliseconds