Uses of Class
de.danet.an.workflow.api.PrioritizedMessage.Priority

Packages that use PrioritizedMessage.Priority
de.danet.an.workflow.api This package defines the the workflow API provided by Danet's workflow component.  
 

Uses of PrioritizedMessage.Priority in de.danet.an.workflow.api
 

Fields in de.danet.an.workflow.api declared as PrioritizedMessage.Priority
static PrioritizedMessage.Priority PrioritizedMessage.Priority.DEBUG
          The DEBUG priority designates fine-grained informational events that are most useful to debug an application.
static PrioritizedMessage.Priority PrioritizedMessage.Priority.INFO
          The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
static PrioritizedMessage.Priority PrioritizedMessage.Priority.WARN
          The WARN level designates potentially harmful situations.
static PrioritizedMessage.Priority PrioritizedMessage.Priority.ERROR
          The ERROR level designates error events that might still allow the application to continue running.
static PrioritizedMessage.Priority PrioritizedMessage.Priority.FATAL
          The FATAL level designates very severe error events that will presumably lead the application to abort.
 

Methods in de.danet.an.workflow.api that return PrioritizedMessage.Priority
 PrioritizedMessage.Priority PrioritizedMessage.priority()
          Returns the priority of the message.
 

Constructors in de.danet.an.workflow.api with parameters of type PrioritizedMessage.Priority
PrioritizedMessage(PrioritizedMessage.Priority priority, java.lang.String message)
          Constructs a prioritized message.
PrioritizedMessage(PrioritizedMessage.Priority priority, java.lang.String message, java.lang.Object[] data)
          Constructs a prioritized message.