53f33ab15a193b9667eaee5626595fc757c5bd06
[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 package org.onap.nbi.apis.hub.model;
17
18 import java.util.stream.Collectors;
19
20 public class Subscription {
21
22
23     private String id;
24
25     private String callback;
26
27     private String query;
28
29     public Subscription(){
30
31     }
32
33     public Subscription(String id, String callback, String query) {
34         this.id = id;
35         this.callback = callback;
36         this.query = query;
37     }
38
39     public String getId() {
40         return id;
41     }
42
43     public void setId(String id) {
44         this.id = id;
45     }
46
47     public String getCallback() {
48         return callback;
49     }
50
51     public void setCallback(String callback) {
52         this.callback = callback;
53     }
54
55     public String getQuery() {
56         return query;
57     }
58
59     public void setQuery(String query) {
60         this.query = query;
61     }
62
63     public static Subscription createFromSubscriber(Subscriber subscriber) {
64         Subscription sub = new Subscription();
65         sub.setId(subscriber.getId());
66         sub.setCallback(subscriber.getCallback());
67
68         String query = subscriber.getQuery().entrySet()
69                 .stream()
70                 .map(entry -> entry.getKey()+ "=" + String.join(" ",entry.getValue()))
71                 .collect(Collectors.joining());
72
73         sub.setQuery(query);
74         return sub;
75     }
76 }