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

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

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

import edu.ksu.canvas.model.FeatureFlag;

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

public interface FeatureFlagReader extends CanvasReader {

    Optional getCourseFeatureFlag(String courseId, String feature) throws IOException;
    Optional getAccountFeatureFlag(String accountId, String feature) throws IOException;
    Optional getUserFeatureFlag(String userId, String feature) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy