forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
874 B
31 lines
874 B
/*
|
|
* ProcessoConstants.java
|
|
*
|
|
* Created on May 14, 2007, 10:08 AM
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.medicina.processo;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public interface ProcessoConstants
|
|
{
|
|
public static final int TIPO_ECDS = 0;
|
|
public static final int TIPO_CONSULTA = 1;
|
|
public static final int TIPO_FICHA_APTIDAO = 2;
|
|
|
|
public static final String PROCESSO_ABERTO_CODE = "a";
|
|
public static final String PROCESSO_FECHADO_CODE = "f";
|
|
public static final String PROCESSO_CANCELADO_CODE = "c";
|
|
|
|
public static final String PROCESSO_ABERTO_DESCRIPTION = "Aberto";
|
|
public static final String PROCESSO_FECHADO_DESCRIPTION = "Fechado";
|
|
public static final String PROCESSO_CANCELADO_DESCRIPTION = "Cancelado";
|
|
public static final String PROCESSO_POR_ABRIR_DESCRIPTION = "Por Abrir";
|
|
}
|