Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / hub / model / Subscription.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 java.util.stream.Collectors;
20 import org.onap.nbi.commons.Resource;
21
22 public class Subscription implements Resource {
23
24     private String id;
25
26     private String callback;
27
28     private String query;
29     private String ewId;
30     private String ewHost;
31
32     public void setEwHost(String ewHost) {
33         this.ewHost = ewHost;
34     }
35
36     public String getEwId() {
37         return ewId;
38     }
39
40     public void setEwId(String ewId) {
41         this.ewId = ewId;
42     }
43
44     public String getEwHost() {
45         return ewHost;
46     }
47
48     public Subscription() {
49
50     }
51
52     public Subscription(String id, String callback, String query) {
53         this.id = id;
54         this.callback = callback;
55         this.query = query;
56     }
57
58     public String getId() {
59         return id;
60     }
61
62     public void setId(String id) {
63         this.id = id;
64     }
65
66     public String getCallback() {
67         return callback;
68     }
69
70     public void setCallback(String callback) {
71         this.callback = callback;
72     }
73
74     public String getQuery() {
75         return query;
76     }
77
78     public void setQuery(String query) {
79         this.query = query;
80     }
81
82     public static Subscription createFromSubscriber(Subscriber subscriber) {
83         Subscription sub = new Subscription();
84         sub.setId(subscriber.getId());
85         sub.setCallback(subscriber.getCallback());
86         sub.setEwId(subscriber.getEwId());
87         sub.setEwHost(subscriber.getEwHost());
88
89         String query = subscriber.getQuery().entrySet().stream()
90                 .map(entry -> entry.getKey() + "=" + String.join(" ", entry.getValue())).collect(Collectors.joining());
91
92         sub.setQuery(query);
93         return sub;
94     }
95 }