Subversion Repositories bacoAlunos

Rev

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="codigoInstituicao" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         &lt;element name="cdLectivo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="cdDuracao" 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 = {
    "codigoInstituicao",
    "cdLectivo",
    "cdDuracao"
})
@XmlRootElement(name = "loadParesTurmaCurso")
public class LoadParesTurmaCurso {

    @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 cdLectivo;
    protected 1.5.0/docs/api/java/lang/String.html">String cdDuracao;

    /**
     * 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 cdLectivo property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

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

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

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

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

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

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

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

}