mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
added more priority constants
This commit is contained in:
@@ -41,7 +41,7 @@ import com.google.common.primitives.Ints;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Priority constants and util methods to sort classes by {@link Priority}
|
||||
* Priority constants and util methods to sort classes by {@link Priority}
|
||||
* annotation.
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
@@ -53,6 +53,9 @@ public final class Priorities
|
||||
/** authentication priority */
|
||||
public static final int AUTHENTICATION = 5000;
|
||||
|
||||
/** authorization priority */
|
||||
public static final int AUTHORIZATION = 6000;
|
||||
|
||||
/** base url priority */
|
||||
public static final int BASEURL = 1000;
|
||||
|
||||
@@ -62,12 +65,18 @@ public final class Priorities
|
||||
/** post authentication priority */
|
||||
public static final int POST_AUTHENTICATION = 5500;
|
||||
|
||||
/** pre authorization priority */
|
||||
public static final int POST_AUTHORIZATION = 6500;
|
||||
|
||||
/** post base url priority */
|
||||
public static final int POST_BASEURL = 1500;
|
||||
|
||||
/** pre authentication priority */
|
||||
public static final int PRE_AUTHENTICATION = 4500;
|
||||
|
||||
/** pre authorization priority */
|
||||
public static final int PRE_AUTHORIZATION = 5500;
|
||||
|
||||
/** pre base url priority */
|
||||
public static final int PRE_BASEURL = 500;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user