com.ibm.commerce.contentmanagement.commands

Interface UpdateTaskGroupCmd

  • 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:
    UpdateTaskGroupCmdImpl


    public interface UpdateTaskGroupCmd
    extends TaskCommand
    The UpdateTaskGroupCmd is a task command that:
    • Updates a Task Group
    Parameters:
    • taskGroupId
    • dueDate
    • persistentType
    • quickPublishType
    • promotionDate
    Access Beans:
    • TaskGroupAccessBean
    Task Commands:
    Controller commands:
    Mandatory Parameters: taskGroupId
    Additional Parameters: none
    Optional Parameters: dueDate, persistentType, quickPublishType, promotionDate
    • 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

      • getTaskGroupId

        java.lang.Long getTaskGroupId()
        Returns the Task Group ID.
        Returns:
        the unique ID of the Task Group
      • getDueDate

        java.sql.Timestamp getDueDate()
        Returns the Task Group due date. A null value means that there is no due date.
        Returns:
        the due date of the Task Group
      • getPromotionDate

        java.sql.Timestamp getPromotionDate()
        Returns the Task Group promotion date. A null value means that there is no scheduled promotion.
        Returns:
        the promotion date of the Task Group
      • getPersistentType

        java.lang.Integer getPersistentType()
        Returns the Task Group persistent type. A persistent Task Group is remains available for reuse once the Task Group is promoted. A null value indicates that this value does not need to be updated.
        Returns:
        the persistent type of the Task Group
      • getQuickPublishType

        java.lang.Integer getQuickPublishType()
        Returns the Quick Publish type. If a Task group has Quick Publish enabled, the content will be published to production at the same time as it is promoted. A null value indicates that this value does not need to be updated.
        Returns:
        the Quick Publish type
      • setTaskGroupId

        void setTaskGroupId(java.lang.Long anTaskGroupId)
        Sets the Task Group ID
        Parameters:
        anTaskGroupId - The ID of the Task Group.
      • setDueDate

        void setDueDate(java.sql.Timestamp dDueDate)
        Sets the due date of the Task Group. A null value means that there is no due date.
        Parameters:
        dDueDate - The due date of the Task Group.
      • setPromotionDate

        void setPromotionDate(java.sql.Timestamp dPromotionDate)
        Sets the promotion date of the Task Group. A null value means that there is no scheduled promotion.
        Parameters:
        dPromotionDate - The promotion date of the Task Group.
      • setPersistentType

        void setPersistentType(java.lang.Integer argPersistent)
        Sets the persistent type of the Task Group. A persistent Task Group is remains available for reuse once the Task Group is promoted. A null value indicates that this value does not need to be updated.
        Parameters:
        argPersistent - The persistent type of the Task Group.
      • setQuickPublishType

        void setQuickPublishType(java.lang.Integer argQuickPublish)
        Sets the quick publish type of the Task Group. If a Task group has Quick Publish enabled, the content will be published to production at the same time as it is promoted. A null value indicates that this value does not need to be updated.
        Parameters:
        argQuickPublish - The quick publish type of the Task Group.