--- old/src/share/classes/javax/sql/rowset/serial/SQLOutputImpl.java 2011-11-29 12:28:44.000000000 -0500 +++ new/src/share/classes/javax/sql/rowset/serial/SQLOutputImpl.java 2011-11-29 12:28:44.000000000 -0500 @@ -60,7 +60,7 @@ * A reference to an existing vector that * contains the attributes of a Struct object. */ - private Vector attribs; + private Vector attribs; /** * The type map the driver supplies to a newly created @@ -70,7 +70,7 @@ * method will in turn call the appropriate * SQLOutputImpl writer methods. */ - private Map map; + private Map> map; /** * Creates a new SQLOutputImpl object @@ -93,7 +93,7 @@ * @throws SQLException if the attributes or the map * is a null value */ - public SQLOutputImpl(Vector attributes, Map map) + public SQLOutputImpl(Vector attributes, Map> map) throws SQLException { if ((attributes == null) || (map == null)) {