InteressadoDocumentoController.java
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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.model.DocumentoGed;
import br.com.centralit.api.model.InteressadoDocumento;
import br.com.centralit.api.service.InteressadoDocumentoService;
import br.com.centralit.framework.controller.GenericController;
/**
* <p>
* <img src="http://centralit.com.br/images/logo_central.png">
* </p>
*
* <p>
* <b>Company: </b> Central IT - Governança Corporativa -
* </p>
*
* <p>
* <b>Title: </b>
* </p>
*
* <p>
* <b>Description: </b>
* </p>
*
* <p>
* <b>Iniciativa(s):</b> <a href="LINK_PORTAL">NUMERO_INICIATIVA</a>
* </p>
*
* <p>
* <b>Regra(s) de negócio:</b> <a href="LINK_PORTAL">NUMERO_REGRA_DE_NEGOCIO</a>
* </p>
*
* @since 07/03/2016 - 16:10:27
*
* @version 1.0.0
*
* @author rogerio.costa
*
*/
@Controller
@RequestMapping("/rest/interessadoDocumento")
public class InteressadoDocumentoController extends GenericController<InteressadoDocumento> {
/** Atributo interessadoDocumentoService. */
private InteressadoDocumentoService interessadoDocumentoService;
/**
* Responsável pela criação de novas instâncias desta classe.
*
* @param interessadoDocumentoService
*/
@Autowired
public InteressadoDocumentoController( InteressadoDocumentoService interessadoDocumentoService ) {
super(interessadoDocumentoService);
this.interessadoDocumentoService = interessadoDocumentoService;
}
}