529f43e9a76d22fe4dd9a4ba2a61e6341fa35e69
[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.resources.entity;\r
13 \r
14 /**\r
15  *\r
16  */\r
17 public class ExtendActivity {\r
18   private String id;\r
19   \r
20   private I18nString displayName;\r
21   \r
22   private I18nString description;\r
23   \r
24   private String type;\r
25   \r
26   private Content content;\r
27 \r
28   /**\r
29    * @return the id\r
30    */\r
31   public String getId() {\r
32     return id;\r
33   }\r
34 \r
35   /**\r
36    * @param id the id to set\r
37    */\r
38   public void setId(String id) {\r
39     this.id = id;\r
40   }\r
41 \r
42   /**\r
43    * @return the type\r
44    */\r
45   public String getType() {\r
46     return type;\r
47   }\r
48 \r
49   /**\r
50    * @param type the type to set\r
51    */\r
52   public void setType(String type) {\r
53     this.type = type;\r
54   }\r
55 \r
56   /**\r
57    * @return the content\r
58    */\r
59   public Content getContent() {\r
60     return content;\r
61   }\r
62 \r
63   /**\r
64    * @param content the content to set\r
65    */\r
66   public void setContent(Content content) {\r
67     this.content = content;\r
68   }\r
69 \r
70   /**\r
71    * @return the displayName\r
72    */\r
73   public I18nString getDisplayName() {\r
74     return displayName;\r
75   }\r
76 \r
77   /**\r
78    * @param displayName the displayName to set\r
79    */\r
80   public void setDisplayName(I18nString displayName) {\r
81     this.displayName = displayName;\r
82   }\r
83 \r
84   /**\r
85    * @return the description\r
86    */\r
87   public I18nString getDescription() {\r
88     return description;\r
89   }\r
90 \r
91   /**\r
92    * @param description the description to set\r
93    */\r
94   public void setDescription(I18nString description) {\r
95     this.description = description;\r
96   }\r
97   \r
98   \r
99 \r
100 }\r