com.genexus.gxserver.client.services.contracts.ArrayOfServerMessage Maven / Gradle / Ivy
Show all versions of gxserver-client Show documentation
package com.genexus.gxserver.client.services.contracts;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ArrayOfServerMessage complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ArrayOfServerMessage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ServerMessage" type="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}ServerMessage" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfServerMessage", propOrder = {
"serverMessage"
})
public class ArrayOfServerMessage {
@XmlElement(name = "ServerMessage", nillable = true)
protected List serverMessage;
/**
* Gets the value of the serverMessage property.
*
*
* 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 Jakarta XML Binding object.
* This is why there is not a set
method for the serverMessage property.
*
*
* For example, to add a new item, do as follows:
*
* getServerMessage().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ServerMessage }
*
*
*/
public List getServerMessage() {
if (serverMessage == null) {
serverMessage = new ArrayList();
}
return this.serverMessage;
}
}