Class TaskConfigItem

All Implemented Interfaces:
Comparable<TaskConfigItem>, RepositoryItem

public class TaskConfigItem extends RepositoryItemAbstract implements Comparable<TaskConfigItem>
  • Field Details

  • Constructor Details

    • TaskConfigItem

      public TaskConfigItem()
    • TaskConfigItem

      public TaskConfigItem(String taskName, Class<? extends MonitorTask> taskClass)
  • Method Details

    • compareTo

      public int compareTo(TaskConfigItem o)
      Specified by:
      compareTo in interface Comparable<TaskConfigItem>
    • getConfiguration

      public Form getConfiguration()
    • setConfiguration

      public void setConfiguration(Form configuration)
    • getElemName

      public String getElemName()
      Specified by:
      getElemName in class RepositoryItemAbstract
    • getKey

      public String getKey()
      Description copied from interface: RepositoryItem
      Returns a unique key for the item in the repository. All items are stored in a memory cache which is a Map. And the key returned by this method is the item identifier in the Map.
      Specified by:
      getKey in interface RepositoryItem
      Returns:
      an Item key.
    • setKey

      protected void setKey(String key)
      Specified by:
      setKey in class RepositoryItemAbstract
    • getScriptExtension

      public String getScriptExtension()
    • setScriptExtension

      public void setScriptExtension(String scriptExtension)
    • getTaskClass

      public Class<? extends MonitorTask> getTaskClass()
    • getTaskName

      public String getTaskName()
    • setTaskName

      public void setTaskName(String taskName)
    • getTaskScript

      public String getTaskScript()
    • setTaskScript

      public void setTaskScript(String taskScript)
    • getType

      public TaskConfigItem.Type getType()
    • setType

      public void setType(TaskConfigItem.Type type)
    • initFromElement

      public void initFromElement(Element elem)
      Description copied from interface: RepositoryItem
      The item can be also initialized from a more complex repositories: XML repository or SQL database. In such a case more complex representation is prefered, possibly carrying more information about the item. The method is called to initialize the item with a data parsed from an XML representation of the repository.
      Specified by:
      initFromElement in interface RepositoryItem
      Overrides:
      initFromElement in class RepositoryItemAbstract
      Parameters:
      elem - XML Element with all the item initialization data.
    • initFromPropertyString

      public void initFromPropertyString(String propString)
      Description copied from interface: RepositoryItem
      The item can be initialized based on the data loaded from a configuration file. In such a case the item representation is usually very simplified as a list of parameters separated by a marker. Please note, usually each item is separated from another with a comma, therefore do not use a comma in the item property string. Double collon is commonly used alternative.
      Specified by:
      initFromPropertyString in interface RepositoryItem
      Parameters:
      propString - is a property string to initialize the RepositoryItem.
    • setTaskClass

      public void setTaskClass(Class<? extends MonitorTask> taskClass)
    • toElement

      public Element toElement()
      Description copied from interface: RepositoryItem
      Item data can be stored in a more complex form than a simple property string. The XML Element can contain much more detailed information about the element than the simplified form and is used to store the repository item in more advanced repositories then just property file. XML repository or SQL database can keep many records for repository item with as much detailed information as needed.
      Specified by:
      toElement in interface RepositoryItem
      Overrides:
      toElement in class RepositoryItemAbstract
      Returns:
      an XML Element with all the item initialization data.
    • toPropertyString

      public String toPropertyString()
      Description copied from interface: RepositoryItem
      The item can be initialized based on the data loaded from a configuration file. In such a case the item representation is usually very simplified as a list of parameters separated by a marker. Please note, usually each item is separated from another with a comma, therefore do not use a comma in the item property string. Double collon is commonly used alternative.
      Specified by:
      toPropertyString in interface RepositoryItem
      Returns:
      a property string representing the repository item in a simplified form.
    • toString

      public String toString()
      Overrides:
      toString in class Object