com.ibm.commerce.contentmanagement.commands

Interface UpdateTaskCmd

  • All Superinterfaces:
    com.ibm.websphere.command.CacheableCommand, com.ibm.commerce.command.CacheableECCommand, com.ibm.websphere.command.Command, com.ibm.websphere.command.CommandCaller, ECCommand, java.io.Serializable, com.ibm.websphere.command.TargetableCommand, TaskCommand
    All Known Implementing Classes:
    UpdateTaskCmdImpl


    public interface UpdateTaskCmd
    extends TaskCommand
    The UpdateTaskCmd is a task command that:
    • Updates a Task.
    Parameters:
    • taskId
    • usage
    • dueDate
    Access Beans:
    • TaskAccessBean
    Task Commands:
    Other Controller commands:
    Mandatory Parameters: taskId
    Additional Parameters: none
    Optional Parameters: usage, dueDate
    • Field Detail

      • COPYRIGHT

        static final java.lang.String COPYRIGHT
        The internal copyright field.
        See Also:
        Constant Field Values
      • CLASSNAME

        static final java.lang.String CLASSNAME
        Define the CLASSNAME.
        See Also:
        Constant Field Values
    • Method Detail

      • getTaskId

        java.lang.Long getTaskId()
        Returns the Task ID.
        Returns:
        The ID of the Task.
      • getUsage

        java.lang.Integer getUsage()
        Returns the Task usage.
        Returns:
        The Task usage.
      • getDueDate

        java.sql.Timestamp getDueDate()
        Returns the Task Due Date. A null value indicates that there is no Task Due Date.
        Returns:
        The Task Due Date.
      • setTaskId

        void setTaskId(java.lang.Long anTaskId)
        Sets the Task ID
        Parameters:
        anTaskInstId - The ID of the Task .
      • setUsage

        void setUsage(java.lang.Integer aUsage)
        Sets the Task Usage
        Parameters:
        aUsage - The usage of the Task.
      • setDueDate

        void setDueDate(java.sql.Timestamp dDueDate)
        Sets the Task Due Date. A null value indicates that there is no Task Due Date.
        Parameters:
        dDueDate - The due date of the Task.