Interface ConstraintEntity

  • All Superinterfaces:
    Serializable
    All Known Subinterfaces:
    ConstraintEntityJob

    public interface ConstraintEntity
    extends Serializable
    A representation of the entity to use for constraint evaluation. This representation can be one of the following:
    • a real Job
    • a JobChainCall if the constraint is being evaluated in the job chain editor
    • a row in a Table if the constraint is being evaluated in the context of a table
    • Method Detail

      • getParameterByName

        ConstraintEntityParameter getParameterByName​(String name)
        Gets the parameter by name from the entity itself.
        Parameters:
        name - of the parameter
        Returns:
        null if the parameter does not exist, the parameter otherwise.
      • getDefinitionParameterByName

        ConstraintEntityDefinitionParameter getDefinitionParameterByName​(String name)
        Gets the parameter by name from the entity definition.
        Parameters:
        name - of the parameter
        Returns:
        null if the parameter does not exist, the parameter otherwise.
      • getDefinitionName

        String getDefinitionName()
        Gets the name of the entity definition.
        Returns:
        the name of the definition
      • getPartitionName

        String getPartitionName()
        Gets the name of the partition of the entity definition.
        Returns:
        the name of the partition.
      • supportedByProcessServer

        boolean supportedByProcessServer​(ProcessServer ps)
        Is the constraint entity supported by the passed in process server?
        Parameters:
        ps -
        Returns:
        true is the entity is supported
      • getContextTimeZone

        TimeZone getContextTimeZone()
        Get a time zone in which constraints can be evaluated.
        Returns:
        a time zone.
      • getQueue

        Queue getQueue()
        Get the queue that is set for the entity.
        Returns:
        a queue.
      • setQueue

        void setQueue​(Queue queue)
        Set the queue that is set for the entity.
        Parameters:
        queue - queue to set
      • setForcedProcessServer

        void setForcedProcessServer​(ProcessServer processServer)
        Set the process server
        Parameters:
        processServer - process server to set
      • getForcedProcessServer

        ProcessServer getForcedProcessServer()
        Get the process server
        Returns:
        the forced processServer
      • isQueueRoutingAllowed

        boolean isQueueRoutingAllowed()
        Should we do routing for Queues on this entity?
        Returns:
        true if we should do Queue Routing
      • unwrap

        SchedulerEntity unwrap()
        Unwraps the constraint entity by returning the underlying scheduler entity.
        Returns:
        the scheduler entity that is wrapped inside this constraint entity.