Package ch.entwine.weblounge.common.repository

Examples of ch.entwine.weblounge.common.repository.WritableContentRepository.deleteContent()


    WritableContentRepository contentRepository = (WritableContentRepository) getContentRepository(site, true);

    // Delete the resource
    try {
      resource = contentRepository.deleteContent(uri, content);
      resource.setModified(user, new Date());
      // TODO: Remove existing preview images
      contentRepository.put(resource);
    } catch (IllegalStateException e) {
      logger.warn("Tried to remove content from missing resource " + uri);
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.