Interface PortletWindowRegistryContext
-
- All Known Implementing Classes:
PortletWindowRegistryContextImpl
public interface PortletWindowRegistryContext
PortletWindowRegistryContext provides information pertaining to the portlet window registry. This includes information about portlet windows.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createPortletWindow(String portletName, String portletWindowName)
void
createPortletWindow(String portletName, String portletWindowName, String title, String locale)
List<String>
getAllPortletWindows(com.sun.portal.container.PortletType portletType)
String
getConsumerID(String portletWindowName)
com.sun.portal.container.EntityID
getEntityId(String portletWindowName)
List<com.sun.portal.container.EntityID>
getEntityIds()
String
getPortletID(String portletWindowName)
com.sun.portal.container.PortletLang
getPortletLang(String portletWindowName)
String
getPortletName(String portletWindowName)
List<String>
getPortletWindows(String portletName)
String
getPortletWindowTitle(String portletWindowName)
String
getProducerEntityID(String portletWindowName)
List<String>
getRemotePortletWindows()
Integer
getRowNumber(String portletWindowName)
List<String>
getVisiblePortletWindows(com.sun.portal.container.PortletType portletType)
String
getWidth(String portletWindowName)
boolean
isRemote(String portletWindowName)
boolean
isVisible(String portletWindowName)
void
movePortletWindows(List<PortletWindowData> portletWindows)
void
removePortletWindow(String portletWindowName)
void
removePortletWindows(String portletName)
void
setPortletWindowTitle(String portletWindowName, String title)
void
setWidth(String portletWindowName, String width, String row)
void
showPortletWindow(String portletWindowName, boolean visible)
-
-
-
Method Detail
-
getEntityId
com.sun.portal.container.EntityID getEntityId(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getEntityIds
List<com.sun.portal.container.EntityID> getEntityIds() throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletWindowTitle
String getPortletWindowTitle(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
setPortletWindowTitle
void setPortletWindowTitle(String portletWindowName, String title) throws PortletRegistryException
- Throws:
PortletRegistryException
-
createPortletWindow
void createPortletWindow(String portletName, String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
createPortletWindow
void createPortletWindow(String portletName, String portletWindowName, String title, String locale) throws PortletRegistryException
- Throws:
PortletRegistryException
-
removePortletWindow
void removePortletWindow(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
removePortletWindows
void removePortletWindows(String portletName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
movePortletWindows
void movePortletWindows(List<PortletWindowData> portletWindows) throws PortletRegistryException
- Throws:
PortletRegistryException
-
showPortletWindow
void showPortletWindow(String portletWindowName, boolean visible) throws PortletRegistryException
- Throws:
PortletRegistryException
-
isVisible
boolean isVisible(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletName
String getPortletName(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletWindows
List<String> getPortletWindows(String portletName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getRowNumber
Integer getRowNumber(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getWidth
String getWidth(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
setWidth
void setWidth(String portletWindowName, String width, String row) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getProducerEntityID
String getProducerEntityID(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getConsumerID
String getConsumerID(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletID
String getPortletID(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
isRemote
boolean isRemote(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getVisiblePortletWindows
List<String> getVisiblePortletWindows(com.sun.portal.container.PortletType portletType) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getAllPortletWindows
List<String> getAllPortletWindows(com.sun.portal.container.PortletType portletType) throws PortletRegistryException
- Throws:
PortletRegistryException
-
getRemotePortletWindows
List<String> getRemotePortletWindows() throws PortletRegistryException
- Throws:
PortletRegistryException
-
getPortletLang
com.sun.portal.container.PortletLang getPortletLang(String portletWindowName) throws PortletRegistryException
- Throws:
PortletRegistryException
-
-