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

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

There is a newer version: 2.0.0
Show newest version
package edu.ksu.canvas.interfaces;

import edu.ksu.canvas.model.Account;
import edu.ksu.canvas.requestOptions.GetSubAccountsOptions;
import edu.ksu.canvas.requestOptions.ListAccountOptions;

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

/**
 * Methods to read information from and about accounts
 */
public interface AccountReader extends CanvasReader {

    /**
     * Retrieve information on an individual account
     * @param accountId accountId Required. Account's id or sis_account_id
     * @return The requested account from Canvas
     * @throws IOException When there is an error communicating with Canvas
     */
    Optional getSingleAccount(String accountId) throws IOException;

    /**
     * Return a list of accounts that the current user can view or manage.
     * @param options Object encapsulating parameters to the list accounts API call
     * @return List of accounts
     * @throws IOException When there is an error communicating with Canvas
     */
    List listAccounts(ListAccountOptions options) throws IOException;

    /**
     * Return a list of sub-accounts to the given account
     * @param options options object encapsulating parameters to the sub-accounts API call
     * @return List of sub-accounts
     * @throws IOException When there is an error communicating with Canvas
     */
    List getSubAccounts(GetSubAccountsOptions options) throws IOException;

    /**
     * List accounts that the current user can view through their admin course enrollments
     * @return List of accounts
     * @throws IOException When there is an error communicating with Canvas
     */
    List listAccountsForCourseAdmins() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy