1 6 7 package javax.portlet; 8 9 10 11 34 public interface PortletURL 35 { 36 37 38 39 59 public void setWindowState (WindowState windowState) 60 throws WindowStateException; 61 62 63 83 public void setPortletMode (PortletMode portletMode) 84 throws PortletModeException; 85 86 87 106 107 public void setParameter (String name, String value); 108 109 110 129 130 public void setParameter (String name, String [] values); 131 132 133 158 159 public void setParameters(java.util.Map parameters); 160 161 162 178 179 public void setSecure (boolean secure) throws PortletSecurityException; 180 181 182 191 192 public String toString (); 193 } 194 | Popular Tags |