blob: 106f3a8becf52d54ffd57bde5f377589ed897256 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package javax.xml.ws.wsaddressing;
import org.w3c.dom.Element;
import javax.xml.namespace.QName;
import javax.xml.ws.spi.Provider;
import java.util.ArrayList;
import java.util.List;
public final class W3CEndpointReferenceBuilder {
private String address;
private QName serviceName;
private QName endpointName;
private String wsdlDocumentLocation;
private List<Element> referenceParameters;
private List<Element> metadataElements;
public W3CEndpointReferenceBuilder() {
}
public W3CEndpointReferenceBuilder address(String address) {
this.address = address;
return this;
}
public W3CEndpointReferenceBuilder serviceName(QName serviceName) {
this.serviceName = serviceName;
return this;
}
public W3CEndpointReferenceBuilder endpointName(QName endpointName) {
//TODO NLS enable
if (this.serviceName == null) {
throw new IllegalStateException("The endpoint qname cannot be set before the service qname.");
}
this.endpointName = endpointName;
return this;
}
public W3CEndpointReferenceBuilder wsdlDocumentLocation(String wsdlDocumentLocation) {
this.wsdlDocumentLocation = wsdlDocumentLocation;
return this;
}
public W3CEndpointReferenceBuilder referenceParameter(Element referenceParameter) {
//TODO NLS enable
if (referenceParameter == null) {
throw new IllegalArgumentException("A reference parameter cannot be null.");
}
if (this.referenceParameters == null) {
this.referenceParameters = new ArrayList<Element>();
}
this.referenceParameters.add(referenceParameter);
return this;
}
public W3CEndpointReferenceBuilder metadata(Element metadataElement) {
//TODO NLS enable
if (metadataElement == null) {
throw new IllegalArgumentException("A metadata element cannot be null.");
}
if (this.metadataElements == null) {
this.metadataElements = new ArrayList<Element>();
}
this.metadataElements.add(metadataElement);
return this;
}
public W3CEndpointReference build() {
return Provider.provider().createW3CEndpointReference(address,
serviceName,
endpointName,
metadataElements,
wsdlDocumentLocation,
referenceParameters);
}
@Override
public String toString() {
// TODO Auto-generated method stub
return super.toString();
}
}