All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.ksu.canvas.interfaces.ModuleReader Maven / Gradle / Ivy

The newest version!
package edu.ksu.canvas.interfaces;

import edu.ksu.canvas.model.Module;
import edu.ksu.canvas.requestOptions.ListModulesOptions;

import java.io.IOException;
import java.util.List;

public interface ModuleReader extends CanvasReader {
    /**
     * Retrieve the list of modules in a course.
     *
     * @param options The object holding options for this API call
     * @return List of the course's modules
     * @throws IOException When there is an error communicating with Canvas
     */
    public List getModulesInCourse(ListModulesOptions options) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy