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.externalservice.sdc.entity;
\r
17 public class ActivitySpec {
\r
20 private String versionId;
\r
22 private String name;
\r
24 private String description;
\r
26 private String type;
\r
28 private String content;
\r
30 private String[] categoryList;
\r
32 private Parameter[] inputs;
\r
34 private Parameter[] outputs;
\r
36 private String status;
\r
41 public String getId() {
\r
46 * @param id the id to set
\r
48 public void setId(String id) {
\r
53 * @return the versionId
\r
55 public String getVersionId() {
\r
60 * @param versionId the versionId to set
\r
62 public void setVersionId(String versionId) {
\r
63 this.versionId = versionId;
\r
69 public String getName() {
\r
74 * @param name the name to set
\r
76 public void setName(String name) {
\r
81 * @return the description
\r
83 public String getDescription() {
\r
88 * @param description the description to set
\r
90 public void setDescription(String description) {
\r
91 this.description = description;
\r
97 public String getType() {
\r
102 * @param type the type to set
\r
104 public void setType(String type) {
\r
109 * @return the content
\r
111 public String getContent() {
\r
116 * @param content the content to set
\r
118 public void setContent(String content) {
\r
119 this.content = content;
\r
123 * @return the categoryList
\r
125 public String[] getCategoryList() {
\r
126 return categoryList;
\r
130 * @param categoryList the categoryList to set
\r
132 public void setCategoryList(String[] categoryList) {
\r
133 this.categoryList = categoryList;
\r
137 * @return the inputs
\r
139 public Parameter[] getInputs() {
\r
144 * @param inputs the inputs to set
\r
146 public void setInputs(Parameter[] inputs) {
\r
147 this.inputs = inputs;
\r
151 * @return the outputs
\r
153 public Parameter[] getOutputs() {
\r
158 * @param outputs the outputs to set
\r
160 public void setOutputs(Parameter[] outputs) {
\r
161 this.outputs = outputs;
\r
165 * @return the status
\r
167 public String getStatus() {
\r
172 * @param status the status to set
\r
174 public void setStatus(String status) {
\r
175 this.status = status;
\r