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.resources.entity;
\r 
  17 public class ExtActivity {
\r 
  20   private I18nString displayName;
\r 
  22   private I18nString description;
\r 
  24   private String type;
\r 
  26   private IconData icon;
\r 
  28   private Content content;
\r 
  33   public String getId() {
\r 
  38    * @param id the id to set
\r 
  40   public void setId(String id) {
\r 
  47   public String getType() {
\r 
  52    * @param type the type to set
\r 
  54   public void setType(String type) {
\r 
  61   public IconData getIcon() {
\r 
  66    * @param icon the icon to set
\r 
  68   public void setIcon(IconData icon) {
\r 
  73    * @return the content
\r 
  75   public Content getContent() {
\r 
  80    * @param content the content to set
\r 
  82   public void setContent(Content content) {
\r 
  83     this.content = content;
\r 
  87    * @return the displayName
\r 
  89   public I18nString getDisplayName() {
\r 
  94    * @param displayName the displayName to set
\r 
  96   public void setDisplayName(I18nString displayName) {
\r 
  97     this.displayName = displayName;
\r 
 101    * @return the description
\r 
 103   public I18nString getDescription() {
\r 
 104     return description;
\r 
 108    * @param description the description to set
\r 
 110   public void setDescription(I18nString description) {
\r 
 111     this.description = description;
\r