JobFailureSeverity ================== .. java:package:: org.caosdb.server.jobs.core :noindex: .. java:type:: public enum JobFailureSeverity Describes the severity of a failure of a job (esp. consitency checks). .. * \ :java:ref:`ERROR`\ - a failure throws an error and the transaction will not succeed. * \ :java:ref:`WARN`\ - a failure produces a warning but the transaction may succeed anyway. * \ :java:ref:`IGNORE`\ - the job may fail silently. Jobs can also decide to not run at all if that is not necessary in this case. Jobs where this doesn't make sense at all may also ignore the severity. It is rather a convenient way to configure jobs where this makes sense than a definitive normative property of a job. :author: Timm Fitschen Enum Constants -------------- ERROR ^^^^^ .. java:field:: public static final JobFailureSeverity ERROR :outertype: JobFailureSeverity IGNORE ^^^^^^ .. java:field:: public static final JobFailureSeverity IGNORE :outertype: JobFailureSeverity WARN ^^^^ .. java:field:: public static final JobFailureSeverity WARN :outertype: JobFailureSeverity