1 5 package org.exoplatform.services.portletcontainer.pci; 6 7 import java.util.List ; 8 import org.exoplatform.services.portletcontainer.pci.model.*; 9 10 14 public interface PortletData { 15 public static final String PORTLET_TITLE = "javax.portlet.title"; 17 public static final String PORTLET_SHORT_TITLE = "javax.portlet.short-title"; 18 public static final String KEYWORDS = "javax.portlet.keywords"; 19 20 public List getDisplayName(); 21 public List getSecurityRoleRef(); 22 public List getInitParam(); 23 public List getSupports(); 25 public List getDescription(); 26 public String getDescription(String lang); 27 public boolean isCacheGlobal(); 28 public String getExpirationCache(); 29 public String getPortletName(); 30 public List getSupportedLocale(); 31 public ExoPortletPreferences getPortletPreferences(); 32 public boolean isSecure(); 33 public List getUserAttributes(); 34 } 35 | Popular Tags |