Update project structure to org.onap
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / PubFailRecord.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.PreparedStatement;\r
27 import java.sql.ResultSet;\r
28 import java.sql.SQLException;\r
29 import java.sql.Types;\r
30 import java.text.ParseException;\r
31 \r
32 /**\r
33  * The representation of a Publish Failure (PBF) Record, as retrieved from the DB.\r
34  * @author Robert Eby\r
35  * @version $Id: PubFailRecord.java,v 1.1 2013/10/28 18:06:53 eby Exp $\r
36  */\r
37 public class PubFailRecord extends BaseLogRecord {\r
38         private long contentLengthReceived;\r
39         private String sourceIP;\r
40         private String user;\r
41         private String error;\r
42 \r
43         public PubFailRecord(String[] pp) throws ParseException {\r
44                 super(pp);\r
45                 this.contentLengthReceived = Long.parseLong(pp[8]);\r
46                 this.sourceIP = pp[9];\r
47                 this.user     = pp[10];\r
48                 this.error    = pp[11];\r
49         }\r
50         public PubFailRecord(ResultSet rs) throws SQLException {\r
51                 super(rs);\r
52                 // Note: because this record should be "rare" these fields are mapped to unconventional fields in the DB\r
53                 this.contentLengthReceived = rs.getLong("CONTENT_LENGTH_2");\r
54                 this.sourceIP = rs.getString("REMOTE_ADDR");\r
55                 this.user     = rs.getString("USER");\r
56                 this.error    = rs.getString("FEED_FILEID");\r
57         }\r
58         public long getContentLengthReceived() {\r
59                 return contentLengthReceived;\r
60         }\r
61         public String getSourceIP() {\r
62                 return sourceIP;\r
63         }\r
64         public String getUser() {\r
65                 return user;\r
66         }\r
67         public String getError() {\r
68                 return error;\r
69         }\r
70         @Override\r
71         public void load(PreparedStatement ps) throws SQLException {\r
72                 ps.setString(1, "pbf");         // field 1: type\r
73                 super.load(ps);                         // loads fields 2-8\r
74                 ps.setString( 9, getError());\r
75                 ps.setString(10, getSourceIP());\r
76                 ps.setString(11, getUser());\r
77                 ps.setNull  (12, Types.INTEGER);\r
78                 ps.setNull  (13, Types.INTEGER);\r
79                 ps.setNull  (14, Types.VARCHAR);\r
80                 ps.setNull  (15, Types.INTEGER);\r
81                 ps.setNull  (16, Types.INTEGER);\r
82                 ps.setNull  (17, Types.VARCHAR);\r
83                 ps.setLong  (19, getContentLengthReceived());\r
84         }\r
85 }\r