1 54 55 package org.apache.jetspeed.portlet; 56 57 import java.util.Enumeration ; 58 59 66 public interface PortletData 67 { 68 80 81 public void setAttribute (String name, String value) throws AccessDeniedException; 82 83 96 97 public String getAttribute (String name) throws AccessDeniedException; 98 99 110 111 public Enumeration getAttributeNames () throws AccessDeniedException; 112 113 124 125 public void removeAttribute (String name) throws AccessDeniedException; 126 127 135 136 public void removeAllAttributes () throws AccessDeniedException; 137 138 } 139 | Popular Tags |