Merge "Unit test base"
[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 \r
29 import org.json.JSONObject;\r
30 \r
31 /**\r
32  * The URLs associated with a Feed.\r
33  *\r
34  * @author Robert Eby\r
35  * @version $Id: FeedLinks.java,v 1.3 2013/07/05 13:48:05 eby Exp $\r
36  */\r
37 public class FeedLinks implements JSONable {\r
38     private String self;\r
39     private String publish;\r
40     private String subscribe;\r
41     private String log;\r
42 \r
43     public FeedLinks() {\r
44         self = publish = subscribe = log = null;\r
45     }\r
46 \r
47     public FeedLinks(JSONObject jo) throws InvalidObjectException {\r
48         this();\r
49         self = jo.getString("self");\r
50         publish = jo.getString("publish");\r
51         subscribe = jo.getString("subscribe");\r
52         log = jo.getString("log");\r
53     }\r
54 \r
55     public String getSelf() {\r
56         return self;\r
57     }\r
58 \r
59     public void setSelf(String self) {\r
60         this.self = self;\r
61     }\r
62 \r
63     public String getPublish() {\r
64         return publish;\r
65     }\r
66 \r
67     public void setPublish(String publish) {\r
68         this.publish = publish;\r
69     }\r
70 \r
71     public String getSubscribe() {\r
72         return subscribe;\r
73     }\r
74 \r
75     public void setSubscribe(String subscribe) {\r
76         this.subscribe = subscribe;\r
77     }\r
78 \r
79     public String getLog() {\r
80         return log;\r
81     }\r
82 \r
83     public void setLog(String log) {\r
84         this.log = log;\r
85     }\r
86 \r
87     @Override\r
88     public JSONObject asJSONObject() {\r
89         JSONObject jo = new JSONObject();\r
90         jo.put("self", self);\r
91         jo.put("publish", publish);\r
92         jo.put("subscribe", subscribe);\r
93         jo.put("log", log);\r
94         return jo;\r
95     }\r
96 \r
97     @Override\r
98     public boolean equals(Object obj) {\r
99         if (!(obj instanceof FeedLinks))\r
100             return false;\r
101         FeedLinks of = (FeedLinks) obj;\r
102         if (!self.equals(of.self))\r
103             return false;\r
104         if (!publish.equals(of.publish))\r
105             return false;\r
106         if (!subscribe.equals(of.subscribe))\r
107             return false;\r
108         if (!log.equals(of.log))\r
109             return false;\r
110         return true;\r
111     }\r
112 }\r