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

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

Introduction

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

Prototype

public W3CEndpointReference build() 

Source Link

Document

Builds a W3CEndpointReference from the accumulated properties set on this W3CEndpointReferenceBuilder instance.

Usage

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

protected W3CEndpointReference getEPR(String address) {
    W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
    builder.address(address);//from   w  w w.j a v  a  2 s .  c  om
    return builder.build();
}