Collection syntax change because of Sonar
[aaf/authz.git] / auth / auth-batch / src / main / java / org / onap / aaf / auth / helpers / Approver.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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
22 package org.onap.aaf.auth.helpers;
23
24 import java.util.HashMap;
25 import java.util.Map;
26
27 import org.onap.aaf.auth.actions.Message;
28 import org.onap.aaf.auth.org.Organization;
29
30 public class Approver {
31         public String name;
32         public Organization org;
33         public Map<String, Integer> userRequests;
34         
35         public Approver(String approver, Organization org) {
36                 this.name = approver;
37                 this.org = org;
38                 userRequests = new HashMap<>();
39         }
40         
41         public void addRequest(String user) {
42                 if (userRequests.get(user) == null) {
43                     userRequests.put(user, 1);
44                 } else {
45                         Integer curCount = userRequests.remove(user);
46                         userRequests.put(user, curCount+1);
47                 }
48         }
49         
50         /**
51          * @param sb
52          * @return
53          */
54         public void build(Message msg) {
55                 msg.clear();
56                 msg.line("You have %d total pending approvals from the following users:", userRequests.size());
57                 for (Map.Entry<String, Integer> entry : userRequests.entrySet()) {
58                         msg.line("  %s (%d)",entry.getKey(),entry.getValue());
59                 }
60         }
61
62 }