Uses of Class
jakarta.portlet.WindowState
-
Packages that use WindowState Package Description jakarta.portlet The jakarta.portlet package defines the API for the Jakarta Portlet Specification V4.0.jakarta.portlet.filter The jakarta.portlet.filter package defines the filter APIs for the Jakarta Portlet Specification. -
-
Uses of WindowState in jakarta.portlet
Fields in jakarta.portlet declared as WindowState Modifier and Type Field Description static WindowStateWindowState. MAXIMIZEDTheMAXIMIZEDwindow state is an indication that a portlet may be the only portlet being rendered in the portal page, or that the portlet has more space compared to other portlets in the portal page.static WindowStateWindowState. MINIMIZEDWhen a portlet is inMINIMIZEDwindow state, the portlet should only render minimal output or no output at all.static WindowStateWindowState. NORMALTheNORMALwindow state indicates that a portlet may be sharing the page with other portlets.static WindowStateWindowState. UNDEFINEDThe window stateUNDEFINEDis returned by thegetWindowStatemethod when the window state is not available.Methods in jakarta.portlet that return WindowState Modifier and Type Method Description WindowStateWindowStateException. getState()Returns the window state causing this exception.WindowStateRenderState. getWindowState()Returns the current window state of the portlet.WindowStateResourceRequest. getWindowState()Returns the current window state of the portlet.Methods in jakarta.portlet that return types with arguments of type WindowState Modifier and Type Method Description Enumeration<WindowState>PortalContext. getSupportedWindowStates()Returns all supported window states by the portal as an enumeration ofWindowStateobjects.Enumeration<WindowState>GenericPortlet. getWindowStates(String mimeType)Returns anEnumerationof WindowState objects that are defined for the portlet for the given MIME type.Enumeration<WindowState>PortletConfig. getWindowStates(String mimeType)Returns anEnumerationof WindowState objects that are defined for the portlet for the given MIME type.Methods in jakarta.portlet with parameters of type WindowState Modifier and Type Method Description booleanPortletRequest. isWindowStateAllowed(WindowState state)Returns true, if the given window state is valid to be set for this portlet in the context of the current request.voidMutableRenderState. setWindowState(WindowState windowState)Sets the window state of a portlet to the given window state.Constructors in jakarta.portlet with parameters of type WindowState Constructor Description WindowStateException(String text, WindowState state)Constructs a new window state exception with the given text.WindowStateException(String text, Throwable cause, WindowState state)Constructs a new window state exception when the portlet needs to do the following: throw an exception include a message about the "root cause" that interfered with its normal operation include a description messageWindowStateException(Throwable cause, WindowState state)Constructs a new window state exception when the portlet needs to throw an exception. -
Uses of WindowState in jakarta.portlet.filter
Methods in jakarta.portlet.filter that return WindowState Modifier and Type Method Description WindowStatePortletRequestWrapper. getWindowState()WindowStateRenderStateWrapper. getWindowState()WindowStateStateAwareResponseWrapper. getWindowState()Methods in jakarta.portlet.filter that return types with arguments of type WindowState Modifier and Type Method Description Enumeration<WindowState>PortalContextWrapper. getSupportedWindowStates()Enumeration<WindowState>PortletConfigWrapper. getWindowStates(String mimeType)Methods in jakarta.portlet.filter with parameters of type WindowState Modifier and Type Method Description booleanPortletRequestWrapper. isWindowStateAllowed(WindowState state)voidMutableRenderStateWrapper. setWindowState(WindowState windowState)voidPortletURLWrapper. setWindowState(WindowState windowState)voidStateAwareResponseWrapper. setWindowState(WindowState windowState)
-