Package com.jada.jpa.entity

Examples of com.jada.jpa.entity.ContentImageLanguage


public class ContentImageLanguageDAO extends ContentImage {
  private static final long serialVersionUID = 3398298594106849624L;
  public static ContentImageLanguage load(String siteId, Long imageId) throws SecurityException, Exception {
      EntityManager em = JpaConnection.getInstance().getCurrentEntityManager();
      ContentImageLanguage contentImageLanguage = (ContentImageLanguage) em.find(ContentImageLanguage.class, imageId);
    if (!contentImageLanguage.getContentLanguage().getContent().getSiteId().equals(siteId)) {
      throw new SecurityException();
    }
    return contentImageLanguage;
  }
View Full Code Here


    }
    return contentImageLanguage;
  }
  public static ContentImageLanguage load(Long imageId) throws SecurityException, Exception {
      EntityManager em = JpaConnection.getInstance().getCurrentEntityManager();
      ContentImageLanguage contentImageLanguage = (ContentImageLanguage) em.find(ContentImageLanguage.class, imageId);
    return contentImageLanguage;
  }
View Full Code Here

TOP

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

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.