Package org.vosao.entity

Examples of org.vosao.entity.ContentEntity.copy()


  private void copyContent(PageEntity src, PageEntity dst) {
    List<ContentEntity> contents = getDao().getPageDao().getContents(
        src.getId());
    for (ContentEntity content : contents) {
      ContentEntity newContent = new ContentEntity();
      newContent.copy(content);
      newContent.setId(null);
      newContent.setParentKey(dst.getId());
      getDao().getContentDao().save(newContent);
      getBusiness().getSystemService().getPageCache().remove(
          dst.getFriendlyURL());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.