Subversion Repositories SmartDukaan

Rev

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

Rev 1862 Rev 1866
Line 26... Line 26...
26
	 */
26
	 */
27
	private static final long serialVersionUID = 1L;
27
	private static final long serialVersionUID = 1L;
28
	private static Logger log = Logger.getLogger(TrackingInterceptor.class);
28
	private static Logger log = Logger.getLogger(TrackingInterceptor.class);
29
	
29
	
30
	private static final int SECONDS_IN_TWO_MONTHS = 60*60*24*60;
30
	private static final int SECONDS_IN_TWO_MONTHS = 60*60*24*60;
31
	private static final String TRACKER = "tracker";
31
	public static final String TRACKER = "tracker";
32
	
32
	
33
	private String cookieDomain = "";
33
	private String cookieDomain = "";
34
	private Cookie trackerCookie = null;
34
	private Cookie trackerCookie = null;
35
    private Map<String, Cookie> cookiesMap = null;
35
    private Map<String, Cookie> cookiesMap = null;
36
    
36