insertAlbum(album);
}
private void createComment(PhotoEntry photoEntry) throws Exception {
CommentEntry comment = new CommentEntry();
String gphotoId = photoEntry.getGphotoId();
comment.setPhotoId(Long.parseLong(gphotoId));
comment.setTitle(new PlainTextConstruct("Inserted Comment"));
String commentStr = getString("Comment");
comment.setContent(new PlainTextConstruct(commentStr));
insert(photoEntry, comment);
}