Removing clumsy code smells and adding missing JettyFilter test
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / FeedLinks.java
1 /*******************************************************************************\r
2  * ============LICENSE_START==================================================\r
3  * * org.onap.dmaap\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * *\r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * *\r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 \r
24 \r
25 package org.onap.dmaap.datarouter.provisioning.beans;\r
26 \r
27 import java.io.InvalidObjectException;\r
28 import java.util.Objects;\r
29 \r
30 import org.json.JSONObject;\r
31 \r
32 /**\r
33  * The URLs associated with a Feed.\r
34  *\r
35  * @author Robert Eby\r
36  * @version $Id: FeedLinks.java,v 1.3 2013/07/05 13:48:05 eby Exp $\r
37  */\r
38 public class FeedLinks implements JSONable {\r
39     private String self;\r
40     private String publish;\r
41     private String subscribe;\r
42     private String log;\r
43 \r
44     public FeedLinks() {\r
45         self = publish = subscribe = log = null;\r
46     }\r
47 \r
48     public FeedLinks(JSONObject jo) {\r
49         this();\r
50         self = jo.getString("self");\r
51         publish = jo.getString("publish");\r
52         subscribe = jo.getString("subscribe");\r
53         log = jo.getString("log");\r
54     }\r
55 \r
56     public String getSelf() {\r
57         return self;\r
58     }\r
59 \r
60     public void setSelf(String self) {\r
61         this.self = self;\r
62     }\r
63 \r
64     public String getPublish() {\r
65         return publish;\r
66     }\r
67 \r
68     public void setPublish(String publish) {\r
69         this.publish = publish;\r
70     }\r
71 \r
72     public String getSubscribe() {\r
73         return subscribe;\r
74     }\r
75 \r
76     public void setSubscribe(String subscribe) {\r
77         this.subscribe = subscribe;\r
78     }\r
79 \r
80     public String getLog() {\r
81         return log;\r
82     }\r
83 \r
84     public void setLog(String log) {\r
85         this.log = log;\r
86     }\r
87 \r
88     @Override\r
89     public JSONObject asJSONObject() {\r
90         JSONObject jo = new JSONObject();\r
91         jo.put("self", self);\r
92         jo.put("publish", publish);\r
93         jo.put("subscribe", subscribe);\r
94         jo.put("log", log);\r
95         return jo;\r
96     }\r
97 \r
98     @Override\r
99     public boolean equals(Object obj) {\r
100         if (!(obj instanceof FeedLinks))\r
101             return false;\r
102         FeedLinks of = (FeedLinks) obj;\r
103         if (!self.equals(of.self))\r
104             return false;\r
105         if (!publish.equals(of.publish))\r
106             return false;\r
107         if (!subscribe.equals(of.subscribe))\r
108             return false;\r
109         if (!log.equals(of.log))\r
110             return false;\r
111         return true;\r
112     }\r
113 \r
114     @Override\r
115     public int hashCode() {\r
116         return Objects.hash(self, publish, subscribe, log);\r
117     }\r
118 }\r