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.
32 lines
1002 B
32 lines
1002 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 bdLocalHost = "127.0.0.1";
|
|
public static final String bdLocalPort = "5436";
|
|
public static final String bdLocalUsername = "siprp";
|
|
public static final String bdLocalPassword = "";
|
|
public static final String bdLocalDriver = "org.postgresql.Driver";
|
|
public static final String bdLocalUrl = "jdbc:postgresql://" + bdHost + ":" + bdPort + "/siprp_local";
|
|
|
|
public static final String DEFAULT_EMAIL = "geral@siprp.pt";
|
|
}
|