View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.common.lib.types;
20  
21  public enum SRARouteFilterFactory {
22      ADD_REQUEST_HEADER,
23      ADD_REQUEST_PARAMETER,
24      ADD_RESPONSE_HEADER,
25      DEDUPE_RESPONSE_HEADER,
26      FALLBACK_HEADERS,
27      MAP_REQUEST_HEADER,
28      PREFIX_PATH,
29      PRESERVE_HOST_HEADER,
30      REDIRECT_TO,
31      REMOVE_REQUEST_HEADER,
32      REMOVE_RESPONSE_HEADER,
33      REQUEST_RATE_LIMITER,
34      REWRITE_PATH,
35      REWRITE_LOCATION,
36      RETRY,
37      SECURE_HEADERS,
38      SET_PATH,
39      SET_REQUEST_HEADER,
40      SET_RESPONSE_HEADER,
41      REWRITE_RESPONSE_HEADER,
42      SET_STATUS,
43      SAVE_SESSION,
44      STRIP_PREFIX,
45      REQUEST_HEADER_TO_REQUEST_URI,
46      SET_REQUEST_SIZE,
47      SET_REQUEST_HOST,
48      LINK_REWRITE,
49      CLIENT_CERTS_TO_REQUEST_HEADER,
50      QUERY_PARAM_TO_REQUEST_HEADER,
51      PRINCIPAL_TO_REQUEST_HEADER,
52      CUSTOM
53  
54  }