Package org.objectweb.joram.shared
Interface MessageErrorConstants
-
public interface MessageErrorConstantsA collection of constants listing the different reasons why a message can be sent to a DMQ.
-
-
Field Summary
Fields Modifier and Type Field Description static shortADMIN_DELETEDIf the message has been deleted by an admin request.static shortDELETED_DESTIf the target destination of the message could not be found.static shortEXPIREDIf the message expired before delivery.static shortINTERCEPTORSIf an interceptors error happened.static shortNOT_ALLOWEDIf the client tried to work with some entity in a manner that is prohibited by the serverstatic shortNOT_WRITEABLEIf the target destination of the message did not accept the sender as a WRITER.static shortQUEUE_FULLIf the queue has reached its max number of messages.static shortUNDELIVERABLEIf the number of delivery attempts of the message overtook the threshold.static shortUNEXPECTED_ERRORIf an unexpected error happened during delivery.
-
-
-
Field Detail
-
EXPIRED
static final short EXPIRED
If the message expired before delivery.- See Also:
- Constant Field Values
-
NOT_WRITEABLE
static final short NOT_WRITEABLE
If the target destination of the message did not accept the sender as a WRITER.- See Also:
- Constant Field Values
-
UNDELIVERABLE
static final short UNDELIVERABLE
If the number of delivery attempts of the message overtook the threshold.- See Also:
- Constant Field Values
-
ADMIN_DELETED
static final short ADMIN_DELETED
If the message has been deleted by an admin request.- See Also:
- Constant Field Values
-
DELETED_DEST
static final short DELETED_DEST
If the target destination of the message could not be found.- See Also:
- Constant Field Values
-
QUEUE_FULL
static final short QUEUE_FULL
If the queue has reached its max number of messages.- See Also:
- Constant Field Values
-
UNEXPECTED_ERROR
static final short UNEXPECTED_ERROR
If an unexpected error happened during delivery.- See Also:
- Constant Field Values
-
INTERCEPTORS
static final short INTERCEPTORS
If an interceptors error happened.- See Also:
- Constant Field Values
-
NOT_ALLOWED
static final short NOT_ALLOWED
If the client tried to work with some entity in a manner that is prohibited by the server- See Also:
- Constant Field Values
-
-