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