/** @inheritdoc */ @Override protected Long updateKeyAfterInsert(CacheControl entity, long rowId) { entity.setId(rowId); return rowId; }
/** @inheritdoc */ @Override public void readEntity(Cursor cursor, CacheControl entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setLastUpdate( cursor.isNull(offset + 1) ? null : new java.util.Date(cursor.getLong(offset + 1))); }