blob: f142a4fd02f338760507db16f038111b51d7e511 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package derms.replica3;
public class Constants {
public static final String MONTREAL = "MTL";
public static final String QUEBEC = "QUE";
public static final String SHERBROOKE = "SHE";
//Address for Servers
// public static final String MONTREAL_ADDRESS = "http://localhost:8085/service/" + Constants.MONTREAL;
// public static final String QUEBEC_ADDRESS = "http://localhost:8090/service/" + Constants.QUEBEC;
// public static final String SHERBROOKE_ADDRESS = "http://localhost:8091/service/" + Constants.SHERBROOKE;
//
// //WSDL URLS
// public static final String MONTREAL_WSDL_URL = Constants.MONTREAL_ADDRESS + "?wsdl";
// public static final String QUEBEC_WSDL_URL = Constants.QUEBEC_ADDRESS + "?wsdl";
// public static final String SHERBROOKE_WSDL_URL = Constants.SHERBROOKE_ADDRESS + "?wsdl";
}
|