2 * Copyright (c) 2018 ZTE Corporation.
\r
3 * All rights reserved. This program and the accompanying materials
\r
4 * are made available under the Apache License, Version 2.0
\r
5 * and the Eclipse Public License v1.0 which both accompany this distribution,
\r
6 * and are available at http://www.eclipse.org/legal/epl-v10.html
\r
7 * and http://www.apache.org/licenses/LICENSE-2.0
\r
10 * ZTE - initial API and implementation and/or initial documentation
\r
12 package org.onap.sdc.workflowdesigner.externalservice.sdc.entity;
\r
14 import com.google.gson.annotations.SerializedName;
\r
19 public class Parameter {
\r
20 private String name;
\r
22 private String type;
\r
24 @SerializedName("default")
\r
25 private String defaultValue;
\r
27 private String value;
\r
32 public String getName() {
\r
37 * @param name the name to set
\r
39 public void setName(String name) {
\r
46 public String getType() {
\r
51 * @param type the type to set
\r
53 public void setType(String type) {
\r
58 * @return the defaultValue
\r
60 public String getDefaultValue() {
\r
61 return defaultValue;
\r
65 * @param defaultValue the defaultValue to set
\r
67 public void setDefaultValue(String defaultValue) {
\r
68 this.defaultValue = defaultValue;
\r
74 public String getValue() {
\r
79 * @param value the value to set
\r
81 public void setValue(String value) {
\r