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