View Javadoc

1   /*
2    * Copyright 2003,2004,2005 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.pluto.portlet.admin;
17  
18  import java.io.File;
19  
20  /***
21   * PlutoAdminConstants
22   *
23   * @author Craig Doremus
24   *
25   */
26  public interface PlutoAdminConstants {
27  
28  	String ENCODING = "UTF-8";
29  	String FS = File.separator;
30  	String LS = System.getProperty("line.separator");
31  	String PROP_FILENAME = "pluto-admin.properties";
32  	String PAGE_ATTR = "page";
33  	String PORTLET_MAP_ATTR = "portlet-map";
34  	String PORTLET_APP_LIST_ATTR = "portlet-app-list";
35  
36  	// for pageregistry
37      String PAGE_LIST_ATTR = "pagelist";
38  
39      // for portlet entity registry
40  	String PER_LIST_ATTR = "perlist";
41  	String APP_ATTR = "app";
42  	String PREF_LIST_ATTR = "preflist";
43  
44      //  public static final String PAGE_ATTR = "portletpage";
45  	// Used for messages
46  	String MESSAGE_ATTR = "message";
47  	String ERROR_ATTR = "error";
48  }