R
- cache row typepublic abstract class UncommittedReadOnlyRow<R> extends UncommittedRow<R>
Constructor and Description |
---|
UncommittedReadOnlyRow(CacheKey cacheKey,
R row) |
Modifier and Type | Method and Description |
---|---|
UncommittedRow<R> |
delete(R row)
Throws
IllegalCacheOperationException since this method should not be used
for ReadOnlyCache . |
UncommittedRow<R> |
insert(R row)
Throws
IllegalCacheOperationException since this method should not be used
for ReadOnlyCache . |
UncommittedRow<R> |
save(R row)
Throws
IllegalCacheOperationException since this method should not be used
for ReadOnlyCache . |
UncommittedRow<R> |
update(R row)
Throws
IllegalCacheOperationException since this method should not be used
for ReadOnlyCache . |
deleted, getCacheKey, getRow, inserted, saved, select, selected, setRow, updateCommitted, updated
public UncommittedRow<R> insert(R row) throws CacheException
IllegalCacheOperationException
since this method should not be used
for ReadOnlyCache
.insert
in class UncommittedRow<R>
row
- row to insertCacheException
- if errorpublic UncommittedRow<R> update(R row) throws CacheException
IllegalCacheOperationException
since this method should not be used
for ReadOnlyCache
.update
in class UncommittedRow<R>
row
- row to updateCacheException
- if errorpublic UncommittedRow<R> save(R row) throws CacheException
IllegalCacheOperationException
since this method should not be used
for ReadOnlyCache
.save
in class UncommittedRow<R>
row
- row to saveCacheException
- if errorpublic UncommittedRow<R> delete(R row) throws CacheException
IllegalCacheOperationException
since this method should not be used
for ReadOnlyCache
.delete
in class UncommittedRow<R>
row
- row to deleteCacheException
- if error