6aa97a00ba8b8a816f2b49b8d84188e12d8f6678
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / Parameter.java
1 /**
2  * Copyright 2017 [ZTE] and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14 package org.onap.workflow.activitiext.common;
15
16 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
17
18 import lombok.AllArgsConstructor;
19 import lombok.Data;
20 import lombok.NoArgsConstructor;
21
22 @Data
23 @NoArgsConstructor
24 @AllArgsConstructor
25 @JsonIgnoreProperties(ignoreUnknown = true)
26 public class Parameter {
27
28         private String position;
29         private String type;
30         private String name;
31         private String value;
32         private String valueSource;
33 }