Package com.jada.jpa.entity

Examples of com.jada.jpa.entity.Transaction


public class TransactionDAO extends Transaction {
  private static final long serialVersionUID = 1889088390110940280L;

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

TOP

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

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.