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 ActivityContent {
\r
20 @SerializedName("class")
\r
21 private String clazz;
\r
23 private String scriptFormat;
\r
25 private String script;
\r
30 public String getClazz() {
\r
35 * @param clazz the clazz to set
\r
37 public void setClazz(String clazz) {
\r
42 * @return the scriptFormat
\r
44 public String getScriptFormat() {
\r
45 return scriptFormat;
\r
49 * @param scriptFormat the scriptFormat to set
\r
51 public void setScriptFormat(String scriptFormat) {
\r
52 this.scriptFormat = scriptFormat;
\r
56 * @return the script
\r
58 public String getScript() {
\r
63 * @param script the script to set
\r
65 public void setScript(String script) {
\r
66 this.script = script;
\r