1 package ecar.bean;
2
3 import java.io.Serializable;
4
5
6 /**
7 * Bean dos indicativos do item do web service.<br>
8 * Estes indicativos são os Níveis de Planejamento/Fases.
9 *
10 * @author aleixo
11 * @version 0.1 - 09/04/2007
12 */
13
14 public class IndicativoItemWebServiceBean implements Serializable {
15
16 /**
17 * Variável da superclasse Serializable.
18 */
19 private static final long serialVersionUID = 4562696001506498529L;
20
21 private Long codIndicativo;
22 private String descricaoIndicativo;
23
24 /**
25 * Construtor padrão
26 * @author aleixo
27 * @version 0.1 - 09/04/2007
28 */
29 public IndicativoItemWebServiceBean(){
30 }
31
32 /**
33 * Construtor completo.
34 *
35 * @author aleixo
36 * @version 0.1 - 09/04/2007
37 * @param codIndicativo
38 * @param descricaoIndicativo
39 */
40 public IndicativoItemWebServiceBean(Long codIndicativo, String descricaoIndicativo) {
41 this.codIndicativo = codIndicativo;
42 this.descricaoIndicativo = descricaoIndicativo;
43 }
44
45 /**
46 * Retorna o valor de codIndicativo
47 * @author aleixo
48 * @version 0.1 - 09/04/2007
49 * @return Long
50 */
51 public Long getCodIndicativo() {
52 return codIndicativo;
53 }
54
55 /**
56 * Define um valor para codIndicativo.
57 * @author aleixo
58 * @version 0.1 - 09/04/2007
59 * @param Long codIndicativo
60 */
61 public void setCodIndicativo(Long codIndicativo) {
62 this.codIndicativo = codIndicativo;
63 }
64
65 /**
66 * Retorna o valor de descricaoIndicativo
67 * @author aleixo
68 * @version 0.1 - 09/04/2007
69 * @return String
70 */
71 public String getDescricaoIndicativo() {
72 return descricaoIndicativo;
73 }
74
75 /**
76 * Define um valor para descricaoIndicativo.
77 * @author aleixo
78 * @version 0.1 - 09/04/2007
79 * @param String descricaoIndicativo
80 */
81 public void setDescricaoIndicativo(String descricaoIndicativo) {
82 this.descricaoIndicativo = descricaoIndicativo;
83 }
84 }