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.
		
		
		
		
		
			
		
			
				
					
					
						
							66 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
	
	
							66 lines
						
					
					
						
							2.5 KiB
						
					
					
				/*
 | 
						|
 * GlobalConstant.java
 | 
						|
 *
 | 
						|
 * Created on 27 de Abril de 2005, 18:20
 | 
						|
 */
 | 
						|
 | 
						|
package com.evolute.siprp.pagina;
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 *
 | 
						|
 * @author  fpalma
 | 
						|
 */
 | 
						|
public interface GlobalConstants
 | 
						|
{
 | 
						|
//	 // BD
 | 
						|
//    public static final String bdHost = "localhost";
 | 
						|
////	public static final String bdHost = "127.0.0.1";
 | 
						|
//    public static final String bdPort = "5432";
 | 
						|
//    public static final String bdUsername = "postgres";
 | 
						|
//    public static final String bdPassword = "";
 | 
						|
//    public static final String bdDriver = "org.postgresql.Driver";
 | 
						|
//    public static final String bdUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp";
 | 
						|
//	
 | 
						|
//	public static final String bdLocalHost = "localhost";
 | 
						|
////	public static final String bdLocalHost = "127.0.0.1";
 | 
						|
//    public static final String bdLocalPort = "5432";
 | 
						|
//    public static final String bdLocalUsername = "postgres";
 | 
						|
//    public static final String bdLocalPassword = "";
 | 
						|
//    public static final String bdLocalDriver = "org.postgresql.Driver";
 | 
						|
//    public static final String bdLocalUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp_local_3";
 | 
						|
	
 | 
						|
	 // BD
 | 
						|
    public static final String bdHost = "www.evolute.pt";
 | 
						|
//	public static final String bdHost = "127.0.0.1";
 | 
						|
    public static final String bdPort = "5436";
 | 
						|
    public static final String bdUsername = "siprp";
 | 
						|
    public static final String bdPassword = "rg2h-opksiprp";
 | 
						|
    public static final String bdDriver = "org.postgresql.Driver";
 | 
						|
    public static final String bdUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp";
 | 
						|
	
 | 
						|
	public static final String bdLocalHost = "www.evolute.pt";
 | 
						|
//	public static final String bdLocalHost = "127.0.0.1";
 | 
						|
    public static final String bdLocalPort = "5436";
 | 
						|
    public static final String bdLocalUsername = "siprp";
 | 
						|
    public static final String bdLocalPassword = "rg2h-opksiprp";
 | 
						|
    public static final String bdLocalDriver = "org.postgresql.Driver";
 | 
						|
    public static final String bdLocalUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp_local_3";
 | 
						|
	
 | 
						|
	public static final String DEFAULT_EMAIL = "geral@siprp.pt";
 | 
						|
	
 | 
						|
	public static final int TIPO_MARCACAO_EXAMES = 0;
 | 
						|
	public static final int TIPO_MARCACAO_CONSULTA = 1;
 | 
						|
	
 | 
						|
	public static final int ESTADO_POR_REALIZAR = 0;
 | 
						|
	public static final int ESTADO_PARCIALMENTE_REALIZADO = 1;
 | 
						|
	public static final int ESTADO_REALIZADO = 2;
 | 
						|
	public static final int ESTADO_POR_AGENDAR = 7;
 | 
						|
 | 
						|
 | 
						|
	public static final int MOTIVO_ADMISSAO = 1;
 | 
						|
	public static final int MOTIVO_PERIODICO = 2;
 | 
						|
	public static final int MOTIVO_OCASIONAL = 3;
 | 
						|
	public static final int MOTIVO_PERIODICO_INICIAL = 5;
 | 
						|
}
 |