Java Code Examples for org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#SEND_ERROR_FILTER_ORDER
The following examples show how to use
org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#SEND_ERROR_FILTER_ORDER .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ZuulErrorFilter.java From open-cloud with MIT License | 4 votes |
@Override public int filterOrder() { return FilterConstants.SEND_ERROR_FILTER_ORDER; }
Example 2
Source File: ValidateCodeFilter.java From Taroco with Apache License 2.0 | 4 votes |
@Override public int filterOrder() { return FilterConstants.SEND_ERROR_FILTER_ORDER + 1; }
Example 3
Source File: ValidateCodeFilter.java From pig with MIT License | 4 votes |
@Override public int filterOrder() { return FilterConstants.SEND_ERROR_FILTER_ORDER + 1; }
Example 4
Source File: DecodePasswordFilter.java From pig with MIT License | 4 votes |
@Override public int filterOrder() { return FilterConstants.SEND_ERROR_FILTER_ORDER + 2; }