public abstract class SyncProvider extends Object
RowSet objects.
 A SyncProvider implementation is a class that extends the
 SyncProvider abstract class.
 
 A SyncProvider implementation is
 identified by a unique ID, which is its fully qualified class name.
 This name must be registered with the
 SyncFactory SPI, thus making the implementation available to
 all RowSet implementations.
 The factory mechanism in the reference implementation uses this name to instantiate
 the implementation, which can then provide a RowSet object with its
 reader (a javax.sql.RowSetReader object) and its writer (a
 javax.sql.RowSetWriter object).
 
 The Jdbc RowSet Implementations specification provides two
 reference implementations of the SyncProvider abstract class:
 RIOptimisticProvider and RIXMLProvider.
 The RIOptimisticProvider can set any RowSet
 implementation with a RowSetReader object and a
 RowSetWriter object.  However, only the RIXMLProvider
 implementation can set an XmlReader object and an
 XmlWriter object. A WebRowSet object uses the
 XmlReader object to read data in XML format to populate itself with that
 data.  It uses the XmlWriter object to write itself to a stream or
 java.io.Writer object in XML format.
 
1.0 Naming Convention for Implementations
As a guide to namingSyncProvider
 implementations, the following should be noted:
 - The name for a SyncProviderimplementation is its fully qualified class name.
- It is recommended that vendors supply a
 SyncProviderimplementation in a package namedproviders.
 For instance, if a vendor named Fred, Inc. offered a
 SyncProvider implementation, you could have the following:
 
     Vendor name:  Fred, Inc.
     Domain name of vendor:  com.fred
     Package name:  com.fred.providers
     SyncProvider implementation class name:  HighAvailabilityProvider
     Fully qualified class name of SyncProvider implementation:
                        com.fred.providers.HighAvailabilityProvider
 
 
 The following line of code uses the fully qualified name to register
 this implementation with the SyncFactory static instance.
 
     SyncFactory.registerProvider(
                          "com.fred.providers.HighAvailabilityProvider");
 
 
 The default SyncProvider object provided with the reference
 implementation uses the following name:
 
     com.sun.rowset.providers.RIOptimisticProvider
 
 
 Vendors should refer to the reference implementation synchronization
 providers for additional guidance on how to implement a new
 SyncProvider implementation.
 
2.0 How a RowSet Object Gets Its Provider
 A disconnected Rowset object may get access to a
 SyncProvider object in one of the following two ways:
 - Using a constructor
 CachedRowSet crs = new CachedRowSet( "com.fred.providers.HighAvailabilitySyncProvider");
- Using the setSyncProvidermethodCachedRowSet crs = new CachedRowSet(); crs.setSyncProvider("com.fred.providers.HighAvailabilitySyncProvider");
 By default, the reference implementations of the RowSet synchronization
 providers are always available to the Java platform.
 If no other pluggable synchronization providers have been correctly
 registered, the SyncFactory will automatically generate
 an instance of the default SyncProvider reference implementation.
 Thus, in the preceding code fragment, if no implementation named
 com.fred.providers.HighAvailabilitySyncProvider has been
 registered with the SyncFactory instance, crs will be
 assigned the default provider in the reference implementation, which is
 com.sun.rowset.providers.RIOptimisticProvider.
 
3.0 Violations and Synchronization Issues
If an update between a disconnectedRowSet object
 and a data source violates
 the original query or the underlying data source constraints, this will
 result in undefined behavior for all disconnected RowSet implementations
 and their designated SyncProvider implementations.
 Not defining the behavior when such violations occur offers greater flexibility
 for a SyncProvider
 implementation to determine its own best course of action.
 
 A SyncProvider implementation
 may choose to implement a specific handler to
 handle a subset of query violations.
 However if an original query violation or a more general data source constraint
 violation is not handled by the SyncProvider implementation,
 all SyncProvider
 objects must throw a SyncProviderException.
 
4.0 Updatable SQL VIEWs
It is possible for any disconnected or connectedRowSet object to be populated
 from an SQL query that is formulated originally from an SQL VIEW.
 While in many cases it is possible for an update to be performed to an
 underlying view, such an update requires additional metadata, which may vary.
 The SyncProvider class provides two constants to indicate whether
 an implementation supports updating an SQL VIEW.
 - NONUPDATABLE_VIEW_SYNC- Indicates that a- SyncProviderimplementation does not support synchronization with an SQL- VIEWas the underlying source of data for the- RowSetobject.
- UPDATABLE_VIEW_SYNC- Indicates that a- SyncProviderimplementation supports synchronization with an SQL- VIEWas the underlying source of data.
 The default is for a RowSet object not to be updatable if it was
 populated with data from an SQL VIEW.
 
5.0 SyncProvider Constants
 The SyncProvider class provides three sets of constants that
 are used as return values or parameters for SyncProvider methods.
 SyncProvider objects may be implemented to perform synchronization
 between a RowSet object and its underlying data source with varying
 degrees of care. The first group of constants indicate how synchronization
 is handled. For example, GRADE_NONE indicates that a
 SyncProvider object will not take any care to see what data is
 valid and will simply write the RowSet data to the data source.
 GRADE_MODIFIED_AT_COMMIT indicates that the provider will check
 only modified data for validity.  Other grades check all data for validity
 or set locks when data is modified or loaded.
 - Constants to indicate the synchronization grade of a
     SyncProviderobject- SyncProvider.GRADE_NONE
- SyncProvider.GRADE_MODIFIED_AT_COMMIT
- SyncProvider.GRADE_CHECK_ALL_AT_COMMIT
- SyncProvider.GRADE_LOCK_WHEN_MODIFIED
- SyncProvider.GRADE_LOCK_WHEN_LOADED
 
- Constants to indicate what locks are set on the data source
   - SyncProvider.DATASOURCE_NO_LOCK
- SyncProvider.DATASOURCE_ROW_LOCK
- SyncProvider.DATASOURCE_TABLE_LOCK
- SyncProvider.DATASOURCE_DB_LOCK
 
- Constants to indicate whether a SyncProviderobject can perform updates to an SQLVIEW
 These constants are explained in the preceding section (4.0).- SyncProvider.UPDATABLE_VIEW_SYNC
- SyncProvider.NONUPDATABLE_VIEW_SYNC
 
- Since:
- 1.5
- See Also:
- SyncFactory,- SyncFactoryException
- 
Field SummaryFields Modifier and Type Field Description static intDATASOURCE_DB_LOCKIndicates that a lock is placed on the entire data source that is the source of data for theRowSetobject that is using thisSyncProviderobject.static intDATASOURCE_NO_LOCKIndicates that no locks remain on the originating data source.static intDATASOURCE_ROW_LOCKIndicates that a lock is placed on the rows that are touched by the original SQL statement used to populate theRowSetobject that is using thisSyncProviderobject.static intDATASOURCE_TABLE_LOCKIndicates that a lock is placed on all tables that are touched by the original SQL statement used to populate theRowSetobject that is using thisSyncProviderobject.static intGRADE_CHECK_ALL_AT_COMMITIndicates a high level optimistic synchronization grade with respect to the originating data source.static intGRADE_CHECK_MODIFIED_AT_COMMITIndicates a low level optimistic synchronization grade with respect to the originating data source.static intGRADE_LOCK_WHEN_LOADEDIndicates the most pessimistic synchronization grade with respect to the originating data source.static intGRADE_LOCK_WHEN_MODIFIEDIndicates a pessimistic synchronization grade with respect to the originating data source.static intGRADE_NONEIndicates that no synchronization with the originating data source is provided.static intNONUPDATABLE_VIEW_SYNCIndicates that aSyncProviderimplementation does not support synchronization between aRowSetobject and the SQLVIEWused to populate it.static intUPDATABLE_VIEW_SYNCIndicates that aSyncProviderimplementation supports synchronization between aRowSetobject and the SQLVIEWused to populate it.
- 
Constructor SummaryConstructors Constructor Description SyncProvider()Creates a defaultSyncProviderobject.
- 
Method SummaryModifier and Type Method Description abstract intgetDataSourceLock()Returns the current data source lock severity level active in thisSyncProviderimplementation.abstract intgetProviderGrade()Returns a constant indicating the grade of synchronization aRowSetobject can expect from thisSyncProviderobject.abstract StringgetProviderID()Returns the unique identifier for thisSyncProviderobject.abstract RowSetReadergetRowSetReader()Returns ajavax.sql.RowSetReaderobject, which can be used to populate aRowSetobject with data.abstract RowSetWritergetRowSetWriter()Returns ajavax.sql.RowSetWriterobject, which can be used to write aRowSetobject's data back to the underlying data source.abstract StringgetVendor()Returns the vendor name of thisSyncProviderinstanceabstract StringgetVersion()Returns the release version of thisSyncProviderinstance.abstract voidsetDataSourceLock(int datasource_lock)Sets a lock on the underlying data source at the level indicated by datasource_lock.abstract intsupportsUpdatableView()Returns whether thisSyncProviderimplementation can perform synchronization between aRowSetobject and the SQLVIEWin the data source from which theRowSetobject got its data.
- 
Field Details- 
GRADE_NONEpublic static final int GRADE_NONEIndicates that no synchronization with the originating data source is provided. ASyncProviderimplementation returning this grade will simply attempt to write updates in theRowSetobject to the underlying data source without checking the validity of any data.- See Also:
- Constant Field Values
 
- 
GRADE_CHECK_MODIFIED_AT_COMMITpublic static final int GRADE_CHECK_MODIFIED_AT_COMMITIndicates a low level optimistic synchronization grade with respect to the originating data source. ASyncProviderimplementation returning this grade will check only rows that have changed.- See Also:
- Constant Field Values
 
- 
GRADE_CHECK_ALL_AT_COMMITpublic static final int GRADE_CHECK_ALL_AT_COMMITIndicates a high level optimistic synchronization grade with respect to the originating data source. ASyncProviderimplementation returning this grade will check all rows, including rows that have not changed.- See Also:
- Constant Field Values
 
- 
GRADE_LOCK_WHEN_MODIFIEDpublic static final int GRADE_LOCK_WHEN_MODIFIEDIndicates a pessimistic synchronization grade with respect to the originating data source. ASyncProviderimplementation returning this grade will lock the row in the originating data source.- See Also:
- Constant Field Values
 
- 
GRADE_LOCK_WHEN_LOADEDpublic static final int GRADE_LOCK_WHEN_LOADEDIndicates the most pessimistic synchronization grade with respect to the originating data source. ASyncProviderimplementation returning this grade will lock the entire view and/or table affected by the original statement used to populate aRowSetobject.- See Also:
- Constant Field Values
 
- 
DATASOURCE_NO_LOCKpublic static final int DATASOURCE_NO_LOCKIndicates that no locks remain on the originating data source. This is the default lock setting for allSyncProviderimplementations unless otherwise directed by aRowSetobject.- See Also:
- Constant Field Values
 
- 
DATASOURCE_ROW_LOCKpublic static final int DATASOURCE_ROW_LOCKIndicates that a lock is placed on the rows that are touched by the original SQL statement used to populate theRowSetobject that is using thisSyncProviderobject.- See Also:
- Constant Field Values
 
- 
DATASOURCE_TABLE_LOCKpublic static final int DATASOURCE_TABLE_LOCKIndicates that a lock is placed on all tables that are touched by the original SQL statement used to populate theRowSetobject that is using thisSyncProviderobject.- See Also:
- Constant Field Values
 
- 
DATASOURCE_DB_LOCKpublic static final int DATASOURCE_DB_LOCKIndicates that a lock is placed on the entire data source that is the source of data for theRowSetobject that is using thisSyncProviderobject.- See Also:
- Constant Field Values
 
- 
UPDATABLE_VIEW_SYNCpublic static final int UPDATABLE_VIEW_SYNCIndicates that aSyncProviderimplementation supports synchronization between aRowSetobject and the SQLVIEWused to populate it.- See Also:
- Constant Field Values
 
- 
NONUPDATABLE_VIEW_SYNCpublic static final int NONUPDATABLE_VIEW_SYNCIndicates that aSyncProviderimplementation does not support synchronization between aRowSetobject and the SQLVIEWused to populate it.- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
SyncProviderpublic SyncProvider()Creates a defaultSyncProviderobject.
 
- 
- 
Method Details- 
getProviderIDReturns the unique identifier for thisSyncProviderobject.- Returns:
- a Stringobject with the fully qualified class name of thisSyncProviderobject
 
- 
getRowSetReaderReturns ajavax.sql.RowSetReaderobject, which can be used to populate aRowSetobject with data.- Returns:
- a javax.sql.RowSetReaderobject
 
- 
getRowSetWriterReturns ajavax.sql.RowSetWriterobject, which can be used to write aRowSetobject's data back to the underlying data source.- Returns:
- a javax.sql.RowSetWriterobject
 
- 
getProviderGradepublic abstract int getProviderGrade()Returns a constant indicating the grade of synchronization aRowSetobject can expect from thisSyncProviderobject.- Returns:
- an int that is one of the following constants: SyncProvider.GRADE_NONE, SyncProvider.GRADE_CHECK_MODIFIED_AT_COMMIT, SyncProvider.GRADE_CHECK_ALL_AT_COMMIT, SyncProvider.GRADE_LOCK_WHEN_MODIFIED, SyncProvider.GRADE_LOCK_WHEN_LOADED
 
- 
setDataSourceLockSets a lock on the underlying data source at the level indicated by datasource_lock. This should cause theSyncProviderto adjust its behavior by increasing or decreasing the level of optimism it provides for a successful synchronization.- Parameters:
- datasource_lock- one of the following constants indicating the severity level of data source lock required:- SyncProvider.DATASOURCE_NO_LOCK, SyncProvider.DATASOURCE_ROW_LOCK, SyncProvider.DATASOURCE_TABLE_LOCK, SyncProvider.DATASOURCE_DB_LOCK,
- Throws:
- SyncProviderException- if an unsupported data source locking level is set.
- See Also:
- getDataSourceLock()
 
- 
getDataSourceLockReturns the current data source lock severity level active in thisSyncProviderimplementation.- Returns:
- a constant indicating the current level of data source lock
        active in this SyncProviderobject; one of the following:SyncProvider.DATASOURCE_NO_LOCK, SyncProvider.DATASOURCE_ROW_LOCK, SyncProvider.DATASOURCE_TABLE_LOCK, SyncProvider.DATASOURCE_DB_LOCK
- Throws:
- SyncProviderException- if an error occurs determining the data source locking level.
- See Also:
- setDataSourceLock(int)
 
- 
supportsUpdatableViewpublic abstract int supportsUpdatableView()Returns whether thisSyncProviderimplementation can perform synchronization between aRowSetobject and the SQLVIEWin the data source from which theRowSetobject got its data.- Returns:
- an intsaying whether thisSyncProviderobject supports updating an SQLVIEW; one of the following: SyncProvider.UPDATABLE_VIEW_SYNC, SyncProvider.NONUPDATABLE_VIEW_SYNC
 
- 
getVersionReturns the release version of thisSyncProviderinstance.- Returns:
- a Stringdetailing the release version of theSyncProviderimplementation
 
- 
getVendorReturns the vendor name of thisSyncProviderinstance- Returns:
- a Stringdetailing the vendor name of thisSyncProviderimplementation
 
 
-