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

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

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

import edu.ksu.canvas.model.AccountAdmin;
import edu.ksu.canvas.requestOptions.ListAccountAdminsOptions;

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

public interface AdminReader extends CanvasReader {
    /**
     * Return a list of account admins that the current user can view or manage.
     * @param options Object encapsulating parameters to the list accounts API call
     * @return List of account admins
     * @throws IOException When there is an error communicating with Canvas
     */
    List listAccountAdmins(ListAccountAdminsOptions options) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy