com.ibm.portal.dynamicui
Interface DynamicUIInfo
-
- All Superinterfaces:
- java.io.Serializable
- All Known Subinterfaces:
- DynamicUICtrl
Deprecated.
@Deprecated public interface DynamicUIInfo extends java.io.SerializableDynamicUIInfoprovides access to the read only functions of dynamic ui management.
Since only persistant pages/portlets are supported, these functions always return false. Portlets can get access toDynamicUIInfovia theDynamicUIManagerFactoryService.
DynamicUIInfo must be obtained once per render phase of the portlet and should not be stored.- See Also:
DynamicUIManagerFactoryService
-
-
Method Summary
Methods Modifier and Type Method and Description booleancanPageBeClosed(ObjectID objectID)Deprecated.Returns whether a page can be closed or not.booleancanPortletBeClosed(ObjectID portletWindowID)Deprecated.Returns whether a portlet on the current page can be closed or not.
-
-
-
Method Detail
-
canPageBeClosed
boolean canPageBeClosed(ObjectID objectID) throws DynamicUIManagementException
Deprecated.Returns whether a page can be closed or not.- Parameters:
objectID- The id of the page to be closed. It is not allowed to passnullfor this parameter.- Returns:
- boolean Indicates whether the page can be closed or not.
- Throws:
DynamicUIManagementException
-
canPortletBeClosed
boolean canPortletBeClosed(ObjectID portletWindowID) throws DynamicUIManagementException
Deprecated.Returns whether a portlet on the current page can be closed or not.- Parameters:
portletWindowID- The id of the portlet window to be closed. It is not allowed to passnullfor this parameter.- Returns:
- boolean Indicates whether the portlet can be closed or not.
- Throws:
DynamicUIManagementException
-
-