1 /*******************************************************************************
\r
2 * ============LICENSE_START==================================================
\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
11 * * http://www.apache.org/licenses/LICENSE-2.0
\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
20 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
\r
22 ******************************************************************************/
\r
25 package org.onap.dmaap.datarouter.provisioning.beans;
\r
27 import java.sql.ResultSet;
\r
28 import java.sql.SQLException;
\r
30 import org.json.JSONObject;
\r
33 * The representation of a Feed endpoint. This contains a login/password pair.
\r
35 * @author Robert Eby
\r
36 * @version $Id: FeedEndpointID.java,v 1.1 2013/04/26 21:00:26 eby Exp $
\r
38 public class FeedEndpointID implements JSONable {
\r
40 private String password;
\r
42 public FeedEndpointID(String id, String password) {
\r
44 this.password = password;
\r
47 public FeedEndpointID(ResultSet rs) throws SQLException {
\r
48 this.id = rs.getString("USERID");
\r
49 this.password = rs.getString("PASSWORD");
\r
52 public String getId() {
\r
56 public void setId(String id) {
\r
60 public String getPassword() {
\r
64 public void setPassword(String password) {
\r
65 this.password = password;
\r
69 public JSONObject asJSONObject() {
\r
70 JSONObject jo = new JSONObject();
\r
72 jo.put("password", password);
\r
77 public boolean equals(Object obj) {
\r
78 if (!(obj instanceof FeedEndpointID))
\r
80 FeedEndpointID f2 = (FeedEndpointID) obj;
\r
81 return id.equals(f2.id) && password.equals(f2.password);
\r
85 public int hashCode() {
\r
86 return (id + ":" + password).hashCode();
\r