e2cab05e8880136e570f6227bcc21262cd96dcf2
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright 2018 ZTE Corporation.
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.sdc.workflowdesigner.externalservice.sdc.entity;
17
18 import java.io.Serializable;
19
20 public class WorkflowArtifactInfo implements Serializable {
21   public static final long serialVersionUID = 1L;
22
23   private String artifactName;
24   
25   private String description;
26   
27   private String artifactType = "WORKFLOW";
28   
29   private String payloadData;
30   
31   public WorkflowArtifactInfo(String artifactName, String description,
32       String payloadData) {
33     super();
34     this.artifactName = artifactName;
35     this.description = description;
36     this.payloadData = payloadData;
37   }
38
39   /**
40    * @return the artifactName
41    */
42   public String getArtifactName() {
43     return artifactName;
44   }
45
46   /**
47    * @param artifactName the artifactName to set
48    */
49   public void setArtifactName(String artifactName) {
50     this.artifactName = artifactName;
51   }
52
53   /**
54    * @return the description
55    */
56   public String getDescription() {
57     return description;
58   }
59
60   /**
61    * @param description the description to set
62    */
63   public void setDescription(String description) {
64     this.description = description;
65   }
66
67   /**
68    * @return the artifactType
69    */
70   public String getArtifactType() {
71     return artifactType;
72   }
73
74   /**
75    * @param artifactType the artifactType to set
76    */
77   public void setArtifactType(String artifactType) {
78     this.artifactType = artifactType;
79   }
80
81   /**
82    * @return the payloadData
83    */
84   public String getPayloadData() {
85     return payloadData;
86   }
87
88   /**
89    * @param payloadData the payloadData to set
90    */
91   public void setPayloadData(String payloadData) {
92     this.payloadData = payloadData;
93   }
94
95   /**
96    * @return the serialversionuid
97    */
98   public static long getSerialversionuid() {
99     return serialVersionUID;
100   }
101
102 }