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 ExtendActivity {
\r
20 private I18nString displayName;
\r
22 private I18nString description;
\r
24 private String type;
\r
26 private Content content;
\r
31 public String getId() {
\r
36 * @param id the id to set
\r
38 public void setId(String id) {
\r
45 public String getType() {
\r
50 * @param type the type to set
\r
52 public void setType(String type) {
\r
57 * @return the content
\r
59 public Content getContent() {
\r
64 * @param content the content to set
\r
66 public void setContent(Content content) {
\r
67 this.content = content;
\r
71 * @return the displayName
\r
73 public I18nString getDisplayName() {
\r
78 * @param displayName the displayName to set
\r
80 public void setDisplayName(I18nString displayName) {
\r
81 this.displayName = displayName;
\r
85 * @return the description
\r
87 public I18nString getDescription() {
\r
92 * @param description the description to set
\r
94 public void setDescription(I18nString description) {
\r
95 this.description = description;
\r