Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / onap / so / bpmn / core / RollbackData.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.bpmn.core;
22
23 import java.io.Serializable;
24 import java.util.HashMap;
25 import java.util.Map;
26 import java.util.stream.Collectors;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 /**
30  * An object that stores data for rollbacks. Data is organized by type. A type is simply a string identifier. Multiple
31  * types of data may be stored in the same object for separate rollback operations.
32  */
33 public class RollbackData implements Serializable {
34
35     private static final long serialVersionUID = 1L;
36
37     @JsonProperty
38     private final Map<String, Map<String, Serializable>> dictionary = new HashMap<>();
39
40     /**
41      * Returns true if the specified type is stored in this object.
42      *
43      * @param type the data type
44      */
45     public boolean hasType(final String type) {
46         return dictionary.containsKey(type);
47     }
48
49     /**
50      * Stores a single item.
51      *
52      * @param type the data type
53      * @param key the key
54      * @param value the value
55      */
56     public void put(final String type, final String key, final String value) {
57         final Map<String, Serializable> mapForType = dictionary.computeIfAbsent(type, k -> new HashMap<>());
58
59         mapForType.put(key, value);
60     }
61
62     /**
63      * Gets a single item.
64      *
65      * @param type the data type
66      * @param key the key
67      * @return the item or null if there is no item for the specified type and key
68      */
69     public Serializable get(final String type, final String key) {
70         final Map<String, Serializable> mapForType = dictionary.get(type);
71
72         if (mapForType == null) {
73             return null;
74         }
75
76         return mapForType.get(key);
77     }
78
79     /**
80      * Gets a map containing all items associated with the specified data type.
81      *
82      * @param type the data type
83      * @return a map, or null if there are no items associated with the specified data type
84      */
85     public Map<String, Serializable> get(final String type) {
86         return dictionary.get(type);
87     }
88
89     /**
90      * Returns a string representation of this object.
91      */
92     @Override
93     public String toString() {
94         return dictionary.entrySet().stream().map(entry -> entry.getKey() + entry.getValue())
95                 .collect(Collectors.joining(",", "[", "]"));
96     }
97 }