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 import org.apache.jetspeed.request.RequestContext;
21
22 /***
23 * PathNavigationalStateContext stores all navigational state in the URL.
24 * This implementation does not currently support persisting navigational state.
25 *
26 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
27 * @version $Id: PathNavigationalState.java 550655 2007-06-26 01:41:35Z taylor $
28 */
29 public class PathNavigationalState extends AbstractNavigationalState
30 {
31
32 public PathNavigationalState(NavigationalStateCodec codec, JetspeedContentCache cache)
33 {
34 super(codec, cache);
35 }
36
37 public void sync(RequestContext context)
38 {
39 }
40
41 public boolean isNavigationalParameterStateFull()
42 {
43 return false;
44 }
45
46 public boolean isRenderParameterStateFull()
47 {
48 return false;
49 }
50 }