Package in980.rgms.presentation.actions

Examples of in980.rgms.presentation.actions.LinhaPesquisaAction


  @Action(value = "listarTodasPublicacoes", results = {
      @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


      , interceptorRefs = { @InterceptorRef("autenticacao"), @InterceptorRef("defaultStack")}
      //#endif
  )
  public String delete() {
    try {
      new DissertacaoMestradoDAO().excluir(dissertacaoMestrado);
     
    } catch (Exception e) {
      e.printStackTrace();
     
    }
View Full Code Here

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

    //#endif
  )
  public String mostrarDissertacaoMestrado(){
    try {
      if(dissertacaoMestrado != null && dissertacaoMestrado.getID() != null){
        dissertacaoMestrado = new DissertacaoMestradoDAO().buscaPeloId(dissertacaoMestrado.getID());
      }
      //#ifdef informacoesContextuais
      else{
        dissertacaoMestrado = new DissertacaoMestrado();
        super.loadContextualInfo(dissertacaoMestrado);
View Full Code Here

     
  )
  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

  @Override
  @Action(value = "excluirLinhaPesquisa", results = { @Result(name = "success", type = "redirectAction", params = {
      "actionName", "listarTodasLinhasPesquisa" }) })
  public String delete() {
    try {
      new LinhaPesquisaDAO().excluir(linhaPesquisa);
      setMsg("Membro : " + linhaPesquisa.getDescricao()
          + " excluido com sucesso.");
    } catch (Exception e) {
      e.printStackTrace();
      setMsg("Erro ao excluir a Linha de Pesquisa: " + e.getMessage());
View Full Code Here

  @Action(value = "inserirLinhaPesquisa", results = { @Result(location = "/cadastro_linha_pesquisa.jsp", name = "success") })
  public String insert() {
    try {
      linhaPesquisa.validateToPersist();
      if (linhaPesquisa != null && linhaPesquisa.getID() != null) {
        new LinhaPesquisaDAO().atualizar(linhaPesquisa);
      } else {
        new LinhaPesquisaDAO().inserir(linhaPesquisa);
      }
      setMsg("Linha de Pesquisa Inserida Com Sucesso");
    } catch (Exception e) {
      e.printStackTrace();
      setMsg("Erro ao Cadastrar a Linha de Pesquisa: " + e.getMessage());
View Full Code Here

  }

  @Action(value = "buscarLinhasPesquisa", results = { @Result(location = "/lista_linhas_pesquisas.jsp", name = "success") })
  public String searchByDescription() {
    try {
      linhasPesquisa = new LinhaPesquisaDAO().buscar(linhaPesquisa);
    } catch (Exception e) {
      e.printStackTrace();
    }
    return "success";
  }
View Full Code Here

  }

  @Override
  @Action(value = "listarTodasLinhasPesquisa", results = { @Result(location = "/lista_linha_pesquisa.jsp", name = "success") })
  public String listAll() {
    linhasPesquisa = new LinhaPesquisaDAO().listaTodos();
    return "success";
  }
View Full Code Here

  @Action(value = "mostrarLinhaPesquisa", results = { @Result(location = "/cadastro_linha_pesquisa.jsp", name = "success") })
  public String mostrarLinhaPesquisa() {
    try {
      if (linhaPesquisa != null && linhaPesquisa.getID() != null) {
        linhaPesquisa = new LinhaPesquisaDAO()
            .buscaPeloId(linhaPesquisa.getID());
      }
    } catch (Exception e) {
      e.printStackTrace();
      setMsg("Linha de Pesquisa solicitada nao existe: ");
View Full Code Here

TOP

Related Classes of in980.rgms.presentation.actions.LinhaPesquisaAction

Copyright © 2018 www.massapicom. 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.