Interface IAction
-
- All Known Implementing Classes:
AbstractAction
,AddObjectAction
public interface IAction
Represents an action in structure editor.- Since:
- 7.1.0
- Version:
- $Revision: 16037 $ $Date: 2013-11-21 20:58:50 -0200 (Thu, 21 Nov 2013) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
execute(lumis.service.portalmanagement.structureeditor.StructuralChangeContext context)
Executes the action.String
getId()
Returns the object identifier.
-
-
-
Method Detail
-
getId
String getId()
Returns the object identifier.- Returns:
- the object identifier.
- Since:
- 7.1.0
-
execute
boolean execute(lumis.service.portalmanagement.structureeditor.StructuralChangeContext context) throws PortalException
Executes the action.- Parameters:
context
- the context.- Returns:
- whether the action was executed or net.
- Throws:
PortalException
- Since:
- 7.1.0
-
-