Subversion Repositories bacoAlunos

Rev

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="getSumariosResult" type="{http://www.ipportalegre.pt/siges/web/services}ArrayOfAula" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "getSumariosResult"
})
@XmlRootElement(name = "getSumariosResponse")
public class GetSumariosResponse {

    protected ArrayOfAula getSumariosResult;

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

    public ArrayOfAula getGetSumariosResult() {
        return getSumariosResult;
    }

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

    public void setGetSumariosResult(ArrayOfAula value) {
        this.getSumariosResult = value;
    }

}