Subversion Repositories SmartDukaan

Rev

Rev 21987 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22924 ashik.ali 1
package com.spice.profitmandi.common.model;
21987 kshitij.so 2
 
3
public class ValidateCart {
4
 
5
	private String method;
6
	private String redirectUrl;
7
	private boolean result;
8
	private String params;
9
 
10
	public ValidateCart(String method, String redirectUrl, boolean result, String params) {
11
		super();
12
		this.method = method;
13
		this.redirectUrl = redirectUrl;
14
		this.result = result;
15
		this.params = params;
16
	}
17
 
18
	public String getMethod() {
19
		return method;
20
	}
21
	public void setMethod(String method) {
22
		this.method = method;
23
	}
24
	public String getRedirectUrl() {
25
		return redirectUrl;
26
	}
27
	public void setRedirectUrl(String redirectUrl) {
28
		this.redirectUrl = redirectUrl;
29
	}
30
	public boolean isResult() {
31
		return result;
32
	}
33
	public void setResult(boolean result) {
34
		this.result = result;
35
	}
36
	public String getParams() {
37
		return params;
38
	}
39
	public void setParams(String params) {
40
		this.params = params;
41
	}
42
 
43
}