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

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

Introduction

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

Prototype

public W3CEndpointReferenceBuilder() 

Source Link

Document

Creates a new 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);/* ww  w  .  ja va  2  s. com*/
    return builder.build();
}