[DMAAP-48] Initial code import
[dmaap/datarouter.git] / datarouter-prov / src / main / java / com / att / research / 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 com.att.research.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  * @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() {\r
42                 this("", "");\r
43         }\r
44         public FeedEndpointID(String id, String password) {\r
45                 this.id = id;\r
46                 this.password = password;\r
47         }\r
48         public FeedEndpointID(ResultSet rs) throws SQLException {\r
49                 this.id       = rs.getString("USERID");\r
50                 this.password = rs.getString("PASSWORD");\r
51         }\r
52 \r
53         public String getId() {\r
54                 return id;\r
55         }\r
56 \r
57         public void setId(String id) {\r
58                 this.id = id;\r
59         }\r
60 \r
61         public String getPassword() {\r
62                 return password;\r
63         }\r
64 \r
65         public void setPassword(String password) {\r
66                 this.password = password;\r
67         }\r
68 \r
69         @Override\r
70         public JSONObject asJSONObject() {\r
71                 JSONObject jo = new JSONObject();\r
72                 jo.put("id", id);\r
73                 jo.put("password", password);\r
74                 return jo;\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         @Override\r
84         public int hashCode() {\r
85                 return (id + ":" + password).hashCode();\r
86         }\r
87 }\r