2 * Copyright 2018 ZTE Corporation.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.sdc.workflowdesigner.externalservice.sdc.entity;
18 import java.io.Serializable;
20 public class WorkflowArtifactInfo implements Serializable {
21 public static final long serialVersionUID = 1L;
23 private String artifactName;
25 private String description;
27 private String artifactType = "WORKFLOW";
29 private String payloadData;
38 public WorkflowArtifactInfo(String artifactName, String description, String artifactType,
41 this.artifactName = artifactName;
42 this.description = description;
43 this.artifactType = artifactType;
44 this.payloadData = payloadData;
48 * @return the artifactName
50 public String getArtifactName() {
55 * @param artifactName the artifactName to set
57 public void setArtifactName(String artifactName) {
58 this.artifactName = artifactName;
62 * @return the description
64 public String getDescription() {
69 * @param description the description to set
71 public void setDescription(String description) {
72 this.description = description;
76 * @return the artifactType
78 public String getArtifactType() {
83 * @param artifactType the artifactType to set
85 public void setArtifactType(String artifactType) {
86 this.artifactType = artifactType;
90 * @return the payloadData
92 public String getPayloadData() {
97 * @param payloadData the payloadData to set
99 public void setPayloadData(String payloadData) {
100 this.payloadData = payloadData;
104 * @return the serialversionuid
106 public static long getSerialversionuid() {
107 return serialVersionUID;