371d8d70009421864800aa0f80a976872d8f5266
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / restservicetask / ConstString.java
1 /**\r
2  * Copyright 2016-2017 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 package org.onap.workflow.activitiext.restservicetask;\r
17 \r
18 /**\r
19  * \r
20  * @author 10222158\r
21  *\r
22  */\r
23 public class ConstString {\r
24 \r
25   /**\r
26    * http method type : get\r
27    */\r
28   public static final String HTTP_GET = "GET";\r
29   \r
30   /**\r
31    * http method type : post\r
32    */\r
33   public static final String HTTP_POST = "POST";\r
34   \r
35   /**\r
36    * http method type : delete\r
37    */\r
38   public static final String HTTP_DELETE = "DELETE";\r
39   \r
40   /**\r
41    * http method type : put\r
42    */\r
43   public static final String HTTP_PUT = "PUT";\r
44   \r
45   /**\r
46    * parameter position : in the uri path\r
47    */\r
48   public static final String PARAMETER_POSITION_PATH = "path";\r
49   \r
50   /**\r
51    * parameter positoin : after the uri\r
52    */\r
53   public static final String PARAMETER_POSITION_QUERY = "query";\r
54   \r
55   /**\r
56    * parameter positoin : in the request body\r
57    */\r
58   public static final String PARAMETER_POSITION_BODY = "body";\r
59   \r
60   /**\r
61    * parameter type : string\r
62    */\r
63   public static final String PARAMETER_TYPE_STRING = "string";\r
64   \r
65   /**\r
66    * parameter type : acitviti expression\r
67    */\r
68   public static final String PARAMETER_TYPE_EXPRESSION = "expression";\r
69   \r
70 }\r