Removing unused code
[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(String id, String password) {\r
43         this.id = id;\r
44         this.password = password;\r
45     }\r
46 \r
47     public FeedEndpointID(ResultSet rs) throws SQLException {\r
48         this.id = rs.getString("USERID");\r
49         this.password = rs.getString("PASSWORD");\r
50     }\r
51 \r
52     public String getId() {\r
53         return id;\r
54     }\r
55 \r
56     public void setId(String id) {\r
57         this.id = id;\r
58     }\r
59 \r
60     public String getPassword() {\r
61         return password;\r
62     }\r
63 \r
64     public void setPassword(String password) {\r
65         this.password = password;\r
66     }\r
67 \r
68     @Override\r
69     public JSONObject asJSONObject() {\r
70         JSONObject jo = new JSONObject();\r
71         jo.put("id", id);\r
72         jo.put("password", password);\r
73         return jo;\r
74     }\r
75 \r
76     @Override\r
77     public boolean equals(Object obj) {\r
78         if (!(obj instanceof FeedEndpointID))\r
79             return false;\r
80         FeedEndpointID f2 = (FeedEndpointID) obj;\r
81         return id.equals(f2.id) && password.equals(f2.password);\r
82     }\r
83 \r
84     @Override\r
85     public int hashCode() {\r
86         return (id + ":" + password).hashCode();\r
87     }\r
88 }\r