70b50b4689a880abdcbd8536aa63775eea597d36
[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.Objects;
19
20 public class Subscription {
21
22
23     private String callback;
24
25     private String query;
26
27     public Subscription(){
28
29     }
30
31     public Subscription(String callback, String query) {
32         this.callback = callback;
33         this.query = query;
34     }
35
36     public String getCallback() {
37         return callback;
38     }
39
40     public void setCallback(String callback) {
41         this.callback = callback;
42     }
43
44     public String getQuery() {
45         return query;
46     }
47
48     public void setQuery(String query) {
49         this.query = query;
50     }
51
52     @Override
53     public boolean equals(Object o) {
54         if (this == o) return true;
55         if (o == null || getClass() != o.getClass()) return false;
56         Subscription that = (Subscription) o;
57         return Objects.equals(callback, that.callback) &&
58                 Objects.equals(query, that.query);
59     }
60
61     @Override
62     public int hashCode() {
63
64         return Objects.hash(callback, query);
65     }
66 }