Replaced all tabs with spaces in java and pom.xml
[so.git] / cloudify-client / src / main / java / org / onap / so / cloudify / v3 / model / StartExecutionParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.onap.so.cloudify.v3.model;
22
23 import java.io.Serializable;
24 import java.util.Map;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26
27 public class StartExecutionParams implements Serializable {
28
29     private static final long serialVersionUID = 1L;
30
31     @JsonProperty("workflow_id")
32     private String workflowId;
33
34     @JsonProperty("deployment_id")
35     private String deploymentId;
36
37     @JsonProperty("allow_custom_parameters")
38     private boolean allowCustomParameters;
39
40     @JsonProperty("force")
41     private boolean force;
42
43     @JsonProperty("parameters")
44     private Map<String, Object> parameters;
45
46     public String getWorkflowId() {
47         return workflowId;
48     }
49
50     public void setWorkflowId(String workflowId) {
51         this.workflowId = workflowId;
52     }
53
54     public String getDeploymentId() {
55         return deploymentId;
56     }
57
58     public void setDeploymentId(String deploymentId) {
59         this.deploymentId = deploymentId;
60     }
61
62     public boolean isAllowCustomParameters() {
63         return allowCustomParameters;
64     }
65
66     public void setAllowCustomParameters(boolean allowCustomParameters) {
67         this.allowCustomParameters = allowCustomParameters;
68     }
69
70     public boolean isForce() {
71         return force;
72     }
73
74     public void setForce(boolean force) {
75         this.force = force;
76     }
77
78     public Map<String, Object> getParameters() {
79         return parameters;
80     }
81
82     public void setParameters(Map<String, Object> parameters) {
83         this.parameters = parameters;
84     }
85
86     @Override
87     public String toString() {
88         return "UpdateExecutionParams{" + "workflowId='" + workflowId + '\'' + "deploymentId='" + deploymentId + '\''
89                 + "allowCustomParameters='" + allowCustomParameters + '\'' + "force='" + force + '\'' + "parameters='"
90                 + parameters + '\'' + '}';
91     }
92
93 }