Example usage for javax.xml.ws.wsaddressing W3CEndpointReferenceBuilder address

List of usage examples for javax.xml.ws.wsaddressing W3CEndpointReferenceBuilder address

Introduction

In this page you can find the example usage for javax.xml.ws.wsaddressing W3CEndpointReferenceBuilder address.

Prototype

String address

To view the source code for javax.xml.ws.wsaddressing W3CEndpointReferenceBuilder address.

Click Source Link

Usage

From source file:org.fusesource.cloudmix.common.dto.JaxbTest.java

protected W3CEndpointReference getEPR(String address) {
    W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
    builder.address(address);
    return builder.build();
}