Subversion Repositories SmartDukaan

Rev

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

Rev 4600 Rev 4956
Line 55... Line 55...
55
 * @description HotspotReconciliationController handles requests to generate a reconciliation
55
 * @description HotspotReconciliationController handles requests to generate a reconciliation
56
 * report in XLS format for all the transactions with HotSpot within a given date range.
56
 * report in XLS format for all the transactions with HotSpot within a given date range.
57
 * 
57
 * 
58
 */
58
 */
59
 
59
 
60
//@InterceptorRefs({
60
@InterceptorRefs({
61
//    @InterceptorRef("defaultStack"),
61
    @InterceptorRef("defaultStack"),
62
//    @InterceptorRef("login")
62
    @InterceptorRef("login")
63
//})
63
})
64
//@Results({
-
 
65
//    @Result(name="authfail", type="redirectAction", params = {"actionName" , "reports"})
-
 
66
//})
-
 
67
@Results({
64
@Results({
68
	@Result(name="report1", location="my-report.vm")
65
    @Result(name="authfail", type="redirectAction", params = {"actionName" , "reports"})
69
})
66
})
70
public class HotspotReconciliationController implements ServletResponseAware, ServletRequestAware, ServletContextAware {
67
public class HotspotReconciliationController implements ServletResponseAware, ServletRequestAware, ServletContextAware {
71
 
68
 
72
    private static Logger logger = LoggerFactory.getLogger(HotspotReconciliationController.class);
69
    private static Logger logger = LoggerFactory.getLogger(HotspotReconciliationController.class);
73
    
70