Implement interface to SDC for ActivitySpec
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / activity / beans / ActivitySpec.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.asdc.activity.beans;
21
22 import java.util.List;
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
26 import org.apache.commons.lang.builder.ToStringBuilder;
27
28 @JsonInclude(JsonInclude.Include.NON_NULL)
29 @JsonPropertyOrder({"name", "description", "categoryList", "inputs", "outputs"})
30 public class ActivitySpec {
31
32     @JsonProperty("name")
33     private String name;
34     @JsonProperty("description")
35     private String description;
36     @JsonProperty("categoryList")
37     private List<String> categoryList = null;
38     @JsonProperty("inputs")
39     private List<Input> inputs = null;
40     @JsonProperty("outputs")
41     private List<Output> outputs = null;
42
43     @JsonProperty("name")
44     public String getName() {
45         return name;
46     }
47
48     @JsonProperty("name")
49     public void setName(String name) {
50         this.name = name;
51     }
52
53     @JsonProperty("description")
54     public String getDescription() {
55         return description;
56     }
57
58     @JsonProperty("description")
59     public void setDescription(String description) {
60         this.description = description;
61     }
62
63     @JsonProperty("categoryList")
64     public List<String> getCategoryList() {
65         return categoryList;
66     }
67
68     @JsonProperty("categoryList")
69     public void setCategoryList(List<String> categoryList) {
70         this.categoryList = categoryList;
71     }
72
73     @JsonProperty("inputs")
74     public List<Input> getInputs() {
75         return inputs;
76     }
77
78     @JsonProperty("inputs")
79     public void setInputs(List<Input> inputs) {
80         this.inputs = inputs;
81     }
82
83     @JsonProperty("outputs")
84     public List<Output> getOutputs() {
85         return outputs;
86     }
87
88     @JsonProperty("outputs")
89     public void setOutputs(List<Output> outputs) {
90         this.outputs = outputs;
91     }
92
93     @Override
94     public String toString() {
95         return new ToStringBuilder(this).append("name", name).append("description", description)
96                 .append("categoryList", categoryList).append("inputs", inputs).append("outputs", outputs).toString();
97     }
98
99 }