Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / workflowspecificationbeans / WorkflowSpecification.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.apihandlerinfra.workflowspecificationbeans;
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
27 @JsonInclude(JsonInclude.Include.NON_NULL)
28 @JsonPropertyOrder({"artifactInfo", "activitySequence", "workflowInputParameters"})
29 public class WorkflowSpecification {
30
31     @JsonProperty("artifactInfo")
32     private ArtifactInfo artifactInfo;
33     @JsonProperty("activitySequence")
34     private List<ActivitySequence> activitySequence = null;
35     @JsonProperty("workflowInputParameters")
36     private List<WorkflowInputParameter> workflowInputParameters = null;
37
38     /**
39      * No args constructor for use in serialization
40      * 
41      */
42     public WorkflowSpecification() {}
43
44     /**
45      * 
46      * @param activitySequence
47      * @param artifactInfo
48      * @param workflowInputParameters
49      */
50     public WorkflowSpecification(ArtifactInfo artifactInfo, List<ActivitySequence> activitySequence,
51             List<WorkflowInputParameter> workflowInputParameters) {
52         super();
53         this.artifactInfo = artifactInfo;
54         this.activitySequence = activitySequence;
55         this.workflowInputParameters = workflowInputParameters;
56     }
57
58     @JsonProperty("artifactInfo")
59     public ArtifactInfo getArtifactInfo() {
60         return artifactInfo;
61     }
62
63     @JsonProperty("artifactInfo")
64     public void setArtifactInfo(ArtifactInfo artifactInfo) {
65         this.artifactInfo = artifactInfo;
66     }
67
68     public WorkflowSpecification withArtifactInfo(ArtifactInfo artifactInfo) {
69         this.artifactInfo = artifactInfo;
70         return this;
71     }
72
73     @JsonProperty("activitySequence")
74     public List<ActivitySequence> getActivitySequence() {
75         return activitySequence;
76     }
77
78     @JsonProperty("activitySequence")
79     public void setActivitySequence(List<ActivitySequence> activitySequence) {
80         this.activitySequence = activitySequence;
81     }
82
83     public WorkflowSpecification withActivitySequence(List<ActivitySequence> activitySequence) {
84         this.activitySequence = activitySequence;
85         return this;
86     }
87
88     @JsonProperty("workflowInputParameters")
89     public List<WorkflowInputParameter> getWorkflowInputParameters() {
90         return workflowInputParameters;
91     }
92
93     @JsonProperty("workflowInputParameters")
94     public void setWorkflowInputParameters(List<WorkflowInputParameter> workflowInputParameters) {
95         this.workflowInputParameters = workflowInputParameters;
96     }
97
98     public WorkflowSpecification withWorkflowInputParameters(List<WorkflowInputParameter> workflowInputParameters) {
99         this.workflowInputParameters = workflowInputParameters;
100         return this;
101     }
102
103 }