Examples of ArtigoConferenciaDAO


Examples of in980.rgms.persistence.ArtigoConferenciaDAO

      , interceptorRefs = { @InterceptorRef("autenticacao"), @InterceptorRef("defaultStack")}
  //#endif
  )
  public String delete() {
    try {
      new ArtigoConferenciaDAO().excluir(artigoConferencia);

    } catch (Exception e) {
      e.printStackTrace();

    }
View Full Code Here

Examples of in980.rgms.persistence.ArtigoConferenciaDAO

  )
  public String insert() {
    try {
      artigoConferencia.validateToPersist();
      if (artigoConferencia.getID() == null) {
        new ArtigoConferenciaDAO().inserir(artigoConferencia);
      } else {
        new ArtigoConferenciaDAO().atualizar(artigoConferencia);
      }
      setMsg("Artigo inserido com sucesso");
    } catch (Exception e) {
      e.printStackTrace();
      setMsg("Erro ao inserir o Artigo:" + e.getMessage());
View Full Code Here

Examples of in980.rgms.persistence.ArtigoConferenciaDAO

  //#endif
  )
  public String mostrarArtigoConferencia() {
    try {
      if (artigoConferencia != null && artigoConferencia.getID() != null) {
        artigoConferencia = new ArtigoConferenciaDAO()
            .buscaPeloId(artigoConferencia.getID());
      }
      //#ifdef informacoesContextuais
      else{
        artigoConferencia = new ArtigoConferencia();
View Full Code Here

Examples of in980.rgms.persistence.ArtigoConferenciaDAO

      @Result(location = "/lista_publicacao.jsp", name = "success")
      } 
  )
  public String listAll() {
    publicacoes = new ArtigoRevistaDAO().listaTodos();
    publicacoes.addAll(new ArtigoConferenciaDAO().listaTodos());
    publicacoes.addAll(new DissertacaoMestradoDAO().listaTodos());
    publicacoes.addAll(new TeseDoutoradoDAO().listaTodos());
    return "success";
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.