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

org.tsugi.ags2.objects.LineItem Maven / Gradle / Ivy

There is a newer version: 23.3
Show newest version
package org.tsugi.ags2.objects;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import org.tsugi.shared.objects.DateRange;

@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)

/*  https://www.imsglobal.org/spec/lti-ags/v2p0#line-item-service
    application/vnd.ims.lis.v2.lineitem+json

    {
		"id" : "https://lms.example.com/context/2923/lineitems/1",
		"scoreMaximum" : 60,
		"label" : "Chapter 5 Test",
		"resourceId" : "a-9334df-33",
		"tag" : "grade",
		"resourceLinkId" : "1g3k4dlk49fk",
		"startDateTime": "2018-03-06T20:05:02Z",
		"endDateTime": "2018-04-06T22:05:03Z",
		"submissionReview": {
			"reviewableStatus": ["InProgress", "Submitted", "Completed"],
			"label": "Open My Tool Viewer",
			"url": "https://platform.example.com/act/849023/sub",
			"custom": {
					"action": "review",
					"a_id": "23942"
			}
		}
	}
 */
// TODO: Where did the scoreUrl and resultUrl end up?
public class LineItem extends DateRange {

	public static final String MIME_TYPE = "application/vnd.ims.lis.v2.lineitem+json";
	public static final String MIME_TYPE_CONTAINER = "application/vnd.ims.lis.v2.lineitemcontainer+json";

	public static final String CONTENT_TYPE = MIME_TYPE + "; charset=utf-8";
	public static final String CONTENT_TYPE_CONTAINER = MIME_TYPE_CONTAINER + "; charset=utf-8";

	@JsonProperty("scoreMaximum")
	public Double scoreMaximum;

	@JsonProperty("label")
	public String label;

	@JsonProperty("resourceId")
	public String resourceId;

	@JsonProperty("tag")
	public String tag;

	@JsonProperty("submissionReview")
	public SubmissionReview submissionReview;

	@JsonProperty("id")
	public String id;			// Output only

	@JsonProperty("resourceLinkId")
	public String resourceLinkId;  // Output only
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy