Code style cleanup for prov authz and beans
[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.SQLException;\r
28 import java.sql.Types;\r
29 import java.text.ParseException;\r
30 \r
31 /**\r
32  * The representation of a Publish Failure (PBF) Record, as retrieved from the DB.\r
33  *\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 \r
38 public class PubFailRecord extends BaseLogRecord {\r
39     private long contentLengthReceived;\r
40     private String sourceIP;\r
41     private String user;\r
42     private String error;\r
43 \r
44     /**\r
45      * PBF record constructor.\r
46      * @param pp string array of PBF attributes\r
47      * @throws ParseException in case of parse error\r
48      */\r
49     public PubFailRecord(String[] pp) throws ParseException {\r
50         super(pp);\r
51         this.contentLengthReceived = Long.parseLong(pp[8]);\r
52         this.sourceIP = pp[9];\r
53         this.user = pp[10];\r
54         this.error = pp[11];\r
55     }\r
56 \r
57     public long getContentLengthReceived() {\r
58         return contentLengthReceived;\r
59     }\r
60 \r
61     public String getSourceIP() {\r
62         return sourceIP;\r
63     }\r
64 \r
65     public String getUser() {\r
66         return user;\r
67     }\r
68 \r
69     public String getError() {\r
70         return error;\r
71     }\r
72 \r
73     @Override\r
74     public void load(PreparedStatement ps) throws SQLException {\r
75         ps.setString(1, "pbf");        // field 1: type\r
76         super.load(ps);                // loads fields 2-8\r
77         ps.setString(9, getError());\r
78         ps.setString(10, getSourceIP());\r
79         ps.setString(11, getUser());\r
80         ps.setNull(12, Types.INTEGER);\r
81         ps.setNull(13, Types.INTEGER);\r
82         ps.setNull(14, Types.VARCHAR);\r
83         ps.setNull(15, Types.INTEGER);\r
84         ps.setNull(16, Types.INTEGER);\r
85         ps.setNull(17, Types.VARCHAR);\r
86         ps.setLong(19, getContentLengthReceived());\r
87         ps.setNull(20, Types.VARCHAR);\r
88     }\r
89 }\r