Package org.axonframework.common
Annotation Interface Priority
Indicates the relative priority of the annotated component. Components with a higher priority are considered before
those with lower priority.
- Since:
- 2.1
- Author:
- Allard Buijze
-
Optional Element Summary
Optional Elements -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intValue indicating the annotated member should be the very firststatic final intValue indicating the annotated member should have high priority, effectively placing it "in the first half".static final intValue indicating the annotated member should be placed at the "upper quarter".static final intValue indicating the annotated member should come last.static final intValue indicating the annotated member should be placed at the "lower half".static final intValue indicating the annotated member should be placed at the "lower quarter".static final intValue indicating the annotated member should have medium priority, effectively placing it "in the middle".
-
Field Details
-
LAST
static final int LASTValue indicating the annotated member should come last.- See Also:
-
LOWER
static final int LOWERValue indicating the annotated member should be placed at the "lower quarter".- See Also:
-
LOW
static final int LOWValue indicating the annotated member should be placed at the "lower half".- See Also:
-
NEUTRAL
static final int NEUTRALValue indicating the annotated member should have medium priority, effectively placing it "in the middle".- See Also:
-
HIGH
static final int HIGHValue indicating the annotated member should have high priority, effectively placing it "in the first half".- See Also:
-
HIGHER
static final int HIGHERValue indicating the annotated member should be placed at the "upper quarter".- See Also:
-
FIRST
static final int FIRSTValue indicating the annotated member should be the very first- See Also:
-
-
Element Details
-
value
int valueA value indicating the priority. Members with higher values must come before members with a lower value- Default:
0
-