jdk/src/share/classes/javax/sql/rowset/serial/SerialRef.java
author lancea
Fri, 01 Oct 2010 14:36:01 -0400
changeset 6692 aef4e294026f
parent 5506 202f599c92aa
child 6697 39929804f9d4
permissions -rw-r--r--
6988993: Address Findbugs warnings for the use of String Constructor Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
6692
aef4e294026f 6988993: Address Findbugs warnings for the use of String Constructor
lancea
parents: 5506
diff changeset
     2
 * Copyright (c) 2003, 2010, 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.serial;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.sql.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * A serialized mapping of a <code>Ref</code> object, which is the mapping in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * Java programming language of an SQL <code>REF</code> value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * The <code>SerialRef</code> class provides a constructor  for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * creating a <code>SerialRef</code> instance from a <code>Ref</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * object and provides methods for getting and setting the <code>Ref</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
public class SerialRef implements Ref, Serializable, Cloneable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
     * String containing the base type name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private String baseTypeName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * This will store the type <code>Ref</code> as an <code>Object</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private Object object;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Private copy of the Ref reference.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private Ref reference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * Constructs a <code>SerialRef</code> object from the given <code>Ref</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * @param ref a Ref object; cannot be <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * @throws SQLException if a database access occurs; if <code>ref</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     *     is <code>null</code>; or if the <code>Ref</code> object returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *     <code>null</code> value base type name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @throws SerialException if an error occurs serializing the <code>Ref</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *     object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public SerialRef(Ref ref) throws SerialException, SQLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        if (ref == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            throw new SQLException("Cannot instantiate a SerialRef object " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                "with a null Ref object");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        reference = ref;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        object = ref;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        if (ref.getBaseTypeName() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            throw new SQLException("Cannot instantiate a SerialRef object " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                "that returns a null base type name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        } else {
6692
aef4e294026f 6988993: Address Findbugs warnings for the use of String Constructor
lancea
parents: 5506
diff changeset
    80
            baseTypeName = ref.getBaseTypeName();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Returns a string describing the base type name of the <code>Ref</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @return a string of the base type name of the Ref
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @throws SerialException in no Ref object has been set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    public String getBaseTypeName() throws SerialException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        return baseTypeName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Returns an <code>Object</code> representing the SQL structured type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * to which this <code>SerialRef</code> object refers.  The attributes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * of the structured type are mapped according to the given type map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @param map a <code>java.util.Map</code> object containing zero or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *        more entries, with each entry consisting of 1) a <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     *        giving the fully qualified name of a UDT and 2) the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *        <code>Class</code> object for the <code>SQLData</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *        that defines how the UDT is to be mapped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @return an object instance resolved from the Ref reference and mapped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *        according to the supplied type map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @throws SerialException if an error is encountered in the reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *        resolution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    public Object getObject(java.util.Map<String,Class<?>> map)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        throws SerialException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        map = new Hashtable(map);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (!object.equals(null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            return map.get(object);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            throw new SerialException("The object is not set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Returns an <code>Object</code> representing the SQL structured type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * to which this <code>SerialRef</code> object refers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @return an object instance resolved from the Ref reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @throws SerialException if an error is encountered in the reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *         resolution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    public Object getObject() throws SerialException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        if (reference != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                return reference.getObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            } catch (SQLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                throw new SerialException("SQLException: " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        if (object != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            return object;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        throw new SerialException("The object is not set");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * Sets the SQL structured type that this <code>SerialRef</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * references to the given <code>Object</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @param obj an <code>Object</code> representing the SQL structured type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *        to be referenced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @throws SerialException if an error is encountered generating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * the structured type referenced by this <code>SerialRef</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public void setObject(Object obj) throws SerialException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            reference.setObject(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        } catch (SQLException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            throw new SerialException("SQLException: " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        object = obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
         * The identifier that assists in the serialization of this <code>SerialRef</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    static final long serialVersionUID = -4727123500609662274L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
}