1 package org.exoplatform.services.wsrp.consumer; 2 3 import org.exoplatform.services.wsrp.type.MarkupContext; 4 5 6 10 public interface PortletWindowSession { 11 16 public String getWindowID(); 17 18 23 public void setWindowID(String windowID); 24 25 32 public MarkupContext getCachedMarkup(); 33 34 40 public void updateMarkupCache(MarkupContext markupContext); 41 42 47 public PortletSession getPortletSession(); 48 49 public void setNavigationalState(String navigationalState); 50 51 public String getNavigationalState(); 52 } 53 | Popular Tags |