Subversion Repositories SmartDukaan

Rev

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

Rev 18634 Rev 20278
Line 23... Line 23...
23
	public static final String COD = "3000";
23
	public static final String COD = "3000";
24
	public static final String COUPON = "3001";
24
	public static final String COUPON = "3001";
25
	public static final String CAPITAL_FLOAT = "456789";
25
	public static final String CAPITAL_FLOAT = "456789";
26
	
26
	
27
	public static final String PAYMENT_METHOD = "payMethod";
27
	public static final String PAYMENT_METHOD = "payMethod";
-
 
28
	public static final String PAYMENT_TYPE = "payType";
28
	
29
	
29
	public static final String STATUS = "status";
30
	public static final String STATUS = "status";
30
	public static final String GATEWAY_STATUS = "gatewayTxnStatus";
31
	public static final String GATEWAY_STATUS = "gatewayTxnStatus";
31
	public static final String ERR_CODE = "errorCode";
32
	public static final String ERR_CODE = "errorCode";
32
	public static final String ERROR = "error";
33
	public static final String ERROR = "error";
Line 48... Line 49...
48
			this.code = code;
49
			this.code = code;
49
			this.message = message;
50
			this.message = message;
50
		}
51
		}
51
	}
52
	}
52
	
53
	
53
	public long createPayment(long userId, long txnId, String paymentOption, int gatewayId);
54
	public long createPayment(long userId, long txnId, String paymentOption, int gatewayId, String paymentType);
54
}
55
}