Interface PortletWindowData
-
- All Known Implementing Classes:
PortletWindowDataImpl
public interface PortletWindowData
The PortletWindowData is responsible for providing the data related to the Portlet Window to the view. The information includes title, portlet content, view ,edit and help URLs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharSequence
getContent()
String
getCurrentMode()
String
getCurrentWindowState()
String
getEditURL()
String
getHelpURL()
String
getMaximizedURL()
String
getMinimizedURL()
String
getNormalizedURL()
String
getPortletName()
String
getPortletWindowName()
String
getRemoveURL()
Integer
getRowNumber()
String
getSpaceId()
String
getTitle()
String
getViewURL()
String
getWidth()
void
init(javax.servlet.http.HttpServletRequest request, PortletRegistryContext portletRegistryContext, String portletWindowName)
boolean
isEdit()
boolean
isHelp()
boolean
isMaximized()
boolean
isMinimized()
boolean
isNormalized()
boolean
isRemove()
boolean
isThick()
boolean
isThin()
boolean
isView()
void
setSpaceId(String spaceId)
-
-
-
Method Detail
-
init
void init(javax.servlet.http.HttpServletRequest request, PortletRegistryContext portletRegistryContext, String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletName
String getPortletName()
-
getPortletWindowName
String getPortletWindowName()
-
getTitle
String getTitle()
-
getContent
CharSequence getContent()
-
isView
boolean isView()
-
getViewURL
String getViewURL()
-
isEdit
boolean isEdit()
-
getEditURL
String getEditURL()
-
isHelp
boolean isHelp()
-
getHelpURL
String getHelpURL()
-
isNormalized
boolean isNormalized()
-
getNormalizedURL
String getNormalizedURL()
-
isMaximized
boolean isMaximized()
-
getMaximizedURL
String getMaximizedURL()
-
isMinimized
boolean isMinimized()
-
getMinimizedURL
String getMinimizedURL()
-
getCurrentMode
String getCurrentMode()
-
getCurrentWindowState
String getCurrentWindowState()
-
isRemove
boolean isRemove()
-
getRemoveURL
String getRemoveURL()
-
isThin
boolean isThin()
-
isThick
boolean isThick()
-
getWidth
String getWidth()
-
getRowNumber
Integer getRowNumber()
-
getSpaceId
String getSpaceId()
-
setSpaceId
void setSpaceId(String spaceId)
-
-