1 5 package com.terracotta.session; 6 7 import javax.servlet.http.HttpServletRequest ; 8 9 public interface TerracottaRequest extends HttpServletRequest { 10 11 String encodeRedirectURL(String url); 12 13 String encodeURL(String url); 14 15 Session getTerracottaSession(boolean createNew); 16 17 boolean isSessionOwner(); 18 19 boolean isForwarded(); 20 21 long getRequestStartMillis(); 22 23 void setSessionManager(TerracottaSessionManager sessionManager); 24 25 } 26 | Popular Tags |