package br.com.centralit.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import br.com.centralit.api.framework.json.ViewsEcm; import br.com.centralit.api.model.ReabrirProcesso; import br.com.centralit.api.service.ReabrirProcessoService; import br.com.centralit.framework.controller.GenericController; /** *

* *

Company: Central IT - Governança Corporativa -

* *

Title:

* *

Description:

* *

Iniciativa(s): NUMERO_INICIATIVA

* *

Regra(s) de negócio: NUMERO_REGRA_DE_NEGOCIO

* * @since 01/04/2016 - 19:06:06 * * @version 1.0.0 * * @author maycon.silva * */ @Controller @RequestMapping("/rest/reabrirProcesso") public class ReabrirProcessoController extends GenericController { /** Atributo reabrirProcessoDao. */ private ReabrirProcessoService reabrirProcessoService; /** * Responsável pela criação de novas instâncias desta classe. * * @param reabrirProcessoService */ @Autowired public ReabrirProcessoController( ReabrirProcessoService reabrirProcessoService ) { super(reabrirProcessoService); this.reabrirProcessoService = reabrirProcessoService; } @Override public Class getEditView() { return ViewsEcm.ReabrirProcessoEditView.class; } @Override public Class getListView() { return ViewsEcm.ReabrirProcessoListView.class; } }