Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / ConstString.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.workflow.activitiext.common;
17
18 /**
19  * 
20  * @author 10222158
21  *
22  */
23 public class ConstString {
24
25   /**
26    * http method type : get
27    */
28   public static final String HTTP_GET = "GET";
29   
30   /**
31    * http method type : post
32    */
33   public static final String HTTP_POST = "POST";
34   
35   /**
36    * http method type : delete
37    */
38   public static final String HTTP_DELETE = "DELETE";
39   
40   /**
41    * http method type : put
42    */
43   public static final String HTTP_PUT = "PUT";
44   
45   /**
46    * parameter position : in the uri path
47    */
48   public static final String PARAMETER_POSITION_PATH = "path";
49   
50   /**
51    * parameter positoin : after the uri
52    */
53   public static final String PARAMETER_POSITION_QUERY = "query";
54   
55   /**
56    * parameter positoin : in the request body
57    */
58   public static final String PARAMETER_POSITION_BODY = "body";
59   
60   /**
61    * parameter type : string
62    */
63   public static final String PARAMETER_VALUE_SOURCE_STRING = "String";
64   
65   /**
66    * parameter type : plan 
67    */
68   public static final String PARAMETER_VALUE_SOURCE_PLAN = "Plan";
69   
70   /**
71    * parameter type : Topology
72    */
73   public static final String PARAMETER_VALUE_SOURCE_TOPOLOGY = "Topology";
74   
75   /**
76    * parameter type : Variable
77    */
78   public static final String PARAMETER_VALUE_SOURCE_VARIABLE = "Variable";
79   
80   /**
81    * parameter type : Definition
82    */
83   public static final String PARAMETER_VALUE_SOURCE_DEFINITION = "Definition";
84   
85   /**
86    * 
87    */
88   public static final String PARAMETER_VALUE = "value";
89   
90   /**
91    * 
92    */
93   public static final String PARAMETER_VALUESOURCE = "valueSource";
94   
95   /**
96    * 
97    */
98   public static final String CSARID_EXPRESSION = "csarId";
99 }