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

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

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

import edu.ksu.canvas.model.Feature;

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

public interface FeatureReader extends CanvasReader {

    List getCourseFeatures(String courseId) throws IOException;

    List getAccountFeatures(String accountId) throws IOException;

    List getUserFeatures(String userId) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy