Subversion Repositories SmartDukaan

Rev

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

Rev 6806 Rev 6808
Line 3... Line 3...
3
import java.security.NoSuchAlgorithmException;
3
import java.security.NoSuchAlgorithmException;
4
import java.util.List;
4
import java.util.List;
5
import java.util.Map;
5
import java.util.Map;
6
 
6
 
7
import org.apache.log4j.Logger;
7
import org.apache.log4j.Logger;
8
import org.apache.struts2.convention.annotation.InterceptorRef;
-
 
9
import org.apache.struts2.convention.annotation.InterceptorRefs;
-
 
10
import org.apache.struts2.convention.annotation.Result;
8
import org.apache.struts2.convention.annotation.Result;
11
import org.apache.struts2.convention.annotation.Results;
9
import org.apache.struts2.convention.annotation.Results;
12
 
10
 
13
import com.opensymphony.xwork2.ValidationAwareSupport;
11
import com.opensymphony.xwork2.ValidationAwareSupport;
14
 
12
 
Line 22... Line 20...
22
import in.shop2020.thrift.clients.PaymentClient;
20
import in.shop2020.thrift.clients.PaymentClient;
23
import in.shop2020.thrift.clients.TransactionClient;
21
import in.shop2020.thrift.clients.TransactionClient;
24
import in.shop2020.thrift.clients.config.ConfigClient;
22
import in.shop2020.thrift.clients.config.ConfigClient;
25
 
23
 
26
@SuppressWarnings("serial")
24
@SuppressWarnings("serial")
27
@InterceptorRefs({
-
 
28
    @InterceptorRef("myDefault"),
-
 
29
    @InterceptorRef("login")
-
 
30
})
25
 
31
@Results({
26
@Results({
32
	@Result(name="shipping-redirect", type="redirectAction", 
27
	@Result(name="shipping-redirect", type="redirectAction", 
33
    		params = {"actionName" , "shipping"})
28
    		params = {"actionName" , "shipping"})
34
})
29
})
35
public class InnovitiPayController extends ValidationAwareSupport{
30
public class InnovitiPayController extends ValidationAwareSupport{