Java Code Examples for org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#PRE_TYPE

The following examples show how to use org.springframework.cloud.netflix.zuul.filters.support.FilterConstants#PRE_TYPE . 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: MyFilter.java    From blog-examples with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 2
Source File: AccessFilter.java    From pig with MIT License 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 3
Source File: DecodePasswordFilter.java    From pig with MIT License 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 4
Source File: EncodedCharactersFilter.java    From api-layer with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 5
Source File: PreviewFilter.java    From Taroco with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 6
Source File: AccessFilter.java    From fw-cloud-framework with MIT License 4 votes vote down vote up
@Override
public String filterType() {
	return FilterConstants.PRE_TYPE;
}
 
Example 7
Source File: UserInfoHeaderFilter.java    From Taroco with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 8
Source File: FilterPre.java    From roncoo-education with MIT License 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 9
Source File: ApiFilter.java    From wingcloud with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    //前缀过滤
    return FilterConstants.PRE_TYPE;
}
 
Example 10
Source File: TraceFilter.java    From zuihou-admin-cloud with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 11
Source File: BlackIPAccessFilter.java    From cloud-service with MIT License 4 votes vote down vote up
@Override
public String filterType() {
	return FilterConstants.PRE_TYPE;
}
 
Example 12
Source File: AuthFilter.java    From xmfcn-spring-cloud with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 13
Source File: RateLimiterFilter.java    From code with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 14
Source File: GrayPreZuulFilter.java    From spring-cloud-gray with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 15
Source File: AuthSellerFilter.java    From code with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 16
Source File: PreLimiterZuulFilter.java    From onetwo with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
	return FilterConstants.PRE_TYPE;
}
 
Example 17
Source File: TraceFilter.java    From microservices-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 18
Source File: RequestStatisticsFilter.java    From microservices-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 19
Source File: UserInfoHeaderFilter.java    From microservices-platform with Apache License 2.0 4 votes vote down vote up
@Override
public String filterType() {
    return FilterConstants.PRE_TYPE;
}
 
Example 20
Source File: InternalURIAccessFilter.java    From cloud-service with MIT License 4 votes vote down vote up
@Override
public String filterType() {
	return FilterConstants.PRE_TYPE;
}