Package org.olat.fileresource.types

Examples of org.olat.fileresource.types.FeedFileResource


   * Creates a blank feed object and writes it to the (virtual) file system
   *
   * @see org.olat.modules.webFeed.managers.FeedManager#createPodcastResource()
   */
  public OLATResourceable createPodcastResource() {
    FeedFileResource podcastResource = new PodcastFileResource();
    return createFeedResource(podcastResource);
  }
View Full Code Here


   * Creates a blank feed object and writes it to the file system
   *
   * @see org.olat.modules.webFeed.managers.FeedManager#createPodcastResource()
   */
  public OLATResourceable createBlogResource() {
    FeedFileResource blogResource = new BlogFileResource();
    return createFeedResource(blogResource);
  }
View Full Code Here

TOP

Related Classes of org.olat.fileresource.types.FeedFileResource

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.