Subversion Repositories SmartDukaan

Rev

Rev 801 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 801 Rev 832
Line 9... Line 9...
9
import in.shop2020.serving.utils.Utils;
9
import in.shop2020.serving.utils.Utils;
10
import in.shop2020.thrift.clients.UserContextServiceClient;
10
import in.shop2020.thrift.clients.UserContextServiceClient;
11
 
11
 
12
import org.apache.juli.logging.Log;
12
import org.apache.juli.logging.Log;
13
import org.apache.juli.logging.LogFactory;
13
import org.apache.juli.logging.LogFactory;
-
 
14
import org.apache.log4j.Logger;
14
import org.apache.struts2.convention.annotation.Result;
15
import org.apache.struts2.convention.annotation.Result;
15
import org.apache.struts2.interceptor.ParameterAware;
16
import org.apache.struts2.interceptor.ParameterAware;
16
import org.apache.thrift.TException;
17
import org.apache.thrift.TException;
17
 
18
 
18
@Result(name="redirect", type="redirectAction", 
19
@Result(name="redirect", type="redirectAction", 
19
   		params = {"actionName" , "cart"})
20
   		params = {"actionName" , "cart"})
20
public class CartController extends BaseController implements ParameterAware{
21
public class CartController extends BaseController implements ParameterAware{
21
	
22
	
22
	private static final long serialVersionUID = 1L;
23
	private static final long serialVersionUID = 1L;
23
	private static Log log = LogFactory.getLog(CartController.class);
24
	private static Logger log = Logger.getLogger(Class.class);	
24
	Map<String, String[]> reqparams = null;
25
	Map<String, String[]> reqparams = null;
25
	
26
	
26
	
27
	
27
	private String errorMsg = "";
28
	private String errorMsg = "";
28
	
29