Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / appc / payload / beans / ConfigScaleOutPayload.java
1 /*
2  * ============LICENSE_START======================================================= ONAP - SO
3  * ================================================================================ Copyright (C) 2017 AT&T Intellectual
4  * Property. All rights reserved. ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
6  * the License. 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 distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.bpmn.appc.payload.beans;
17
18 import java.util.HashMap;
19 import java.util.Map;
20 import com.fasterxml.jackson.annotation.JsonProperty;
21
22 public class ConfigScaleOutPayload {
23
24     @JsonProperty("request-parameters")
25     private RequestParametersConfigScaleOut requestParameters;
26     @JsonProperty("configuration-parameters")
27     private Map<String, String> configurationParameters = new HashMap<>();
28
29     public RequestParametersConfigScaleOut getRequestParameters() {
30         return requestParameters;
31     }
32
33     public void setRequestParameters(RequestParametersConfigScaleOut requestParameters) {
34         this.requestParameters = requestParameters;
35     }
36
37     public Map<String, String> getConfigurationParameters() {
38         return configurationParameters;
39     }
40
41     public void setConfigurationParameters(Map<String, String> configurationParameters) {
42         this.configurationParameters = configurationParameters;
43     }
44
45     @Override
46     public String toString() {
47         final StringBuilder sb = new StringBuilder("ConfigScaleOutPayload{");
48         sb.append("requestParameters=").append(requestParameters);
49         sb.append(", configurationParameters='").append(configurationParameters);
50         sb.append('}');
51         return sb.toString();
52     }
53 }