Subversion Repositories bacoAlunos

Rev

Rev 230 | Blame | Compare with Previous | Last modification | View Log | RSS feed


package pt.ipportalegre.siges.web.services;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="sPhones" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="secret" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "message",
    "sPhones",
    "secret"
})
@XmlRootElement(name = "sendSmsSeparatedWithComma")
public class SendSmsSeparatedWithComma {

    protected 1.5.0/docs/api/java/lang/String.html">String message;
    protected 1.5.0/docs/api/java/lang/String.html">String sPhones;
    protected 1.5.0/docs/api/java/lang/String.html">String secret;

    /**
     * Gets the value of the message property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getMessage() {
        return message;
    }

    /**
     * Sets the value of the message property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setMessage(1.5.0/docs/api/java/lang/String.html">String value) {
        this.message = value;
    }

    /**
     * Gets the value of the sPhones property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getSPhones() {
        return sPhones;
    }

    /**
     * Sets the value of the sPhones property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setSPhones(1.5.0/docs/api/java/lang/String.html">String value) {
        this.sPhones = value;
    }

    /**
     * Gets the value of the secret property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getSecret() {
        return secret;
    }

    /**
     * Sets the value of the secret property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setSecret(1.5.0/docs/api/java/lang/String.html">String value) {
        this.secret = value;
    }

}