}
public void updateRecord(RuntimeComponent owner, String id, Object object, long expiration) throws StoreWriteException {
Map<String, Record> map = store.get(owner);
if (map == null) {
throw new StoreWriteException("Record not found: " + owner.getURI() +" : " + id);
}
Record record = map.get(id);
if (record == null) {
throw new StoreWriteException("Record not found: " + owner.getURI() +" : " + id);
}
record.data = object;
}