cd482c618851185de0a2fba5c5ced3a2b39907ac
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / FeedEndpointID.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.sql.ResultSet;\r
28 import java.sql.SQLException;\r
29 \r
30 import org.json.JSONObject;\r
31 \r
32 /**\r
33  * The representation of a Feed endpoint.  This contains a login/password pair.\r
34  *\r
35  * @author Robert Eby\r
36  * @version $Id: FeedEndpointID.java,v 1.1 2013/04/26 21:00:26 eby Exp $\r
37  */\r
38 public class FeedEndpointID implements JSONable {\r
39     private String id;\r
40     private String password;\r
41 \r
42     public FeedEndpointID() {\r
43         this("", "");\r
44     }\r
45 \r
46     public FeedEndpointID(String id, String password) {\r
47         this.id = id;\r
48         this.password = password;\r
49     }\r
50 \r
51     public FeedEndpointID(ResultSet rs) throws SQLException {\r
52         this.id = rs.getString("USERID");\r
53         this.password = rs.getString("PASSWORD");\r
54     }\r
55 \r
56     public String getId() {\r
57         return id;\r
58     }\r
59 \r
60     public void setId(String id) {\r
61         this.id = id;\r
62     }\r
63 \r
64     public String getPassword() {\r
65         return password;\r
66     }\r
67 \r
68     public void setPassword(String password) {\r
69         this.password = password;\r
70     }\r
71 \r
72     @Override\r
73     public JSONObject asJSONObject() {\r
74         JSONObject jo = new JSONObject();\r
75         jo.put("id", id);\r
76         jo.put("password", password);\r
77         return jo;\r
78     }\r
79 \r
80     @Override\r
81     public boolean equals(Object obj) {\r
82         if (!(obj instanceof FeedEndpointID))\r
83             return false;\r
84         FeedEndpointID f2 = (FeedEndpointID) obj;\r
85         return id.equals(f2.id) && password.equals(f2.password);\r
86     }\r
87 \r
88     @Override\r
89     public int hashCode() {\r
90         return (id + ":" + password).hashCode();\r
91     }\r
92 }\r