6984864: Exception when running acceptChanges with custom SyncProvider
Reviewed-by: darcy, ohair
This commit is contained in:
parent
c90d91d5fc
commit
45ad71b565
@ -33,6 +33,8 @@ import java.math.*;
|
|||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
import javax.sql.rowset.*;
|
import javax.sql.rowset.*;
|
||||||
|
import javax.sql.rowset.spi.SyncProvider;
|
||||||
|
import javax.sql.rowset.spi.SyncProviderException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The standard implementation of the <code>JoinRowSet</code>
|
* The standard implementation of the <code>JoinRowSet</code>
|
||||||
@ -4311,6 +4313,27 @@ public class JoinRowSetImpl extends WebRowSetImpl implements JoinRowSet {
|
|||||||
return crsInternal.createCopySchema();
|
return crsInternal.createCopySchema();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public void setSyncProvider(String providerStr) throws SQLException {
|
||||||
|
crsInternal.setSyncProvider(providerStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public void acceptChanges() throws SyncProviderException {
|
||||||
|
crsInternal.acceptChanges();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public SyncProvider getSyncProvider() throws SQLException {
|
||||||
|
return crsInternal.getSyncProvider();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method re populates the resBundle
|
* This method re populates the resBundle
|
||||||
* during the deserialization process
|
* during the deserialization process
|
||||||
|
Loading…
x
Reference in New Issue
Block a user