Package com.jada.jpa.entity

Examples of com.jada.jpa.entity.ContactUs


public class ContactUsDAO extends ContactUs {
  private static final long serialVersionUID = 6083814592911674331L;

  public static ContactUs load(String siteId, Long contactUsId) throws SecurityException, Exception {
      EntityManager em = JpaConnection.getInstance().getCurrentEntityManager();
    ContactUs contactUs = (ContactUs) em.find(ContactUs.class, contactUsId);
    if (!contactUs.getSiteId().equals(siteId)) {
      throw new SecurityException("");
    }
    return contactUs;
  }
View Full Code Here

TOP

Related Classes of com.jada.jpa.entity.ContactUs

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.