e97fd8e2aaad67ae8a2ffc941d392a06efd23df2
[sdc/sdc-workflow-designer.git] /
1 /**\r
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
8  *\r
9  * Contributors:\r
10  *     ZTE - initial API and implementation and/or initial documentation\r
11  */\r
12 package org.onap.sdc.workflowdesigner.externalservice.sdc.entity;\r
13 \r
14 import com.google.gson.annotations.SerializedName;\r
15 \r
16 /**\r
17  *\r
18  */\r
19 public class ActivityContent {\r
20   @SerializedName("class")\r
21   private String clazz;\r
22   \r
23   private String scriptFormat;\r
24   \r
25   private String script;\r
26 \r
27   /**\r
28    * @return the clazz\r
29    */\r
30   public String getClazz() {\r
31     return clazz;\r
32   }\r
33 \r
34   /**\r
35    * @param clazz the clazz to set\r
36    */\r
37   public void setClazz(String clazz) {\r
38     this.clazz = clazz;\r
39   }\r
40 \r
41   /**\r
42    * @return the scriptFormat\r
43    */\r
44   public String getScriptFormat() {\r
45     return scriptFormat;\r
46   }\r
47 \r
48   /**\r
49    * @param scriptFormat the scriptFormat to set\r
50    */\r
51   public void setScriptFormat(String scriptFormat) {\r
52     this.scriptFormat = scriptFormat;\r
53   }\r
54 \r
55   /**\r
56    * @return the script\r
57    */\r
58   public String getScript() {\r
59     return script;\r
60   }\r
61 \r
62   /**\r
63    * @param script the script to set\r
64    */\r
65   public void setScript(String script) {\r
66     this.script = script;\r
67   }\r
68   \r
69   \r
70 }\r