jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/RowSetWarning.java
author chegar
Mon, 18 Aug 2014 10:59:36 +0100
changeset 25991 e48157b42439
parent 25976 jdk/src/share/classes/javax/sql/rowset/RowSetWarning.java@4de01a56e3ee
parent 25859 jdk/src/share/classes/javax/sql/rowset/RowSetWarning.java@3317bb8137f4
child 27183 5260f53ce305
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
25976
4de01a56e3ee 8054555: javadoc cleanup for java.sql and javax.sql
lancea
parents: 24968
diff changeset
     2
 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.sql.rowset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.sql.SQLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * An extension of <code>SQLException</code> that provides information
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * about database warnings set on <code>RowSet</code> objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Warnings are silently chained to the object whose method call
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * caused it to be reported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * This class complements the <code>SQLWarning</code> class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Rowset warnings may be retrieved from <code>JdbcRowSet</code>,
18564
f9db68ff2cbb 8017471: Fix JDBC -Xdoclint public errors
lancea
parents: 5506
diff changeset
    38
 * <code>CachedRowSet</code>&trade;,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <code>WebRowSet</code>, <code>FilteredRowSet</code>, or <code>JoinRowSet</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * implementations. To retrieve the first warning reported on any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <code>RowSet</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * implementation,  use the method <code>getRowSetWarnings</code> defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * in the <code>JdbcRowSet</code> interface or the <code>CachedRowSet</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * interface. To retrieve a warning chained to the first warning, use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <code>RowSetWarning</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <code>getNextWarning</code>. To retrieve subsequent warnings, call
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <code>getNextWarning</code> on each <code>RowSetWarning</code> object that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * The inherited methods <code>getMessage</code>, <code>getSQLState</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * and <code>getErrorCode</code> retrieve information contained in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <code>RowSetWarning</code> object.
24968
3308660aa3f2 8046389: Add missing @since tag under javax.sql.**
henryjen
parents: 18564
diff changeset
    53
 *
3308660aa3f2 8046389: Add missing @since tag under javax.sql.**
henryjen
parents: 18564
diff changeset
    54
 * @since 1.5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
public class RowSetWarning extends SQLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * RowSetWarning object handle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     private RowSetWarning rwarning;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Constructs a <code>RowSetWarning</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * with the given value for the reason; SQLState defaults to null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * and vendorCode defaults to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @param reason a <code>String</code> object giving a description
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *        of the warning; if the <code>String</code> is <code>null</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *        this constructor behaves like the default (zero parameter)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     *        <code>RowSetWarning</code> constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public RowSetWarning(String reason) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        super(reason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Constructs a default <code>RowSetWarning</code> object. The reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * defaults to <code>null</code>, SQLState defaults to null and vendorCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * defaults to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    public RowSetWarning() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * Constructs a <code>RowSetWarning</code> object initialized with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * given values for the reason and SQLState. The vendor code defaults to 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * If the <code>reason</code> or <code>SQLState</code> parameters are <code>null</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * this constructor behaves like the default (zero parameter)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * <code>RowSetWarning</code> constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @param reason a <code>String</code> giving a description of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     *        warning;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @param SQLState an XOPEN code identifying the warning; if a non standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     *        XOPEN <i>SQLState</i> is supplied, no exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    public RowSetWarning(java.lang.String reason, java.lang.String SQLState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        super(reason, SQLState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Constructs a fully specified <code>RowSetWarning</code> object initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * with the given values for the reason, SQLState and vendorCode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * If the <code>reason</code>, or the  <code>SQLState</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * parameters are <code>null</code>, this constructor behaves like the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * (zero parameter) <code>RowSetWarning</code> constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @param reason a <code>String</code> giving a description of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *        warning;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @param SQLState an XOPEN code identifying the warning; if a non standard
25976
4de01a56e3ee 8054555: javadoc cleanup for java.sql and javax.sql
lancea
parents: 24968
diff changeset
   114
     *        XOPEN <i>SQLState</i> is supplied, no exception is thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @param vendorCode a database vendor-specific warning code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public RowSetWarning(java.lang.String reason, java.lang.String SQLState, int vendorCode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        super(reason, SQLState, vendorCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * Retrieves the warning chained to this <code>RowSetWarning</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @return the <code>RowSetWarning</code> object chained to this one; if no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *         <code>RowSetWarning</code> object is chained to this one,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *         <code>null</code> is returned (default value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @see #setNextWarning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    public RowSetWarning getNextWarning() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        return rwarning;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * Sets <i>warning</i> as the next warning, that is, the warning chained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * to this <code>RowSetWarning</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param warning the <code>RowSetWarning</code> object to be set as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *     next warning; if the <code>RowSetWarning</code> is null, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *     represents the finish point in the warning chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @see #getNextWarning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    public void setNextWarning(RowSetWarning warning) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        rwarning = warning;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    static final long serialVersionUID = 6678332766434564774L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
}