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

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

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

import edu.ksu.canvas.model.ContentMigration;

import java.io.IOException;
import java.util.Optional;

public interface ContentMigrationReader extends CanvasReader {
    /**
     * Returns a content migration.
     * @param courseId The course ID for this API call
     * @return A ContentMigration object
     * @throws IOException When there is an error communicating with Canvas
     */
    Optional getCourseContentMigration(String courseId, Integer id) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy