View Javadoc

1   package com.atlassian.plugin.servlet.filter;
2   
3   /**
4    * An enumeration defining the places plugin filters can appear in an applications filter stack.  Filters in the "top"
5    * location will be passed through first, followed by filters in the "middle" and then filters in the "bottom". 
6    * Where these locations appear relative to other filters in the application is dependent on the application. 
7    * 
8    * @since 2.1.0
9    */
10  public enum FilterLocation {
11      top, middle, bottom
12  }