//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.05.16 às 03:29:54 PM BRT
//

package br.ufsc.esus.fichaatividadecoletiva;

import br.ufsc.esus.participanterowitem.ParticipanteRowItemTransport;
import br.ufsc.esus.profissionalcborowitem.ProfissionalCboRowItemTransport;
import br.ufsc.esus.unicalotacaoheader.UnicaLotacaoHeaderTransport;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;

/**
 * <p>Classe Java de fichaAtividadeColetivaTransport complex type.
 *
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
 *
 * <pre>
 * &lt;complexType name="fichaAtividadeColetivaTransport">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="uuidFicha" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="outraLocalidade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="inep" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         &lt;element name="numParticipantes" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="numAvaliacoesAlteradas" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="profissionais" type="{http://esus.ufsc.br/profissionalcborowitem}profissionalCboRowItemTransport" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="atividadeTipo" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         &lt;element name="temasParaReuniao" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="publicoAlvo" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="participantes" type="{http://esus.ufsc.br/participanterowitem}participanteRowItemTransport" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="tbCdsOrigem" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="cnesLocalAtividade" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="procedimento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="turno" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         &lt;element name="pseEducacao" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         &lt;element name="pseSaude" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         &lt;element name="headerTransport" type="{http://esus.ufsc.br/unicalotacaoheader}unicaLotacaoHeaderTransport" minOccurs="0"/>
 *         &lt;element name="temasParaSaude" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="praticasEmSaude" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fichaAtividadeColetivaTransport", propOrder = {
  "uuidFicha",
  "outraLocalidade",
  "inep",
  "numParticipantes",
  "numAvaliacoesAlteradas",
  "profissionais",
  "atividadeTipo",
  "temasParaReuniao",
  "publicoAlvo",
  "participantes",
  "tbCdsOrigem",
  "cnesLocalAtividade",
  "procedimento",
  "turno",
  "pseEducacao",
  "pseSaude",
  "headerTransport",
  "temasParaSaude",
  "praticasEmSaude"
})
public class FichaAtividadeColetivaTransport {

  @XmlElement(required = true)
  protected String uuidFicha;
  protected String outraLocalidade;
  protected Long inep;
  protected Integer numParticipantes;
  protected Integer numAvaliacoesAlteradas;
  protected List<ProfissionalCboRowItemTransport> profissionais;
  protected Long atividadeTipo;
  @XmlElement(type = Long.class)
  protected List<Long> temasParaReuniao;
  @XmlElement(type = Long.class)
  protected List<Long> publicoAlvo;
  protected List<ParticipanteRowItemTransport> participantes;
  protected Integer tbCdsOrigem;
  protected String cnesLocalAtividade;
  protected String procedimento;
  protected Long turno;
  protected Boolean pseEducacao;
  protected Boolean pseSaude;
  protected UnicaLotacaoHeaderTransport headerTransport;
  @XmlElement(type = Long.class)
  protected List<Long> temasParaSaude;
  @XmlElement(type = Long.class)
  protected List<Long> praticasEmSaude;

  /**
   * Obtém o valor da propriedade uuidFicha.
   *
   * @return possible object is
   * {@link String }
   */
  public String getUuidFicha() {
    return uuidFicha;
  }

  /**
   * Define o valor da propriedade uuidFicha.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setUuidFicha(String value) {
    this.uuidFicha = value;
  }

  /**
   * Obtém o valor da propriedade outraLocalidade.
   *
   * @return possible object is
   * {@link String }
   */
  public String getOutraLocalidade() {
    return outraLocalidade;
  }

  /**
   * Define o valor da propriedade outraLocalidade.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setOutraLocalidade(String value) {
    this.outraLocalidade = value;
  }

  /**
   * Obtém o valor da propriedade inep.
   *
   * @return possible object is
   * {@link Long }
   */
  public Long getInep() {
    return inep;
  }

  /**
   * Define o valor da propriedade inep.
   *
   * @param value allowed object is
   *              {@link Long }
   */
  public void setInep(Long value) {
    this.inep = value;
  }

  /**
   * Obtém o valor da propriedade numParticipantes.
   *
   * @return possible object is
   * {@link Integer }
   */
  public Integer getNumParticipantes() {
    return numParticipantes;
  }

  /**
   * Define o valor da propriedade numParticipantes.
   *
   * @param value allowed object is
   *              {@link Integer }
   */
  public void setNumParticipantes(Integer value) {
    this.numParticipantes = value;
  }

  /**
   * Obtém o valor da propriedade numAvaliacoesAlteradas.
   *
   * @return possible object is
   * {@link Integer }
   */
  public Integer getNumAvaliacoesAlteradas() {
    return numAvaliacoesAlteradas;
  }

  /**
   * Define o valor da propriedade numAvaliacoesAlteradas.
   *
   * @param value allowed object is
   *              {@link Integer }
   */
  public void setNumAvaliacoesAlteradas(Integer value) {
    this.numAvaliacoesAlteradas = value;
  }

  /**
   * Gets the value of the profissionais property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the profissionais property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getProfissionais().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link ProfissionalCboRowItemTransport }
   */
  public List<ProfissionalCboRowItemTransport> getProfissionais() {
    if (profissionais == null) {
      profissionais = new ArrayList<>();
    }
    return this.profissionais;
  }

  /**
   * Obtém o valor da propriedade atividadeTipo.
   *
   * @return possible object is
   * {@link Long }
   */
  public Long getAtividadeTipo() {
    return atividadeTipo;
  }

  /**
   * Define o valor da propriedade atividadeTipo.
   *
   * @param value allowed object is
   *              {@link Long }
   */
  public void setAtividadeTipo(Long value) {
    this.atividadeTipo = value;
  }

  /**
   * Gets the value of the temasParaReuniao property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the temasParaReuniao property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getTemasParaReuniao().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link Long }
   */
  public List<Long> getTemasParaReuniao() {
    if (temasParaReuniao == null) {
      temasParaReuniao = new ArrayList<>();
    }
    return this.temasParaReuniao;
  }

  /**
   * Gets the value of the publicoAlvo property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the publicoAlvo property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getPublicoAlvo().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link Long }
   */
  public List<Long> getPublicoAlvo() {
    if (publicoAlvo == null) {
      publicoAlvo = new ArrayList<>();
    }
    return this.publicoAlvo;
  }

  /**
   * Gets the value of the participantes property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the participantes property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getParticipantes().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link ParticipanteRowItemTransport }
   */
  public List<ParticipanteRowItemTransport> getParticipantes() {
    if (participantes == null) {
      participantes = new ArrayList<>();
    }
    return this.participantes;
  }

  /**
   * Obtém o valor da propriedade tbCdsOrigem.
   *
   * @return possible object is
   * {@link Integer }
   */
  public Integer getTbCdsOrigem() {
    return tbCdsOrigem;
  }

  /**
   * Define o valor da propriedade tbCdsOrigem.
   *
   * @param value allowed object is
   *              {@link Integer }
   */
  public void setTbCdsOrigem(Integer value) {
    this.tbCdsOrigem = value;
  }

  /**
   * Obtém o valor da propriedade cnesLocalAtividade.
   *
   * @return possible object is
   * {@link String }
   */
  public String getCnesLocalAtividade() {
    return cnesLocalAtividade;
  }

  /**
   * Define o valor da propriedade cnesLocalAtividade.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setCnesLocalAtividade(String value) {
    this.cnesLocalAtividade = value;
  }

  /**
   * Obtém o valor da propriedade procedimento.
   *
   * @return possible object is
   * {@link String }
   */
  public String getProcedimento() {
    return procedimento;
  }

  /**
   * Define o valor da propriedade procedimento.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setProcedimento(String value) {
    this.procedimento = value;
  }

  /**
   * Obtém o valor da propriedade turno.
   *
   * @return possible object is
   * {@link Long }
   */
  public Long getTurno() {
    return turno;
  }

  /**
   * Define o valor da propriedade turno.
   *
   * @param value allowed object is
   *              {@link Long }
   */
  public void setTurno(Long value) {
    this.turno = value;
  }

  /**
   * Obtém o valor da propriedade educacao.
   *
   * @return possible object is
   * {@link Boolean }
   */
  public Boolean getPseEducacao() {
    return pseEducacao;
  }

  /**
   * Define o valor da propriedade educacao.
   *
   * @param value allowed object is
   *              {@link Boolean }
   */
  public void setPseEducacao(Boolean value) {
    this.pseEducacao = value;
  }

  /**
   * Obtém o valor da propriedade saude.
   *
   * @return possible object is
   * {@link Boolean }
   */
  public Boolean getPseSaude() {
    return pseSaude;
  }

  /**
   * Define o valor da propriedade saude.
   *
   * @param value allowed object is
   *              {@link Boolean }
   */
  public void setPseSaude(Boolean value) {
    this.pseSaude = value;
  }

  /**
   * Obtém o valor da propriedade headerTransport.
   *
   * @return possible object is
   * {@link UnicaLotacaoHeaderTransport }
   */
  public UnicaLotacaoHeaderTransport getHeaderTransport() {
    return headerTransport;
  }

  /**
   * Define o valor da propriedade headerTransport.
   *
   * @param value allowed object is
   *              {@link UnicaLotacaoHeaderTransport }
   */
  public void setHeaderTransport(UnicaLotacaoHeaderTransport value) {
    this.headerTransport = value;
  }

  /**
   * Gets the value of the temasParaSaude property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the temasParaSaude property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getTemasParaSaude().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link Long }
   */
  public List<Long> getTemasParaSaude() {
    if (temasParaSaude == null) {
      temasParaSaude = new ArrayList<>();
    }
    return this.temasParaSaude;
  }

  /**
   * Gets the value of the praticasEmSaude property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the praticasEmSaude property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getPraticasEmSaude().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link Long }
   */
  public List<Long> getPraticasEmSaude() {
    if (praticasEmSaude == null) {
      praticasEmSaude = new ArrayList<>();
    }
    return this.praticasEmSaude;
  }

}
