KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > PortletData


1 /**
2  * Copyright 2001-2003 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  */

5 package org.exoplatform.services.portletcontainer.pci;
6
7 import java.util.List JavaDoc;
8 import org.exoplatform.services.portletcontainer.pci.model.*;
9
10 /**
11  * @author Mestrallet Benjamin
12  * benjmestrallet@users.sourceforge.net
13  */

14 public interface PortletData {
15   //elements that must be found in the resource bundle
16
public static final String JavaDoc PORTLET_TITLE = "javax.portlet.title";
17   public static final String JavaDoc PORTLET_SHORT_TITLE = "javax.portlet.short-title";
18   public static final String JavaDoc KEYWORDS = "javax.portlet.keywords";
19   
20   public List JavaDoc getDisplayName();
21   public List JavaDoc getSecurityRoleRef();
22   public List JavaDoc getInitParam();
23   //public java.util.ResourceBundle getPortletInfo(Locale locale);
24
public List JavaDoc getSupports();
25   public List JavaDoc getDescription();
26   public String JavaDoc getDescription(String JavaDoc lang);
27   public boolean isCacheGlobal();
28   public String JavaDoc getExpirationCache();
29   public String JavaDoc getPortletName();
30   public List JavaDoc getSupportedLocale();
31   public ExoPortletPreferences getPortletPreferences();
32   public boolean isSecure();
33   public List JavaDoc getUserAttributes();
34 }
35
Popular Tags