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

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

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

import java.io.IOException;
import java.util.List;

import edu.ksu.canvas.model.report.AccountReportSummary;

public interface AccountReportSummaryReader extends CanvasReader {

    /**
     * Generate a list of reports available for the specified account.
     * See the Canvas API documentation for more details.
     * @param accountId the account ID to run the reports against
     * @return a summary list of reports, showing the most recent runs if any exist
     * @throws IOException When there is an error communicating with Canvas
     */
    List listAvailableReports(String accountId) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy