com.genexus.gxserver.client.services.contracts.GXServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxserver-client Show documentation
Show all versions of gxserver-client Show documentation
Java client for GeneXus Server services
The newest version!
package com.genexus.gxserver.client.services.contracts;
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 GXServerException complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GXServerException">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ServerMessages" type="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}ArrayOfServerMessage" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GXServerException", propOrder = {
"message",
"serverMessages"
})
public class GXServerException {
@XmlElement(name = "Message", nillable = true)
protected String message;
@XmlElement(name = "ServerMessages", nillable = true)
protected ArrayOfServerMessage serverMessages;
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the serverMessages property.
*
* @return
* possible object is
* {@link ArrayOfServerMessage }
*
*/
public ArrayOfServerMessage getServerMessages() {
return serverMessages;
}
/**
* Sets the value of the serverMessages property.
*
* @param value
* allowed object is
* {@link ArrayOfServerMessage }
*
*/
public void setServerMessages(ArrayOfServerMessage value) {
this.serverMessages = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy