Subversion Repositories SmartDukaan

Rev

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

Rev 9612 Rev 10283
Line 39... Line 39...
39
	protected HttpServletRequest request;
39
	protected HttpServletRequest request;
40
	protected HttpSession session;
40
	protected HttpSession session;
41
	protected String domainName;
41
	protected String domainName;
42
	protected UserSessionInfo userinfo = null;
42
	protected UserSessionInfo userinfo = null;
43
	private static Logger log = Logger.getLogger(Class.class);
43
	private static Logger log = Logger.getLogger(Class.class);
-
 
44
	private String resultJson;
44
 
45
 
45
	protected Cookie userCookie = null;
46
	protected Cookie userCookie = null;
46
 
47
 
47
	protected Map<String, String> htmlSnippets;
48
	protected Map<String, String> htmlSnippets;
48
 
49
 
Line 122... Line 123...
122
				cookieVal = desEncrypter.decrypt(cookieVal);
123
				cookieVal = desEncrypter.decrypt(cookieVal);
123
			}
124
			}
124
		}
125
		}
125
		return cookieVal;
126
		return cookieVal;
126
	}
127
	}
-
 
128
 
-
 
129
 
-
 
130
	public void setResultJson(String resultJSon) {
-
 
131
		this.resultJson = resultJSon;
-
 
132
	}
-
 
133
 
-
 
134
 
-
 
135
	public String getResultJson() {
-
 
136
		return resultJson;
-
 
137
	}
127
}
138
}
128
139