189190191192193194195196197
return b; } public void setPublishDate (long postId, Date date) { //Added for testing EntryImpl b = em.find(EntryImpl.class, postId); b.setPublishDate(date); em.merge(b); }
196197198199200201202203204
em.merge(b); } public void setUpdatedDate (long postId, Date date) { //Added for testing EntryImpl b = em.find(EntryImpl.class, postId); b.setUpdatedDate(date); em.merge(b); }