Package org.opends.server.tasks
Class SetGenerationIdTask
- java.lang.Object
-
- org.opends.server.backends.task.Task
-
- org.opends.server.tasks.SetGenerationIdTask
-
- All Implemented Interfaces:
Comparable<Task>
public final class SetGenerationIdTask extends Task
This class provides an implementation of a Directory Server task that can be used to import data over the replication protocol from another server hosting the same replication domain.
-
-
Constructor Summary
Constructors Constructor Description SetGenerationIdTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocalizableMessage
getDisplayName()
Gets a message that identifies this type of task suitable for presentation to humans in monitoring tools.void
initializeTask(Entry taskEntry)
Performs any task-specific initialization that may be required before processing can start.protected TaskState
runTask()
Performs the actual core processing for this task.-
Methods inherited from class org.opends.server.backends.task.Task
addLogMessage, addLogMessage, compareTo, execute, getAttributeDisplayName, getCompletionTime, getDependencyIDs, getFailedDependencyAction, getFinalTaskState, getLogMessages, getOperation, getRecurringTaskID, getScheduledStartTime, getServerContext, getTaskEntry, getTaskID, getTaskState, initializeTask, initializeTaskInternal, interruptTask, isInterruptible, isRecurring, replaceAttributes, sendNotificationEMailMessage, setCompletionTime, setEntriesLeftAndDone, setOperation, setTaskInterruptState, toString
-
-
-
-
Method Detail
-
getDisplayName
public LocalizableMessage getDisplayName()
Description copied from class:Task
Gets a message that identifies this type of task suitable for presentation to humans in monitoring tools.- Overrides:
getDisplayName
in classTask
- Returns:
- name of task
-
initializeTask
public void initializeTask(Entry taskEntry) throws LdapException
Description copied from class:Task
Performs any task-specific initialization that may be required before processing can start. This default implementation does not do anything, but subclasses may override it as necessary. This method will be called at the time the task is scheduled, and therefore any failure in this method will be returned to the client.- Overrides:
initializeTask
in classTask
- Parameters:
taskEntry
- the task entry- Throws:
LdapException
- If a problem occurs during initialization that should be returned to the client.
-
-