private static List<ItemAndAttributes> getSerially(List<SdbItem> items) throws AmazonClientException {
List<ItemAndAttributes> ret = new ArrayList<ItemAndAttributes>();
for (SdbItem item : items) {
// logger.fine("item=" + item.getIdentifier());
List<Attribute> atts = item.getAttributes();
ret.add(new ItemAndAttributes(item, atts));
}
return ret;
}