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

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

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


import java.util.List;
import java.util.function.Consumer;

public interface CanvasReader {
    /*
     * Perform an operation with a callback. This is used to
     * to perform operations on paginated calls before the final
     * response is complete.
     */
    READERTYPE withCallback(Consumer> responseConsumer);

    READERTYPE readAsCanvasUser(String masqueradeAs);

    READERTYPE readAsSisUser(String masqueradeAs);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy