2 * Copyright (c) 2018 ZTE Corporation.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the Apache License, Version 2.0
5 * and the Eclipse Public License v1.0 which both accompany this distribution,
6 * and are available at http://www.eclipse.org/legal/epl-v10.html
7 * and http://www.apache.org/licenses/LICENSE-2.0
10 * ZTE - initial API and implementation and/or initial documentation
12 package org.onap.sdc.workflowdesigner.resources.entity;
14 import com.fasterxml.jackson.annotation.JsonInclude;
15 import com.fasterxml.jackson.annotation.JsonInclude.Include;
20 @JsonInclude(Include.NON_NULL)
21 public class ExtActivity {
24 private I18nString displayName;
26 private I18nString description;
30 private IconData icon;
32 private Content content;
37 public String getId() {
42 * @param id the id to set
44 public void setId(String id) {
51 public String getType() {
56 * @param type the type to set
58 public void setType(String type) {
65 public IconData getIcon() {
70 * @param icon the icon to set
72 public void setIcon(IconData icon) {
79 public Content getContent() {
84 * @param content the content to set
86 public void setContent(Content content) {
87 this.content = content;
91 * @return the displayName
93 public I18nString getDisplayName() {
98 * @param displayName the displayName to set
100 public void setDisplayName(I18nString displayName) {
101 this.displayName = displayName;
105 * @return the description
107 public I18nString getDescription() {
112 * @param description the description to set
114 public void setDescription(I18nString description) {
115 this.description = description;