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

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

There is a newer version: 2.0.0
Show newest version
package edu.ksu.canvas.interfaces;

import edu.ksu.canvas.model.EnrollmentTerm;
import edu.ksu.canvas.requestOptions.GetEnrollmentTermOptions;

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

public interface EnrollmentTermReader  extends CanvasReader {

    /**
     * Retrieve the enrollment terms for a single account.
     * @param options API options available to this call
     * @return the list of enrollment terms for that account
     * @throws IOException When there is an error communicating with Canvas
     */
    List getEnrollmentTerms(GetEnrollmentTermOptions options) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy