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.resources.entity;
\r
14 import java.util.Map;
\r
16 import com.fasterxml.jackson.annotation.JsonProperty;
\r
17 import com.google.gson.annotations.SerializedName;
\r
22 public class Content {
\r
23 @JsonProperty(value="class") // for dropwizard's Jackson
\r
24 @SerializedName("class") // for Gson
\r
25 public String clazz;
\r
27 private String script;
\r
29 private String scriptFormat;
\r
31 private Map<String, InputOutput> inputs;
\r
33 private Map<String, InputOutput> outputs;
\r
37 * @return the script
\r
39 public String getScript() {
\r
44 * @param script the script to set
\r
46 public void setScript(String script) {
\r
47 this.script = script;
\r
51 * @return the scriptFormat
\r
53 public String getScriptFormat() {
\r
54 return scriptFormat;
\r
58 * @param scriptFormat the scriptFormat to set
\r
60 public void setScriptFormat(String scriptFormat) {
\r
61 this.scriptFormat = scriptFormat;
\r
65 * @return the inputs
\r
67 public Map<String, InputOutput> getInputs() {
\r
72 * @param inputs the inputs to set
\r
74 public void setInputs(Map<String, InputOutput> inputs) {
\r
75 this.inputs = inputs;
\r
79 * @return the outputs
\r
81 public Map<String, InputOutput> getOutputs() {
\r
86 * @param outputs the outputs to set
\r
88 public void setOutputs(Map<String, InputOutput> outputs) {
\r
89 this.outputs = outputs;
\r