edu.ksu.canvas.interfaces.SisImportReader 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
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;
}