TaskEventInformation

public abstract class TaskEventInformation implements Serializable

Represents information about single task event. Task event is an abstract base for events utilized in the task module. It serves as a base for both TaskActionInformations and TaskTriggerInformations. It is a part of the task model.

Constructors

TaskEventInformation

public TaskEventInformation()

Constructor.

TaskEventInformation

public TaskEventInformation(String name, String displayName, String channelName, String moduleName, String moduleVersion, String subject)

Constructor.

Parameters:
  • name – the event name
  • displayName – the event display name
  • channelName – the event channel name
  • moduleName – the event module name
  • moduleVersion – the module version
  • subject – the event subject

Methods

equals

public boolean equals(Object obj)

getChannelName

public String getChannelName()

getDisplayName

public String getDisplayName()

getModuleName

public String getModuleName()

getModuleVersion

public String getModuleVersion()

getName

public String getName()

getSubject

public String getSubject()

hasSubject

public boolean hasSubject()

hashCode

public int hashCode()

setChannelName

public void setChannelName(String channelName)

setDisplayName

public void setDisplayName(String displayName)

setModuleName

public void setModuleName(String moduleName)

setModuleVersion

public void setModuleVersion(String moduleVersion)

setName

public void setName(String name)

setSubject

public void setSubject(String subject)

toString

public String toString()