Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / serviceinstancebeans / RequestProcessingData.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.serviceinstancebeans;
17
18 import java.util.HashMap;
19 import java.util.List;
20 import com.fasterxml.jackson.annotation.JsonInclude;
21 import com.fasterxml.jackson.annotation.JsonInclude.Include;
22 import org.apache.commons.lang3.builder.ToStringBuilder;
23
24
25 @JsonInclude(Include.NON_DEFAULT)
26 public class RequestProcessingData {
27
28     protected String groupingId;
29     protected String tag;
30     protected List<HashMap<String, String>> dataPairs;
31
32     public String getGroupingId() {
33         return groupingId;
34     }
35
36     public void setGroupingId(String groupingId) {
37         this.groupingId = groupingId;
38     }
39
40     public String getTag() {
41         return tag;
42     }
43
44     public void setTag(String tag) {
45         this.tag = tag;
46     }
47
48     public List<HashMap<String, String>> getDataPairs() {
49         return dataPairs;
50     }
51
52     public void setDataPairs(List<HashMap<String, String>> dataPairs) {
53         this.dataPairs = dataPairs;
54     }
55
56     @Override
57     public String toString() {
58         return new ToStringBuilder(this).append("groupingId", groupingId).append("tag", tag)
59                 .append("dataPairs", dataPairs).toString();
60     }
61
62
63 }