1 54 55 package org.apache.jetspeed.portlet; 56 57 import java.util.Enumeration ; 58 import java.util.Locale ; 59 60 73 74 public interface PortletConfig 75 { 76 82 83 public String getName (); 84 85 97 98 public void setAttribute (String name, String value) throws AccessDeniedException; 99 100 113 114 public String getAttribute (String name) throws AccessDeniedException; 115 116 127 128 public Enumeration getAttributeNames () throws AccessDeniedException; 129 130 141 142 public void removeAttribute (String name) throws AccessDeniedException; 143 144 155 156 public String getTitle (Locale locale, 157 Client client); 158 159 167 public boolean supports (PortletWindow.State state); 168 169 178 179 public boolean supports (Locale locale); 180 181 193 public boolean supports (Portlet.Mode mode, Client client); 194 195 200 201 public PortletContext getContext (); 202 } 203 | Popular Tags |