1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.pipeline.valve;
18
19 /***
20 * Determine the page to display and add it to the RequestContext
21 *
22 * <br/>
23 * Read from the ValveContext:
24 * <ul>
25 * </ul>
26 *
27 * <br/>
28 * Written into the ValveContext:
29 * <ul>
30 * </ul>
31 *
32 * <br>
33 * Note: The primary purpose of this interface is primary for documention.
34 *
35 * @author <a href="mailto:paul@apache.org">Paul Spencer</a>
36 * @version $Id: PageProfilerValve.java 516448 2007-03-09 16:25:47Z ate $
37 *
38 * @see ValveContext
39 */
40 public interface PageProfilerValve extends Valve
41 {
42 String PROFILE_LOCATOR_REQUEST_ATTR_KEY = "org.apache.jetspeed.profiler.ProfileLocator";
43 String PROFILE_LOCATORS_PER_PRINCIPAL = "org.apache.jetspeed.profiler.ProfileLocatorsPrincipal";
44 }