1 16 17 package org.apache.jetspeed.portal; 18 19 import java.util.Iterator ; 20 21 import org.apache.jetspeed.om.profile.Entry; 22 import org.apache.jetspeed.om.profile.PSMLDocument; 23 import org.apache.jetspeed.om.profile.Profile; 24 import org.apache.jetspeed.portal.Portlet; 25 26 41 public interface PortletInstance 42 { 43 51 String getAttribute(String name, String defaultValue); 52 53 60 String getAttribute(String name); 61 62 63 69 void setAttribute(String name, String value); 70 71 76 void removeAttribute(String name); 77 78 82 void removeAllAttributes(); 83 84 90 Iterator getAttributes(); 91 92 98 Iterator getAttributeNames(); 99 100 106 PSMLDocument getDocument(); 107 108 113 Profile getProfile(); 114 115 120 Entry getEntry(); 121 122 127 Portlet getPortlet(); 128 129 134 String getName(); 135 136 142 String getTitle(); 143 144 150 String getDescription(); 151 152 153 } 154 | Popular Tags |