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.
28 lines
1.2 KiB
28 lines
1.2 KiB
package db;
|
|
|
|
public interface DBConstants
|
|
{
|
|
public static final String WEB_URL = "jdbc:postgresql://localhost:5436/siprp";
|
|
// public static final String WEB_URL = "jdbc:postgresql://storage:5432/siprp_20091203";
|
|
public static final String WEB_USER = "postgres";
|
|
// public static final String WEB_PASSWORD = "Typein";
|
|
public static final String WEB_PASSWORD = null;
|
|
|
|
// public static final String WEB_URL = "jdbc:postgresql://www.evolute.pt:5436/siprp";
|
|
// public static final String WEB_USER = "postgres";
|
|
// public static final String WEB_PASSWORD = "Typein";
|
|
|
|
public static final String LOCAL_URL = "jdbc:postgresql://localhost:5436/siprp_local_3";
|
|
// public static final String LOCAL_URL = "jdbc:postgresql://storage:5432/siprp_local_3_20091203";
|
|
public static final String LOCAL_USER = "postgres";
|
|
// public static final String LOCAL_PASSWORD = "Typein";
|
|
public static final String LOCAL_PASSWORD = null;
|
|
|
|
// public static final String LOCAL_URL = "jdbc:postgresql://www.evolute.pt:5436/siprp_local_3";
|
|
// public static final String LOCAL_USER = "postgres";
|
|
// public static final String LOCAL_PASSWORD = "Typein";
|
|
|
|
public static final String WEB_DBMANAGER = "WEB DBMANAGER";
|
|
public static final String LOCAL_DBMANAGER = "LOCAL DBMANAGER";
|
|
}
|