Examples of VFSLeaf


Examples of org.olat.core.util.vfs.VFSLeaf

  /**
   * @see org.olat.course.config.CourseConfigManager#saveConfigTo(org.olat.course.ICourse,
   *      org.olat.course.config.CourseConfig)
   */
  public void saveConfigTo(ICourse course, CourseConfig courseConfig) {
    VFSLeaf configFile = getConfigFile(course);
    if (configFile == null) {
      // create new config file
      configFile = course.getCourseBaseContainer().createChildLeaf(COURSECONFIG_XML);
    }
    XStreamHelper.writeObject(configFile, courseConfig);
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.