All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.gxserver.client.services.contracts.ServerMessage Maven / Gradle / Ivy

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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ServerMessage complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ServerMessage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Type" type="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}MessageType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServerMessage", propOrder = { "text", "type" }) public class ServerMessage { @XmlElement(name = "Text", nillable = true) protected String text; @XmlElement(name = "Type") @XmlSchemaType(name = "string") protected MessageType type; /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link MessageType } * */ public MessageType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link MessageType } * */ public void setType(MessageType value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy