Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / Parameter.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 public class Parameter {
19
20         private String position;
21         private String type;
22         private String name;
23         private String value;
24         private String valueSource;
25         public String getPosition() {
26                 return position;
27         }
28         public void setPosition(String position) {
29                 this.position = position;
30         }
31         public String getType() {
32                 return type;
33         }
34         public void setType(String type) {
35                 this.type = type;
36         }
37         public String getName() {
38                 return name;
39         }
40         public void setName(String name) {
41                 this.name = name;
42         }
43         public String getValue() {
44                 return value;
45         }
46         public void setValue(String value) {
47                 this.value = value;
48         }
49         public String getValueSource() {
50                 return valueSource;
51         }
52         public void setValueSource(String valueSource) {
53                 this.valueSource = valueSource;
54         }
55         
56 }