Removing unused code
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / DeliveryExtraRecord.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.PreparedStatement;\r
28 import java.sql.ResultSet;\r
29 import java.sql.SQLException;\r
30 import java.sql.Types;\r
31 import java.text.ParseException;\r
32 \r
33 /**\r
34  * The representation of a Delivery Extra (DLX) Record, as retrieved from the DB.\r
35  * @author Robert Eby\r
36  * @version $Id: DeliveryExtraRecord.java,v 1.1 2013/10/28 18:06:52 eby Exp $\r
37  */\r
38 public class DeliveryExtraRecord extends BaseLogRecord {\r
39     private int  subid;\r
40     private long contentLength2;\r
41 \r
42     public DeliveryExtraRecord(String[] pp) throws ParseException {\r
43         super(pp);\r
44         this.subid = Integer.parseInt(pp[4]);\r
45         this.contentLength2 = Long.parseLong(pp[6]);\r
46     }\r
47 \r
48     @Override\r
49     public void load(PreparedStatement ps) throws SQLException {\r
50         ps.setString(1, "dlx");        // field 1: type\r
51         super.load(ps);                // loads fields 2-8\r
52         ps.setNull( 9, Types.VARCHAR);\r
53         ps.setNull(10, Types.VARCHAR);\r
54         ps.setNull(11, Types.VARCHAR);\r
55         ps.setNull(12, Types.INTEGER);\r
56         ps.setInt (13, subid);\r
57         ps.setNull(14, Types.VARCHAR);\r
58         ps.setNull(15, Types.INTEGER);\r
59         ps.setNull(16, Types.INTEGER);\r
60         ps.setNull(17, Types.VARCHAR);\r
61         ps.setLong(19, contentLength2);\r
62         ps.setNull(20, Types.VARCHAR);\r
63     }\r
64 }\r