Interface WikiCreationStep
-
@Role public interface WikiCreationStep
Step to be executed during the wiki creation job.- Since:
- 7.0M2
- Version:
- $Id: 9f034fb30bc1cc6b62ef0f2097b655b6e487d409 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(WikiCreationRequest request)
Execute the steps.int
getOrder()
The creation steps are sorted in ascending order before being executed so this method returns the one of the current steps.
-
-
-
Method Detail
-
execute
void execute(WikiCreationRequest request) throws WikiCreationException
Execute the steps.- Parameters:
request
- wiki creation request with all information about the wiki to create- Throws:
WikiCreationException
- if problem occurs
-
getOrder
int getOrder()
The creation steps are sorted in ascending order before being executed so this method returns the one of the current steps.- Returns:
- the order of the steps
-
-