1 package ecar.enumerator;
2
3 import java.io.Serializable;
4
5 public class TipoOcorrencia implements Serializable {
6
7
8
9
10 private static final long serialVersionUID = 4358792454768094490L;
11
12 private int tipoOcorrencia;
13
14 public static int CONTA_INEXISTENTE = 1;
15 public static int SISTEMA_INVALIDO = 2;
16 public static int TR_INVALIDO = 3;
17 public static int DATA_HORA_CARGA_INEXISTENTE = 4;
18 public static int FLAG_CONTABILIDADE_INVALIDO = 5;
19 public static int QTDE_REGISTROS_INVALIDO = 6;
20 public static int VALOR_INVALIDO = 7;
21 public static int FORMATO_DATA_HORA_INVALIDO = 8;
22 public static int INCONSISTENCIA_QTDE_REGISTROS_INFORMADOS_x_LIDOS = 9;
23 public static int INCONSISTENCIA_TOTALIZACAO = 10;
24 public static int VERSAO_INEXISTENTE_MES_ANO = 11;
25 public static int LAYOUT_INVALIDO = 12;
26 public static int ACAO_INEXISTENTE = 13;
27 public static int RECURSO_INEXISTENTE = 14;
28 public static int FONTE_INEXISTENTE = 15;
29
30 public TipoOcorrencia() {}
31
32 public TipoOcorrencia(int tipoOcorrencia) {
33 this.tipoOcorrencia = tipoOcorrencia;
34 }
35
36 public int getTipoOcorrencia() {
37 return tipoOcorrencia;
38 }
39
40 public void setTipoOcorrencia(int tipoOcorrencia) {
41 this.tipoOcorrencia = tipoOcorrencia;
42 }
43
44 @Override
45 public int hashCode() {
46 final int PRIME = 31;
47 int result = 1;
48 result = PRIME * result + tipoOcorrencia;
49 return result;
50 }
51
52 @Override
53 public boolean equals(Object obj) {
54 if (this == obj)
55 return true;
56 if (obj == null)
57 return false;
58 if (getClass() != obj.getClass())
59 return false;
60 final TipoOcorrencia other = (TipoOcorrencia) obj;
61 if (tipoOcorrencia != other.tipoOcorrencia)
62 return false;
63 return true;
64 }
65
66 }