View Javadoc

1   /*
2    * Copyright 2000-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.apache.portals.bridges.frameworks;
17  
18  
19  /***
20   * ForwardConstants
21   * 
22   * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
23   * @version $Id: ForwardConstants.java 187894 2004-11-04 23:17:30 +0100 (Thu, 04 Nov 2004) taylor $
24   */
25  public interface ForwardConstants
26  {
27      final String SUCCESS = "success";
28      final String FAILURE = "failure";
29      
30      final String MODE_PREFIX = "mode:";
31      final String STATE_PREFIX = "state:";
32      
33      final String MAXIMIZED = "maximized";
34      final String MINIMIZED = "minimized";
35      final String NORMAL = "normal";
36      
37      final String VIEW = "view";
38      final String EDIT = "edit";
39      final String HELP = "help";
40      
41      final String DELIMITER = ",";
42  }