use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class LaunchDefinitionsManager method getLaunchDefinitions.
public static void getLaunchDefinitions(StatusCallback<List<LaunchDefinition>> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO: Add testing
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withForceReadFromNetwork(forceNetwork).withShouldIgnoreToken(false).withPerPageQueryParam(true).build();
LaunchDefinitionsAPI.getLaunchDefinitions(adapter, callback, params);
}
}
use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class PollsManager method getFirstPagePollSessions.
public static void getFirstPagePollSessions(long pollId, StatusCallback<PollSessionResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsSessionAPI.getFirstPagePollSessions(pollId, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class PollsManager method getNextPagePollSessions.
public static void getNextPagePollSessions(String nextUrl, StatusCallback<PollSessionResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsSessionAPI.getNextPagePollSessions(nextUrl, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class PollsManager method updatePollSession.
public static void updatePollSession(long pollId, long pollSessionId, long courseId, long sectionId, boolean hasPublicResults, StatusCallback<PollSessionResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsSessionAPI.updatePollSession(pollId, pollSessionId, courseId, sectionId, hasPublicResults, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class PollsManager method getPollSubmission.
public static void getPollSubmission(long pollId, long pollSessionId, long pollSubmissionId, StatusCallback<PollSubmissionResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollSubmissionAPI.getPollSubmission(pollId, pollSessionId, pollSubmissionId, adapter, params, callback);
}
}
Aggregations