Removing unused code
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / SubDelivery.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 import java.util.Objects;\r
30 \r
31 import org.json.JSONObject;\r
32 \r
33 /**\r
34  * The representation of Subscription delivery information.  This includes the URL to deliver to,\r
35  * login and password, and whether to use the "HTTP 100-continue" feature for this subscription.\r
36  *\r
37  * @author Robert Eby\r
38  * @version $Id: SubDelivery.java,v 1.2 2013/06/20 14:11:05 eby Exp $\r
39  */\r
40 public class SubDelivery implements JSONable {\r
41     private String url;\r
42     private String user;\r
43     private String password;\r
44     private boolean use100;\r
45 \r
46     public SubDelivery(String url, String user, String password, boolean use100) {\r
47         this.url = url;\r
48         this.user = user;\r
49         this.password = password;\r
50         this.use100 = use100;\r
51     }\r
52 \r
53     public SubDelivery(ResultSet rs) throws SQLException {\r
54         this.url = rs.getString("DELIVERY_URL");\r
55         this.user = rs.getString("DELIVERY_USER");\r
56         this.password = rs.getString("DELIVERY_PASSWORD");\r
57         this.use100 = rs.getBoolean("DELIVERY_USE100");\r
58 \r
59     }\r
60 \r
61     public String getUrl() {\r
62         return url;\r
63     }\r
64 \r
65     public void setUrl(String url) {\r
66         this.url = url;\r
67     }\r
68 \r
69     public String getUser() {\r
70         return user;\r
71     }\r
72 \r
73     public void setUser(String user) {\r
74         this.user = user;\r
75     }\r
76 \r
77     public String getPassword() {\r
78         return password;\r
79     }\r
80 \r
81     public void setPassword(String password) {\r
82         this.password = password;\r
83     }\r
84 \r
85     public boolean isUse100() {\r
86         return use100;\r
87     }\r
88 \r
89     @Override\r
90     public JSONObject asJSONObject() {\r
91         JSONObject jo = new JSONObject();\r
92         jo.put("url", url);\r
93         jo.put("user", user);\r
94         jo.put("password", password);\r
95         jo.put("use100", use100);\r
96         return jo;\r
97     }\r
98 \r
99     @Override\r
100     public boolean equals(Object obj) {\r
101         if (!(obj instanceof SubDelivery))\r
102             return false;\r
103         SubDelivery os = (SubDelivery) obj;\r
104         if (!url.equals(os.url))\r
105             return false;\r
106         if (!user.equals(os.user))\r
107             return false;\r
108         if (!password.equals(os.password))\r
109             return false;\r
110         if (use100 != os.use100)\r
111             return false;\r
112         return true;\r
113     }\r
114 \r
115     @Override\r
116     public int hashCode() {\r
117         return Objects.hash(url, user, password, use100);\r
118     }\r
119 }\r