module-info.java revision 16177:89ef4b822745
135509Sjb/*
235509Sjb * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
335509Sjb * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
435509Sjb *
535509Sjb * This code is free software; you can redistribute it and/or modify it
635509Sjb * under the terms of the GNU General Public License version 2 only, as
735509Sjb * published by the Free Software Foundation.  Oracle designates this
835509Sjb * particular file as subject to the "Classpath" exception as provided
935509Sjb * by Oracle in the LICENSE file that accompanied this code.
1035509Sjb *
1135509Sjb * This code is distributed in the hope that it will be useful, but WITHOUT
1235509Sjb * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13165967Simp * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1435509Sjb * version 2 for more details (a copy is included in the LICENSE file that
1535509Sjb * accompanied this code).
1635509Sjb *
1735509Sjb * You should have received a copy of the GNU General Public License version
1835509Sjb * 2 along with this work; if not, write to the Free Software Foundation,
1935509Sjb * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2049439Sdeischen *
2135509Sjb * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2235509Sjb * or visit www.oracle.com if you need additional information or have any
2335509Sjb * questions.
2435509Sjb */
2535509Sjb
2635509Sjb/**
2735509Sjb * Defines the JDBC RowSet API.
2835509Sjb */
2950476Spetermodule java.sql.rowset {
3035509Sjb    requires transitive java.logging;
3135509Sjb    requires transitive java.naming;
3235509Sjb    requires transitive java.sql;
33174112Sdeischen
34114187Sdeischen    exports javax.sql.rowset;
35114187Sdeischen    exports javax.sql.rowset.serial;
36174112Sdeischen    exports javax.sql.rowset.spi;
3793399Smarkm    uses javax.sql.rowset.RowSetFactory;
38174112Sdeischen}
39113658Sdeischen
40103388Smini