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.
19 lines
305 B
19 lines
305 B
/*
|
|
* AvisoConstants.java
|
|
*
|
|
* Created on 11 de Outubro de 2004, 13:03
|
|
*/
|
|
|
|
package siprp.data;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public interface AvisoConstants
|
|
{
|
|
public static final int TIPO_TRABALHADOR = 0;
|
|
public static final int TIPO_ESTABELECIMENTO = 1;
|
|
public static final int TIPO_EMPRESA = 2;
|
|
}
|