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

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

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

import edu.ksu.canvas.model.SisImport;

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

public interface SisImportReader extends CanvasReader {
    /**
     * Returns a sis import.
     * @param accountId The account ID for this API call
     * @param id The Canvas ID of the sis import to query
     * @return A SisImport object
     * @throws IOException When there is an error communicating with Canvas
     */
    Optional getSisImport(String accountId, Long id) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy