edu.ksu.canvas.interfaces.ContentMigrationWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canvas-api Show documentation
Show all versions of canvas-api Show documentation
A native Java library to talk to the Canvas REST API
package edu.ksu.canvas.interfaces;
import edu.ksu.canvas.model.ContentMigration;
import edu.ksu.canvas.requestOptions.CreateCourseContentMigrationOptions;
import java.io.IOException;
import java.util.Optional;
public interface ContentMigrationWriter extends CanvasWriter{
Optional createCourseContentMigration(CreateCourseContentMigrationOptions options) throws IOException;
}