1 7 8 package javax.sql.rowset.spi; 9 10 import javax.sql.RowSet ; 11 import java.sql.SQLException ; 12 13 215 216 public interface SyncResolver extends RowSet { 217 225 public static int UPDATE_ROW_CONFLICT = 0; 226 227 235 public static int DELETE_ROW_CONFLICT = 1; 236 237 243 public static int INSERT_ROW_CONFLICT = 2; 244 245 251 public static int NO_ROW_CONFLICT = 3; 252 253 264 public int getStatus(); 265 266 278 public Object getConflictValue(int index) throws SQLException ; 279 280 292 public Object getConflictValue(String columnName) throws SQLException ; 293 294 305 public void setResolvedValue(int index, Object obj) throws SQLException ; 306 307 318 public void setResolvedValue(String columnName, Object obj) throws SQLException ; 319 320 337 public boolean nextConflict() throws SQLException ; 338 339 352 public boolean previousConflict() throws SQLException ; 353 354 } 355 | Popular Tags |