Interface RoutingConstraint
-
public interface RoutingConstraint
A constraint that constrains the queue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyForcedProcessServerRouting(ConstraintContext context)
Possibility to overrule (apply routing) for the forced process server.void
applyQueueRouting(ConstraintContext context)
Possibility to overrule (apply routing) the queue.boolean
isAllowedForcedProcessServer(ConstraintContext context, ProcessServer processServer)
Does this constraint allow this process server as a forced process server?boolean
isAllowedQueue(ConstraintContext context, Queue queue)
Does this constraint allow this queue?
-
-
-
Method Detail
-
isAllowedQueue
boolean isAllowedQueue(ConstraintContext context, Queue queue)
Does this constraint allow this queue?- Parameters:
context
- the constraint contextqueue
- the queue in question- Returns:
- true if the queue is allowed, false otherwise.
-
applyQueueRouting
void applyQueueRouting(ConstraintContext context)
Possibility to overrule (apply routing) the queue. Queue routing is only applied when the queue is inherited by it's parent The default behavior of the implementation should be: Overwrite any unexpected queue without testing- Parameters:
context
- the constraint context
-
isAllowedForcedProcessServer
boolean isAllowedForcedProcessServer(ConstraintContext context, ProcessServer processServer)
Does this constraint allow this process server as a forced process server?- Parameters:
context
- the constraint contextprocessServer
- the process server in question- Returns:
- true if the process server is allowed, false otherwise.
-
applyForcedProcessServerRouting
void applyForcedProcessServerRouting(ConstraintContext context)
Possibility to overrule (apply routing) for the forced process server. The default behavior of the implementation should be: The forced process server is set when the constraint can find a process server for the parameter value that serves this constraint.- Parameters:
context
- the constraint context
-
-