Subversion Repositories SmartDukaan

Rev

Rev 6060 | Rev 6065 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6060 Rev 6062
Line 37... Line 37...
37
	private static String errorUrl;
37
	private static String errorUrl;
38
 
38
 
39
	/**
39
	/**
40
	 * The secret key used to decode RC4 encoded data.
40
	 * The secret key used to decode RC4 encoded data.
41
	 */
41
	 */
42
	private static String accountKey = "C0Dr8m";
42
	private static String accountKey;
43
 
43
 
44
	private static String salt = "3sf0jURk";
44
	private static String salt;
45
	
45
	
46
	private String redirectUrl;
46
	private String redirectUrl;
47
 
47
 
48
	static{
48
	static{
49
		try {
49
		try {
50
			successUrl = ConfigClient.getClient().get("ebs_success_url");
50
			successUrl = ConfigClient.getClient().get("ebs_success_url");
51
			errorUrl = ConfigClient.getClient().get("ebs_error_url");
51
			errorUrl = ConfigClient.getClient().get("ebs_error_url");
52
			accountKey = ConfigClient.getClient().get("payu_secret_key");
52
			accountKey = ConfigClient.getClient().get("payu_account_id");
-
 
53
			salt = ConfigClient.getClient().get("payu_secret_key");
53
		} catch (ConfigException e) {
54
		} catch (ConfigException e) {
54
			log.error("Unable to get success and error usr info from config server.");
55
			log.error("Unable to get success and error usr info from config server.");
55
		}
56
		}
56
	}
57
	}
57
 
58