[DMAAP-48] Initial code import
[dmaap/datarouter.git] / datarouter-prov / src / main / java / com / att / research / 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 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 Subscription delivery information.  This includes the URL to deliver to,\r
34  * login and password, and whether to use the "HTTP 100-continue" feature for this subscription.\r
35  * @author Robert Eby\r
36  * @version $Id: SubDelivery.java,v 1.2 2013/06/20 14:11:05 eby Exp $\r
37  */\r
38 public class SubDelivery implements JSONable {\r
39         private String url;\r
40         private String user;\r
41         private String password;\r
42         private boolean use100;\r
43 \r
44         public SubDelivery() {\r
45                 this("", "", "", false);\r
46         }\r
47         public SubDelivery(String url, String user, String password, boolean use100) {\r
48                 this.url      = url;\r
49                 this.user     = user;\r
50                 this.password = password;\r
51                 this.use100   = use100;\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         public String getUrl() {\r
61                 return url;\r
62         }\r
63         public void setUrl(String url) {\r
64                 this.url = url;\r
65         }\r
66         public String getUser() {\r
67                 return user;\r
68         }\r
69         public void setUser(String user) {\r
70                 this.user = user;\r
71         }\r
72         public String getPassword() {\r
73                 return password;\r
74         }\r
75         public void setPassword(String password) {\r
76                 this.password = password;\r
77         }\r
78 \r
79         public boolean isUse100() {\r
80                 return use100;\r
81         }\r
82         public void setUse100(boolean use100) {\r
83                 this.use100 = use100;\r
84         }\r
85         @Override\r
86         public JSONObject asJSONObject() {\r
87                 JSONObject jo = new JSONObject();\r
88                 jo.put("url", url);\r
89                 jo.put("user", user);\r
90                 jo.put("password", password);\r
91                 jo.put("use100", use100);\r
92                 return jo;\r
93         }\r
94         @Override\r
95         public boolean equals(Object obj) {\r
96                 if (!(obj instanceof SubDelivery))\r
97                         return false;\r
98                 SubDelivery os = (SubDelivery) obj;\r
99                 if (!url.equals(os.url))\r
100                         return false;\r
101                 if (!user.equals(os.user))\r
102                         return false;\r
103                 if (!password.equals(os.password))\r
104                         return false;\r
105                 if (use100 != os.use100)\r
106                         return false;\r
107                 return true;\r
108         }\r
109 }\r