Class InstallTask
java.lang.Object
org.apache.sling.installer.api.tasks.InstallTask
- All Implemented Interfaces:
Comparable<InstallTask>
- Direct Known Subclasses:
org.apache.sling.installer.core.impl.AbstractInstallTask
,ChangeStateTask
Base class for tasks that can be executed by the
OsgiInstaller
.
The task is invoked by the installer through the execute(InstallationContext)
method. During execution the task should use the setFinishedState(ResourceState)
or setFinishedState(ResourceState, String)
method once the task is
performed or the task decided that the task can never be performed.
If the task needs to be retried, the implementation should just not alter the
state at all. The installer will invoke the tasks at a later time again for
retrying.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Attribute which is set by the OSGi installer for asynchronous execution. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal int
All comparisons are based on getSortKey().final boolean
abstract void
This is the heart of the task - it performs the actual task.Return the corresponding resource - depending on the task this might be null.Return the corresponding resource - depending on the task this might be null.abstract String
Tasks are sorted according to this key.final int
hashCode()
boolean
If this an asynchronous task it should returntrue
The OSGi installer will set the attributeASYNC_ATTR_NAME
with an integer value.void
setFinishedState
(ResourceState state) Set the finished state for the resource.void
setFinishedState
(ResourceState state, String alias) Set the finished state for the resource and the aliasvoid
setFinishedState
(ResourceState state, String alias, String error) Set the finish state for the active resource and alias (may be null).toString()
-
Field Details
-
ASYNC_ATTR_NAME
Attribute which is set by the OSGi installer for asynchronous execution. The value of the attribute is an Integer which is increased on each async call, it starts with the value1
.- See Also:
-
-
Constructor Details
-
InstallTask
Constructor for the task- Parameters:
erl
- The resource group ornull
.
-
-
Method Details
-
getResource
Return the corresponding resource - depending on the task this might be null.- Returns:
- The task resource or
null
.
-
getResourceGroup
Return the corresponding resource - depending on the task this might be null.- Returns:
- The task resource group or
null
.
-
execute
This is the heart of the task - it performs the actual task.- Parameters:
ctx
- The installation context.
-
getSortKey
Tasks are sorted according to this key. Therefore this key must uniquely identify this task. A typical sort key contains the entity id of the resource in execution.- Returns:
- The sorting key.
-
setFinishedState
Set the finished state for the resource.- Parameters:
state
- The new state.
-
setFinishedState
Set the finished state for the resource and the alias- Parameters:
state
- The new state.alias
- The new alias- Since:
- 1.1
-
setFinishedState
Set the finish state for the active resource and alias (may be null). In addition set an error text (may benull
).- Parameters:
state
- The new state.alias
- The new alias (may benull
).error
- An error text (may benull
).- Since:
- 1.4
- See Also:
-
toString
-
equals
-
hashCode
public final int hashCode() -
compareTo
All comparisons are based on getSortKey().- Specified by:
compareTo
in interfaceComparable<InstallTask>
-
isAsynchronousTask
public boolean isAsynchronousTask()If this an asynchronous task it should returntrue
The OSGi installer will set the attributeASYNC_ATTR_NAME
with an integer value. The next time, after the asynchronous task has been run and the OSGi installer has restarted, this attribute will be set on the resource. Asynchronous tasks should only be used for tasks which require the OSGi installer to stop and force it to restart, like a bundle update of the installer itself or a system update. The OSGi installer stops itself for an asynchronous task and is not able to restart itself!- Returns:
- If this is a async request,
true
otherwisefalse
- Since:
- 1.3
-