OSID Logo
OSID Specifications
assessment package
Version 3.1.0
Interfaceosid.assessment.AssessmentResultsSession
Implementsosid.OsidSession
Used Byosid.assessment.AssessmentManager
osid.assessment.AssessmentProxyManager
Description

This session is used to access the tested assessment items and their associated responses. Assessment results may also be available and is expressed as a rubric through another assessment.

MethodgetBankId
Description

Gets the Bank Id associated with this session.

Returnosid.id.Id the Bank Id associated with this session
Compliancemandatory This method must be implemented.
MethodgetBank
Description

Gets the Bank associated with this session.

Returnosid.assessment.Bank the Bank associated with this session
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanAccessAssessmentResults
Description

Tests if this user can take this assessment. A return of true does not guarantee successful authorization. A return of false indicates that it is known all methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer assessment operations to unauthorized users.

Returnboolean false if assessment methods are not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodgetItems
Description

Gets the items questioned in an assessment.

Parametersosid.id.IdassessmentTakenId Id of the AssessmentTaken
Returnosid.assessment.ItemList the list of assessment questions
ErrorsNOT_FOUND assessmentTakenId is not found
NULL_ARGUMENT assessmentTakenId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodgetResponses
Description

Gets the submitted responses.

Parametersosid.id.IdassessmentTakenId Id of the AssessmentTaken
Returnosid.assessment.ResponseList the submitted answers
ErrorsNOT_FOUND assessmentTakenId is not found
NULL_ARGUMENT assessmentTakenId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodareResultsAvailable
Description

Tests if the results are available for this assessment.

Parametersosid.id.IdassessmentTakenId Id of the AssessmentTaken
Returnboolean true if results are available, false otherwise
ErrorsNOT_FOUND assessmentTakenId is not found
NULL_ARGUMENT assessmentTakenId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodgetGradeEntries
Description

Gets a list of grade entries for this assessment. Each grade entry may indicate a grade or score input by multiple graders.

Parametersosid.id.IdassessmentTakenId Id of the AssessmentTaken
Returnosid.grading.GradeEntryList a list of grade entries
ErrorsILLEGAL_STATE areResultsAvailable() is false
NOT_FOUND assessmentTakenId is not found
NULL_ARGUMENT assessmentTakenId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.