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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							605 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							605 B
						
					
					
				/*
 | 
						|
 * GlobalConstant.java
 | 
						|
 *
 | 
						|
 * Created on 27 de Abril de 2005, 18:20
 | 
						|
 */
 | 
						|
 | 
						|
package siprp.pagina;
 | 
						|
 | 
						|
/**
 | 
						|
 *
 | 
						|
 * @author  fpalma
 | 
						|
 */
 | 
						|
public interface GlobalConstants
 | 
						|
{
 | 
						|
	 // BD
 | 
						|
    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 = "";
 | 
						|
    public static final String bdDriver = "org.postgresql.Driver";
 | 
						|
    public static final String bdUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp";
 | 
						|
	
 | 
						|
	public static final String DEFAULT_EMAIL = "fpalma@evolute.pt";
 | 
						|
}
 |