com.ibm.wsdl.extensions.soap12.SOAP12AddressImpl Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2006
*/
package com.ibm.wsdl.extensions.soap12;
import javax.wsdl.extensions.soap12.*;
import javax.xml.namespace.*;
/**
* Copied from com.ibm.wsdl.extensions.soap.SOAPAddressImpl
*/
public class SOAP12AddressImpl implements SOAP12Address
{
protected QName elementType = SOAP12Constants.Q_ELEM_SOAP_ADDRESS;
// Uses the wrapper type so we can tell if it was set or not.
protected Boolean required = null;
protected String locationURI = null;
public static final long serialVersionUID = 1;
/**
* Set the type of this extensibility element.
*
* @param elementType the type
*/
public void setElementType(QName elementType)
{
this.elementType = elementType;
}
/**
* Get the type of this extensibility element.
*
* @return the extensibility element's type
*/
public QName getElementType()
{
return elementType;
}
/**
* Set whether or not the semantics of this extension
* are required. Relates to the wsdl:required attribute.
*/
public void setRequired(Boolean required)
{
this.required = required;
}
/**
* Get whether or not the semantics of this extension
* are required. Relates to the wsdl:required attribute.
*/
public Boolean getRequired()
{
return required;
}
/**
* Set the location URI for this SOAP address.
*
* @param locationURI the desired location URI
*/
public void setLocationURI(String locationURI)
{
this.locationURI = locationURI;
}
/**
* Get the location URI for this SOAP address.
*/
public String getLocationURI()
{
return locationURI;
}
public String toString()
{
StringBuffer strBuf = new StringBuffer();
strBuf.append("SOAPAddress (" + elementType + "):");
strBuf.append("\nrequired=" + required);
if (locationURI != null)
{
strBuf.append("\nlocationURI=" + locationURI);
}
return strBuf.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy