Novell exteNd
Director 5.2 API

com.sssw.fw.task.api
Interface EbiTaskType

All Superinterfaces:
EbiElement, Serializable

public interface EbiTaskType
extends EbiElement, Serializable

Interface that defines the behavior for a task type.


Field Summary
static String TASK_TYPE_OBJECT_ID
          The object ID for the task type.
 
Method Summary
 void fromXML(Node node)
          Populates the task type object from XML.
 String getDescription()
          Gets the description of the task type.
 String getFullyQualifiedName(String delim)
          Gets the fully qualified task type name (kind + name, using the delimiter).
 String getKind()
          Gets the kind of the Task Type.
 String getName()
          Gets the name of the task type.
 void setDescription(String description)
          Sets the description of the task type.
 void setKind(String kind)
          Sets the kind of the task type.
 void setName(String name)
          Sets the name of the task type.
 
Methods implemented from interface com.sssw.fw.api.EbiElement
getType
 

Field Detail

TASK_TYPE_OBJECT_ID

public static final String TASK_TYPE_OBJECT_ID
The object ID for the task type.
Method Detail

getName

public String getName()
Gets the name of the task type.
Returns:
The task type name.

getDescription

public String getDescription()
Gets the description of the task type.
Returns:
The description of the task type.

getKind

public String getKind()
Gets the kind of the Task Type.
Returns:
The kind.

getFullyQualifiedName

public String getFullyQualifiedName(String delim)
Gets the fully qualified task type name (kind + name, using the delimiter).
Parameters:
delim - The delimiter to use.
Returns:
The fully qualified task type name, e.g. "periodic-publish".

fromXML

public void fromXML(Node node)
Populates the task type object from XML.
Parameters:
node - The node to populate from.

setName

public void setName(String name)
Sets the name of the task type.
Parameters:
name - The name.

setDescription

public void setDescription(String description)
Sets the description of the task type.
Parameters:
description - The description.

setKind

public void setKind(String kind)
Sets the kind of the task type.
Parameters:
kind - The kind.

Novell exteNd
Director 5.2 API