Get Icon Data of Extend Activity.
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-server / src / main / java / org / onap / sdc / workflowdesigner / resources / entity / ExtendActivity.java
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 IconData icon;\r
27   \r
28   private Content content;\r
29 \r
30   /**\r
31    * @return the id\r
32    */\r
33   public String getId() {\r
34     return id;\r
35   }\r
36 \r
37   /**\r
38    * @param id the id to set\r
39    */\r
40   public void setId(String id) {\r
41     this.id = id;\r
42   }\r
43 \r
44   /**\r
45    * @return the type\r
46    */\r
47   public String getType() {\r
48     return type;\r
49   }\r
50 \r
51   /**\r
52    * @param type the type to set\r
53    */\r
54   public void setType(String type) {\r
55     this.type = type;\r
56   }\r
57 \r
58   /**\r
59    * @return the icon\r
60    */\r
61   public IconData getIcon() {\r
62     return icon;\r
63   }\r
64 \r
65   /**\r
66    * @param icon the icon to set\r
67    */\r
68   public void setIcon(IconData icon) {\r
69     this.icon = icon;\r
70   }\r
71 \r
72   /**\r
73    * @return the content\r
74    */\r
75   public Content getContent() {\r
76     return content;\r
77   }\r
78 \r
79   /**\r
80    * @param content the content to set\r
81    */\r
82   public void setContent(Content content) {\r
83     this.content = content;\r
84   }\r
85 \r
86   /**\r
87    * @return the displayName\r
88    */\r
89   public I18nString getDisplayName() {\r
90     return displayName;\r
91   }\r
92 \r
93   /**\r
94    * @param displayName the displayName to set\r
95    */\r
96   public void setDisplayName(I18nString displayName) {\r
97     this.displayName = displayName;\r
98   }\r
99 \r
100   /**\r
101    * @return the description\r
102    */\r
103   public I18nString getDescription() {\r
104     return description;\r
105   }\r
106 \r
107   /**\r
108    * @param description the description to set\r
109    */\r
110   public void setDescription(I18nString description) {\r
111     this.description = description;\r
112   }\r
113   \r
114   \r
115 \r
116 }\r