Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
106 espaco 1
package br.com.ec.domain.model.tipos;
2
 
3
public enum TipoRelatorioSistema {
4
 
5
        NFCE(1, "NFCE");
6
 
7
        private Integer identificador;
8
        private String descricao;
9
 
10
        private TipoRelatorioSistema(Integer identificador, String descricao) {
11
                this.identificador = identificador;
12
                this.descricao = descricao;
13
        }
14
 
15
        public int getIdentificador() {
16
                return identificador;
17
        }
18
 
19
        public String getDescricao() {
20
                return descricao;
21
        }
22
 
23
}