use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class CourseManager_Test method removeCourseFromFavorites.
public static void removeCourseFromFavorites(long courseId, StatusCallback<Favorite> callback) {
// TODO:
Response response = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("favorite" + " " + courseId).protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "favorite".getBytes())).addHeader("content-type", "application/json").build();
Favorite favorite = new Favorite();
retrofit2.Response<Favorite> response1 = retrofit2.Response.success(favorite, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class CourseManager_Test method getCourse.
public static void getCourse(long courseId, StatusCallback<Course> callback) {
// TODO:
Response response = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
Course course = new Course();
course.setId(courseId);
retrofit2.Response<Course> response1 = retrofit2.Response.success(course, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class CourseNicknameManager_Test method getNickname.
public static void getNickname(long courseId, StatusCallback<CourseNickname> callback) {
Response response = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
CourseNickname courseNickname = new CourseNickname();
courseNickname.setId(courseId);
retrofit2.Response<CourseNickname> response1 = retrofit2.Response.success(courseNickname, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class CourseNicknameManager_Test method deleteAllNicknames.
public static void deleteAllNicknames(StatusCallback<CourseNickname> callback) {
Response response = new Response.Builder().request(new Request.Builder().url("https://test.com").build()).code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
CourseNickname courseNickname = new CourseNickname();
retrofit2.Response<CourseNickname> response1 = retrofit2.Response.success(courseNickname, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
use of com.instructure.canvasapi2.utils.LinkHeaders in project instructure-android by instructure.
the class InboxManager_Test method getConversations.
public static void getConversations(@NonNull InboxApi.Scope scope, @NonNull RestBuilder adapter, @NonNull StatusCallback<List<Conversation>> callback, @NonNull RestParams params) {
// TODO:
Response response = new Response.Builder().code(200).message("todo").protocol(Protocol.HTTP_1_0).body(ResponseBody.create(MediaType.parse("application/json"), "todo".getBytes())).addHeader("content-type", "application/json").build();
List<Conversation> conversations = new ArrayList<>();
retrofit2.Response<List<Conversation>> response1 = retrofit2.Response.success(conversations, response);
callback.onResponse(response1, new LinkHeaders(), ApiType.CACHE);
}
Aggregations