jdk/src/share/classes/javax/sql/rowset/spi/SyncProvider.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2004 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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.spi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.sql.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The synchronization mechanism that provides reader/writer capabilities for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * disconnected <code>RowSet</code> objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * A <code>SyncProvider</code> implementation is a class that extends the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <code>SyncProvider</code> abstract class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * A <code>SyncProvider</code> implementation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * identified by a unique ID, which is its fully qualified class name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * This name must be registered with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <code>SyncFactory</code> SPI, thus making the implementation available to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * all <code>RowSet</code> implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * The factory mechanism in the reference implementation uses this name to instantiate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * the implementation, which can then provide a <code>RowSet</code> object with its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * reader (a <code>javax.sql.RowSetReader</code> object) and its writer (a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <code>javax.sql.RowSetWriter</code> object).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * The Jdbc <code>RowSet</code> Implementations specification provides two
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * reference implementations of the <code>SyncProvider</code> abstract class:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <code>RIOptimisticProvider</code> and <code>RIXMLProvider</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * The <code>RIOptimisticProvider</code> can set any <code>RowSet</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * implementation with a <code>RowSetReader</code> object and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <code>RowSetWriter</code> object.  However, only the <code>RIXMLProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * implementation can set an <code>XmlReader</code> object and an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <code>XmlWriter</code> object. A <code>WebRowSet</code> object uses the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <code>XmlReader</code> object to read data in XML format to populate itself with that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * data.  It uses the <code>XmlWriter</code> object to write itself to a stream or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <code>java.io.Writer</code> object in XML format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <h3>1.0 Naming Convention for Implementations</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * As a guide  to naming <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * implementations, the following should be noted:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <li>The name for a <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * is its fully qualified class name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <li>It is recommended that vendors supply a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <code>SyncProvider</code> implementation in a package named <code>providers</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * For instance, if a vendor named Fred, Inc. offered a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <code>SyncProvider</code> implementation, you could have the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *     Vendor name:  Fred, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *     Domain name of vendor:  com.fred
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *     Package name:  com.fred.providers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *     SyncProvider implementation class name:  HighAvailabilityProvider
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *     Fully qualified class name of SyncProvider implementation:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *                        com.fred.providers.HighAvailabilityProvider
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * The following line of code uses the fully qualified name to register
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * this implementation with the <code>SyncFactory</code> static instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *     SyncFactory.registerProvider(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *                          "com.fred.providers.HighAvailabilityProvider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * The default <code>SyncProvider</code> object provided with the reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * implementation uses the following name:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *     com.sun.rowset.providers.RIOptimisticProvider
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * A vendor can register a <code>SyncProvider</code> implementation class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * with Sun Microsystems, Inc. by sending email to jdbc@sun.com.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * Sun will maintain a database listing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * available <code>SyncProvider</code> implementations for use with compliant
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <code>RowSet</code> implementations.  This database will be similar to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * one already maintained to list available JDBC drivers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * Vendors should refer to the reference implementation synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * providers for additional guidance on how to implement a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * <code>SyncProvider</code> implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <h3>2.0 How a <code>RowSet</code> Object Gets Its Provider</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * A disconnected <code>Rowset</code> object may get access to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <code>SyncProvider</code> object in one of the following two ways:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *  <LI>Using a constructor<BR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *      <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *       CachedRowSet crs = new CachedRowSet(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *                  "com.fred.providers.HighAvailabilitySyncProvider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *      </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *  <LI>Using the <code>setSyncProvider</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *      <PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *       CachedRowSet crs = new CachedRowSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *       crs.setSyncProvider("com.fred.providers.HighAvailabilitySyncProvider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *      </PRE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * By default, the reference implementations of the <code>RowSet</code> synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * providers are always available to the Java platform.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * If no other pluggable synchronization providers have been correctly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * registered, the <code>SyncFactory</code> will automatically generate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * an instance of the default <code>SyncProvider</code> reference implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * Thus, in the preceding code fragment, if no implementation named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * <code>com.fred.providers.HighAvailabilitySyncProvider</code> has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * registered with the <code>SyncFactory</code> instance, <i>crs</i> will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * assigned the default provider in the reference implementation, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * <code>com.sun.rowset.providers.RIOptimisticProvider</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * <h3>3.0 Violations and Synchronization Issues</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * If an update between a disconnected <code>RowSet</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * and a data source violates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * the original query or the underlying data source constraints, this will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * result in undefined behavior for all disconnected <code>RowSet</code> implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * and their designated <code>SyncProvider</code> implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * Not defining the behavior when such violations occur offers greater flexibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * for a <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * implementation to determine its own best course of action.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * A <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * may choose to implement a specific handler to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * handle a subset of query violations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * However if an original query violation or a more general data source constraint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * violation is not handled by the <code>SyncProvider</code> implementation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * all <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * objects must throw a <code>SyncProviderException</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * <h3>4.0 Updatable SQL VIEWs</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * It is possible for any disconnected or connected <code>RowSet</code> object to be populated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * from an SQL query that is formulated originally from an SQL <code>VIEW</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 * While in many cases it is possible for an update to be performed to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * underlying view, such an update requires additional metadata, which may vary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * The <code>SyncProvider</code> class provides two constants to indicate whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * an implementation supports updating an SQL <code>VIEW</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * <li><code><b>NONUPDATABLE_VIEW_SYNC</b></code> - Indicates that a <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * implementation does not support synchronization with an SQL <code>VIEW</code> as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * underlying source of data for the <code>RowSet</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * <li><code><b>UPDATABLE_VIEW_SYNC</b></code> - Indicates that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * supports synchronization with an SQL <code>VIEW</code> as the underlying source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * of data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * The default is for a <code>RowSet</code> object not to be updatable if it was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * populated with data from an SQL <code>VIEW</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * <h3>5.0 <code>SyncProvider</code> Constants</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * The <code>SyncProvider</code> class provides three sets of constants that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * are used as return values or parameters for <code>SyncProvider</code> methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * <code>SyncProvider</code> objects may be implemented to perform synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * between a <code>RowSet</code> object and its underlying data source with varying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 * degrees of of care. The first group of constants indicate how synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * is handled. For example, <code>GRADE_NONE</code> indicates that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * <code>SyncProvider</code> object will not take any care to see what data is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 * valid and will simply write the <code>RowSet</code> data to the data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * <code>GRADE_MODIFIED_AT_COMMIT</code> indicates that the provider will check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 * only modified data for validity.  Other grades check all data for validity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 * or set locks when data is modified or loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * <OL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 *  <LI>Constants to indicate the synchronization grade of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 *     <code>SyncProvider</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 *   <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 *    <LI>SyncProvider.GRADE_NONE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *    <LI>SyncProvider.GRADE_MODIFIED_AT_COMMIT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 *    <LI>SyncProvider.GRADE_CHECK_ALL_AT_COMMIT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
 *    <LI>SyncProvider.GRADE_LOCK_WHEN_MODIFIED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 *    <LI>SyncProvider.GRADE_LOCK_WHEN_LOADED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
 *   </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
 *  <LI>Constants to indicate what locks are set on the data source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
 *   <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
 *     <LI>SyncProvider.DATASOURCE_NO_LOCK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
 *     <LI>SyncProvider.DATASOURCE_ROW_LOCK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
 *     <LI>SyncProvider.DATASOURCE_TABLE_LOCK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 *     <LI>SyncProvider.DATASOURCE_DB_LOCK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
 *   </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
 *  <LI>Constants to indicate whether a <code>SyncProvider</code> object can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
 *       perform updates to an SQL <code>VIEW</code> <BR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 *       These constants are explained in the preceding section (4.0).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
 *   <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
 *     <LI>SyncProvider.UPDATABLE_VIEW_SYNC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 *     <LI>SyncProvider.NONUPDATABLE_VIEW_SYNC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
 *   </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
 * </OL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 * @author Jonathan Bruce
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
 * @see javax.sql.rowset.spi.SyncFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
 * @see javax.sql.rowset.spi.SyncFactoryException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
public abstract class SyncProvider {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    * Creates a default <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    public SyncProvider() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * Returns the unique identifier for this <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * @return a <code>String</code> object with the fully qualified class name of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *         this <code>SyncProvider</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    public abstract String getProviderID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Returns a <code>javax.sql.RowSetReader</code> object, which can be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * populate a <code>RowSet</code> object with data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @return a <code>javax.sql.RowSetReader</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    public abstract RowSetReader getRowSetReader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Returns a <code>javax.sql.RowSetWriter</code> object, which can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * used to write a <code>RowSet</code> object's data back to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * underlying data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * @return a <code>javax.sql.RowSetWriter</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    public abstract RowSetWriter getRowSetWriter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Returns a constant indicating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * grade of synchronization a <code>RowSet</code> object can expect from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * this <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @return an int that is one of the following constants:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     *           SyncProvider.GRADE_NONE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *           SyncProvider.GRADE_CHECK_MODIFIED_AT_COMMIT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *           SyncProvider.GRADE_CHECK_ALL_AT_COMMIT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *           SyncProvider.GRADE_LOCK_WHEN_MODIFIED,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *           SyncProvider.GRADE_LOCK_WHEN_LOADED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    public abstract int getProviderGrade();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Sets a lock on the underlying data source at the level indicated by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * <i>datasource_lock</i>. This should cause the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * <code>SyncProvider</code> to adjust its behavior by increasing or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * decreasing the level of optimism it provides for a successful
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @param datasource_lock one of the following constants indicating the severity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *           level of data source lock required:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *           SyncProvider.DATASOURCE_NO_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *           SyncProvider.DATASOURCE_ROW_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *           SyncProvider.DATASOURCE_TABLE_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *           SyncProvider.DATASOURCE_DB_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * @throws SyncProviderException if an unsupported data source locking level
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *           is set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * @see #getDataSourceLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    public abstract void setDataSourceLock(int datasource_lock)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        throws SyncProviderException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * Returns the current data source lock severity level active in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * <code>SyncProvider</code> implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @return a constant indicating the current level of data source lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *        active in this <code>SyncProvider</code> object;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *         one of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *           SyncProvider.DATASOURCE_NO_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *           SyncProvider.DATASOURCE_ROW_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *           SyncProvider.DATASOURCE_TABLE_LOCK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *           SyncProvider.DATASOURCE_DB_LOCK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @throws SyncProviderExceptiom if an error occurs determining the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *        source locking level.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * @see #setDataSourceLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    public abstract int getDataSourceLock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        throws SyncProviderException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Returns whether this <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * can perform synchronization between a <code>RowSet</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * and the SQL <code>VIEW</code> in the data source from which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * the <code>RowSet</code> object got its data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @return an <code>int</code> saying whether this <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *         object supports updating an SQL <code>VIEW</code>; one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *         following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *            SyncProvider.UPDATABLE_VIEW_SYNC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     *            SyncProvider.NONUPDATABLE_VIEW_SYNC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public abstract int supportsUpdatableView();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Returns the release version of this <code>SyncProvider</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @return a <code>String</code> detailing the release version of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *     <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    public abstract String getVersion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * Returns the vendor name of this <code>SyncProvider</code> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @return a <code>String</code> detailing the vendor name of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *     <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    public abstract String getVendor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * Standard description of synchronization grades that a SyncProvider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * could provide.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * Indicates that no synchronization with the originating data source is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * provided. A <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * implementation returning this grade will simply attempt to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * updates in the <code>RowSet</code> object to the underlying data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * source without checking the validity of any data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    public static int GRADE_NONE = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * Indicates a low level optimistic synchronization grade with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * respect to the originating data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * A <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * returning this grade will check only rows that have changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    public static int GRADE_CHECK_MODIFIED_AT_COMMIT = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Indicates a high level optimistic synchronization grade with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * respect to the originating data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * A <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * returning this grade will check all rows, including rows that have not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    public static int GRADE_CHECK_ALL_AT_COMMIT = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * Indicates a pessimistic synchronization grade with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * respect to the originating data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * A <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * implementation returning this grade will lock the row in the originating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * data source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    public static int GRADE_LOCK_WHEN_MODIFIED = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * Indicates the most pessimistic synchronization grade with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * respect to the originating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * data source. A <code>SyncProvider</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * implementation returning this grade will lock the entire view and/or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * table affected by the original statement used to populate a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * <code>RowSet</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public static int GRADE_LOCK_WHEN_LOADED = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * Indicates that no locks remain on the originating data source. This is the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * lock setting for all <code>SyncProvider</code> implementations unless
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * otherwise directed by a <code>RowSet</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    public static int DATASOURCE_NO_LOCK = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * Indicates that a lock is placed on the rows that are touched by the original
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * SQL statement used to populate the <code>RowSet</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * that is using this <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    public static int DATASOURCE_ROW_LOCK = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * Indicates that a lock is placed on all tables that are touched by the original
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * SQL statement used to populate the <code>RowSet</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * that is using this <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    public static int DATASOURCE_TABLE_LOCK = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * Indicates that a lock is placed on the entire data source that is the source of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * data for the <code>RowSet</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * that is using this <code>SyncProvider</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    public static int DATASOURCE_DB_LOCK = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * Indicates that a <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * supports synchronization between a <code>RowSet</code> object and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * the SQL <code>VIEW</code> used to populate it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public static int UPDATABLE_VIEW_SYNC = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * Indicates that a <code>SyncProvider</code> implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * does <B>not</B> support synchronization between a <code>RowSet</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * object and the SQL <code>VIEW</code> used to populate it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    public static int NONUPDATABLE_VIEW_SYNC = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
}