Package org.infoglue.cms.entities.content.impl.simple

Examples of org.infoglue.cms.entities.content.impl.simple.ContentCategoryImpl


    return contentCategoryList;
  }

  public ContentCategory createWithDatabase(ContentCategoryVO c, Category category, ContentVersion contentVersion, Database db) throws SystemException, PersistenceException
  {
    ContentCategory contentCategory = new ContentCategoryImpl();
    contentCategory.setValueObject(c);
    contentCategory.setCategory((CategoryImpl)category);
    contentCategory.setContentVersion((ContentVersionImpl)contentVersion);
    db.create(contentCategory);
    return contentCategory;
  }
View Full Code Here

TOP

Related Classes of org.infoglue.cms.entities.content.impl.simple.ContentCategoryImpl

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.