1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.container.state.impl;
18
19 import org.apache.jetspeed.cache.JetspeedContentCache;
20
21
22 /***
23 * SessionFullNavigationalState, stores all nav parameters in the session, including render parameters
24 *
25 * @author <a href="mailto:ate@apache.org">Ate Douma</a>
26 * @version $Id: SessionFullNavigationalState.java 553340 2007-07-04 22:00:09Z taylor $
27 */
28 public class SessionFullNavigationalState extends SessionNavigationalState
29 {
30 public SessionFullNavigationalState(NavigationalStateCodec codec, JetspeedContentCache cache)
31 {
32 super(codec, cache);
33 }
34
35 public SessionFullNavigationalState(NavigationalStateCodec codec, JetspeedContentCache cache, JetspeedContentCache decorationCache)
36 {
37 super(codec, cache, decorationCache);
38 }
39
40 public boolean isRenderParameterStateFull()
41 {
42 return true;
43 }
44 }