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

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

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

import edu.ksu.canvas.model.ContentMigration;
import edu.ksu.canvas.requestOptions.CreateContentMigrationOptions;
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;
    Optional updateCourseContentMigration(Long id, CreateCourseContentMigrationOptions options) throws IOException;

    Optional createUserContentMigration(CreateContentMigrationOptions options) throws IOException;
    Optional updateUserContentMigration(Long id, CreateContentMigrationOptions options) throws IOException;

    Optional createGroupContentMigration(CreateContentMigrationOptions options) throws IOException;
    Optional updateGroupContentMigration(Long id, CreateContentMigrationOptions options) throws IOException;

    Optional createAccountContentMigration(CreateContentMigrationOptions options) throws IOException;
    Optional updateAccountContentMigration(Long id, CreateContentMigrationOptions options) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy