Class UpdateComponentChannelIdsStepExecutable
- java.lang.Object
-
- lumis.portal.deployment.stepexecutable.component.UpdateComponentChannelIdsStepExecutable
-
- All Implemented Interfaces:
Serializable
,IDeploymentStepExecutable
,IStepExecutable
public class UpdateComponentChannelIdsStepExecutable extends Object implements IDeploymentStepExecutable
IStepExecutable
that updates the channel identifiers of given components, based on component's structure.- Since:
- 8.0.0
- Version:
- $Revision: 17180 $ $Date: 2015-03-30 15:57:10 -0300 (Mon, 30 Mar 2015) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateComponentChannelIdsStepExecutable(Set<IComponent> componentsToBeProcessed)
Creates a new instance with the given components.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(IStep step)
Executes the step code.String
getDescription()
Returns the description of the step.String
getMessage()
Returns the message of the step.boolean
isMandatory()
Indicates whether the step is mandatory.void
stepIgnored(IStep step)
Callback invoked when the step is ignored.
-
-
-
Constructor Detail
-
UpdateComponentChannelIdsStepExecutable
public UpdateComponentChannelIdsStepExecutable(Set<IComponent> componentsToBeProcessed)
Creates a new instance with the given components.- Parameters:
componentsToBeProcessed
- the components that should have the channel identifiers updated.- Since:
- 8.0.0
-
-
Method Detail
-
execute
public void execute(IStep step) throws Throwable
Description copied from interface:IStepExecutable
Executes the step code.- Specified by:
execute
in interfaceIStepExecutable
- Parameters:
step
- the step owner of the executable.- Throws:
Throwable
-
getDescription
public String getDescription()
Description copied from interface:IStepExecutable
Returns the description of the step.- Specified by:
getDescription
in interfaceIStepExecutable
- Returns:
- the description of the step.
-
getMessage
public String getMessage()
Description copied from interface:IStepExecutable
Returns the message of the step.- Specified by:
getMessage
in interfaceIStepExecutable
- Returns:
- the message of the step.
-
stepIgnored
public void stepIgnored(IStep step) throws Throwable
Description copied from interface:IStepExecutable
Callback invoked when the step is ignored.- Specified by:
stepIgnored
in interfaceIStepExecutable
- Parameters:
step
- the ignored step.- Throws:
Throwable
-
isMandatory
public boolean isMandatory()
Description copied from interface:IDeploymentStepExecutable
Indicates whether the step is mandatory.- Specified by:
isMandatory
in interfaceIDeploymentStepExecutable
- Returns:
- whether the step is mandatory.
-
-