KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > pluto > portlet > admin > PlutoAdminConstants


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 JavaDoc;
19
20 /**
21  * PlutoAdminConstants
22  *
23  * @author Craig Doremus
24  *
25  */

26 public interface PlutoAdminConstants {
27
28     public static final String JavaDoc ENCODING = "UTF-8";
29     public static final String JavaDoc FS = File.separator;
30     public static final String JavaDoc LS = System.getProperty("line.separator");
31     public static final String JavaDoc PROP_FILENAME = "pluto-admin.properties";
32     public static final String JavaDoc PAGE_ATTR = "page";
33     public static final String JavaDoc PORTLET_MAP_ATTR = "portlet-map";
34     public static final String JavaDoc PORTLET_APP_LIST_ATTR = "portlet-app-list";
35
36     //for pageregistry
37
public static final String JavaDoc PAGE_LIST_ATTR = "pagelist";
38
39   //for portlet entity registry
40
public static final String JavaDoc PER_LIST_ATTR = "perlist";
41     public static final String JavaDoc APP_ATTR = "app";
42     public static final String JavaDoc PREF_LIST_ATTR = "preflist";
43
44   // public static final String PAGE_ATTR = "portletpage";
45
//Used for messages
46
public static final String JavaDoc MESSAGE_ATTR = "message";
47     public static final String JavaDoc ERROR_ATTR = "error";
48 }
49
Popular Tags