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