@Test(expectedExceptions = RestLiServiceException.class)
public void testBadUpdateIdsInEntry()
{
// shouldn't be able to put IDs in update entry
CompoundKey key = new CompoundKey().append("photoId", 1L).append("albumId", 1L);
AlbumEntry entry = new AlbumEntry().setAddTime(4).setPhotoId(1);
_entryRes.update(key, entry);
}