Package org.apache.aries.samples.blog.persistence.jpa.entity

Examples of org.apache.aries.samples.blog.persistence.jpa.entity.EntryImpl


    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);
  }
View Full Code Here


    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);
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.samples.blog.persistence.jpa.entity.EntryImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.