Interface RoutingConstraint
- 
 public interface RoutingConstraintA constraint that constrains the queue.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyForcedProcessServerRouting(ConstraintContext context)Possibility to overrule (apply routing) for the forced process server.voidapplyQueueRouting(ConstraintContext context)Possibility to overrule (apply routing) the queue.booleanisAllowedForcedProcessServer(ConstraintContext context, ProcessServer processServer)Does this constraint allow this process server as a forced process server?booleanisAllowedQueue(ConstraintContext context, Queue queue)Does this constraint allow this queue?
 
- 
- 
- 
Method Detail- 
isAllowedQueueboolean isAllowedQueue(ConstraintContext context, Queue queue) Does this constraint allow this queue?- Parameters:
- context- the constraint context
- queue- the queue in question
- Returns:
- true if the queue is allowed, false otherwise.
 
 - 
applyQueueRoutingvoid 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
 
 - 
isAllowedForcedProcessServerboolean isAllowedForcedProcessServer(ConstraintContext context, ProcessServer processServer) Does this constraint allow this process server as a forced process server?- Parameters:
- context- the constraint context
- processServer- the process server in question
- Returns:
- true if the process server is allowed, false otherwise.
 
 - 
applyForcedProcessServerRoutingvoid 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
 
 
- 
 
-