1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
37 String PAGE_LIST_ATTR = "pagelist";
38
39
40 String PER_LIST_ATTR = "perlist";
41 String APP_ATTR = "app";
42 String PREF_LIST_ATTR = "preflist";
43
44
45
46 String MESSAGE_ATTR = "message";
47 String ERROR_ATTR = "error";
48 }