com.ibm.portal.state.accessors.action.engine.deleteportlet
Interface DeletePortletActionAccessorController

All Superinterfaces:
Accessor, Disposable

public interface DeletePortletActionAccessorController
extends Accessor

Interface providing typed read-write access to the parameters of the "Delete Portlet" engine command. Use this controller to specify which portlet should be removed from which layout model (aka portal page).
The information will be encoded into the state holder this controller operates on.

Since:
5.1

Method Summary
 void setLayoutModelID(ObjectID aLayoutModelID)
          Sets the ObjectID of the layout model (aka portal page) that contains the portlet to be deleted.
 void setPortletID(ObjectID aPortletID)
          Sets the ObjectID of the portlet that should be removed from the layout model specified via setLayoutModelID(ObjectID).
 
Methods inherited from interface com.ibm.portal.Disposable
dispose
 

Method Detail

setLayoutModelID

void setLayoutModelID(ObjectID aLayoutModelID)
Sets the ObjectID of the layout model (aka portal page) that contains the portlet to be deleted.

Parameters:
aLayoutModelID - The ObjectID of the involved layout model. Must not be null.

setPortletID

void setPortletID(ObjectID aPortletID)
Sets the ObjectID of the portlet that should be removed from the layout model specified via setLayoutModelID(ObjectID).

Parameters:
aPortletID - The ObjectID of the portlet to be deleted. Must not be null.