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.rest.api.service;
20  
21  public interface JAXRSService {
22  
23      String PARAM_FIQL = "fiql";
24  
25      String PARAM_PAGE = "page";
26  
27      String PARAM_SIZE = "size";
28  
29      String PARAM_ORDERBY = "orderby";
30  
31      String PARAM_KEYWORD = "keyword";
32  
33      String PARAM_RESOURCE = "resource";
34  
35      String PARAM_NOTIFICATION = "notification";
36  
37      String PARAM_ANYTYPE_KIND = "anyTypeKind";
38  
39      String PARAM_ENTITY_KEY = "entityKey";
40  
41      String PARAM_USER = "user";
42  
43      String PARAM_REALM = "realm";
44  
45      String PARAM_RECURSIVE = "recursive";
46  
47      String PARAM_DETAILS = "details";
48  
49      String PARAM_CONNID_PAGED_RESULTS_COOKIE = "connIdPagedResultsCookie";
50  
51      String PARAM_MAX = "max";
52  
53      String PARAM_ANYTYPEKEY = "anyTypeKey";
54  
55      String DOUBLE_DASH = "--";
56  
57      String CRLF = "\r\n";
58  
59  }