Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / hub / model / Subscriber.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     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
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16
17 package org.onap.nbi.apis.hub.model;
18
19 import org.onap.nbi.commons.Resource;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22 import org.springframework.data.annotation.Id;
23 import org.springframework.data.mongodb.core.mapping.Document;
24
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.stream.Stream;
28
29 @Document
30 public class Subscriber implements Resource {
31     private static final Logger logger = LoggerFactory.getLogger(Subscriber.class);
32
33     @Id
34     private String id;
35     private String callback;
36
37     public String getEwId() {
38         return ewId;
39     }
40
41     public void setEwId(String ewId) {
42         this.ewId = ewId;
43     }
44
45     private String ewId;
46
47     public String getEwHost() {
48         return ewHost;
49     }
50
51     public void setEwHost(String ewHost) {
52         this.ewHost = ewHost;
53     }
54
55     private String ewHost;
56
57     private Map<String, String[]> query = new HashMap<>();
58
59     public String getId() {
60         return id;
61     }
62
63     public void setId(String id) {
64         this.id = id;
65     }
66
67     public String getCallback() {
68         return callback;
69     }
70
71     public void setCallback(String callback) {
72         this.callback = callback;
73     }
74
75     public Map<String, String[]> getQuery() {
76         return query;
77     }
78
79     public static Subscriber createFromSubscription(Subscription request) {
80         Subscriber sub = new Subscriber();
81         sub.setCallback(request.getCallback());
82         sub.setEwId(request.getEwId());
83         sub.setEwHost(request.getEwHost());
84
85         Stream.of(request.getQuery().split("&")).map(q -> q.split("=")).filter(q -> q.length == 2)
86                 .forEach(q -> sub.getQuery().put(q[0].trim(), q[1].trim().split(",")));
87
88         return sub;
89     }
90 }