/* * MedicinaConstants.java * * Created on 6 de Julho de 2006, 15:22 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package siprp.medicina; /** * * @author fpalma */ public interface MedicinaConstants { public static final int MOTIVO_ADMISSAO = 1; public static final Integer MOTIVO_ADMISSAO_INTEGER = new Integer( MOTIVO_ADMISSAO ); public static final int MOTIVO_PERIODICO = 2; public static final Integer MOTIVO_PERIODICO_INTEGER = new Integer( MOTIVO_PERIODICO ); public static final int MOTIVO_OCASIONAL = 3; public static final Integer MOTIVO_OCASIONAL_INTEGER = new Integer( MOTIVO_OCASIONAL ); public static final int MOTIVO_PERIODICO_INICIAL = 5; public static final Integer MOTIVO_PERIODICO_INICIAL_INTEGER = new Integer( MOTIVO_PERIODICO_INICIAL ); }