* Return action associated with CasProcessor restart tolerance.
*
* @return - action as string ( terminate, continue, disable), null when not defined
*/
public String getActionOnMaxRestart() {
CasProcessorErrorHandling eh = getErrorHandling();
if (eh != null && eh.getMaxConsecutiveRestarts() != null) {
return eh.getMaxConsecutiveRestarts().getAction();
}
return null;
}