public class WebServiceParameterList extends Object implements Serializable
Java class for WebServiceParameterList complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="WebServiceParameterList"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Parameter" type="{}WebServiceParameter" maxOccurs="unbounded"/> </sequence> <attribute name="messageName" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="messageNamespace" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
static WebServiceParameterList |
EMPTY_INSTANCE |
protected String |
messageName |
protected String |
messageNamespace |
protected List<WebServiceParameter> |
parameter |
Constructor and Description |
---|
WebServiceParameterList() |
Modifier and Type | Method and Description |
---|---|
WebServiceParameterList |
copy()
Deep copies the fields of the this model into a new instance of this class and returns it.
|
WebServiceParameterList |
copy(boolean isDeep)
Copies the fields of the this model (optionally deeply) into a new instance of this class and returns it.
|
protected WebServiceParameterList |
copy(WebServiceParameterList nobj,
boolean isDeep)
Copies the fields of the this model (optionally deeply) into the given instance and returns it.
|
boolean |
equals(Object o) |
String |
getMessageName()
Gets the value of the messageName property.
|
String |
getMessageNamespace()
Gets the value of the messageNamespace property.
|
List<WebServiceParameter> |
getParameter()
Gets the value of the parameter property.
|
int |
hashCode() |
void |
setMessageName(String value)
Sets the value of the messageName property.
|
void |
setMessageNamespace(String value)
Sets the value of the messageNamespace property.
|
String |
toString() |
WebServiceParameterList |
withMessageName(String newValue)
Sets the messageName property to the given newValue and returns this instance.
|
WebServiceParameterList |
withMessageNamespace(String newValue)
Sets the messageNamespace property to the given newValue and returns this instance.
|
WebServiceParameterList |
withParameter(Collection<? extends WebServiceParameter> newValues)
Adds the given newValues to the current parameter property List and returns this instance.
|
WebServiceParameterList |
withParameter(WebServiceParameter... newValues)
Adds the given newValues to the current parameter property List and returns this instance.
|
protected List<WebServiceParameter> parameter
protected String messageName
protected String messageNamespace
public static final WebServiceParameterList EMPTY_INSTANCE
public List<WebServiceParameter> getParameter()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the parameter property.
For example, to add a new item, do as follows:
getParameter().add(newItem);
Objects of the following type(s) are allowed in the list
WebServiceParameter
public String getMessageName()
String
public void setMessageName(String value)
value
- allowed object is
String
public String getMessageNamespace()
String
public void setMessageNamespace(String value)
value
- allowed object is
String
public WebServiceParameterList copy()
public WebServiceParameterList copy(boolean isDeep)
protected WebServiceParameterList copy(WebServiceParameterList nobj, boolean isDeep)
public WebServiceParameterList withParameter(WebServiceParameter... newValues)
public WebServiceParameterList withParameter(Collection<? extends WebServiceParameter> newValues)
public WebServiceParameterList withMessageName(String newValue)
public WebServiceParameterList withMessageNamespace(String newValue)