1 16 19 20 package org.apache.pluto.core; 21 22 import org.apache.pluto.om.window.PortletWindow; 23 24 public interface InternalPortletRequest { 25 26 public void lateInit(javax.servlet.http.HttpServletRequest webModuleServletRequest); 27 28 public PortletWindow getInternalPortletWindow(); 29 30 public void setIncluded(boolean included); 31 32 public boolean isIncluded(); 33 } 34 35 36 | Popular Tags |