01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.terracotta.session;
06:
07: import javax.servlet.http.HttpServletRequest;
08:
09: 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: }
|