public List<PhotoVO> selectPhotos(String albumId) {
try {
List<PhotoVO> result = new ArrayList<PhotoVO>();
for (PhotoEntry photo : getBusiness().getPicasaBusiness()
.selectPhotos(albumId)) {
result.add(new PhotoVO(photo));
}
return result;
}
catch (Exception e) {
logger.error(e.getMessage());