Subversion Repositories bacoAlunos

Rev

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


package pt.ipportalegre.siges.web.services;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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="codigo" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         &lt;element name="codigoInstituicao" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         &lt;element name="ano" 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 = {
    "codigo",
    "codigoInstituicao",
    "ano"
})
@XmlRootElement(name = "getAlunoInscrito")
public class GetAlunoInscrito {

    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal codigo;
    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal codigoInstituicao;
    protected 1.5.0/docs/api/java/lang/String.html">String ano;

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

    public 1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal getCodigo() {
        return codigo;
    }

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

    public void setCodigo(1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal value) {
        this.codigo = value;
    }

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

    public 1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal getCodigoInstituicao() {
        return codigoInstituicao;
    }

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

    public void setCodigoInstituicao(1.5.0/docs/api/java/math/BigDecimal.html">BigDecimal value) {
        this.codigoInstituicao = value;
    }

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

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

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

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

}