-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* KB-4705 | DEV| Assessment | BE | Consumption Logic for the QuestionWeightage Assessment Type (#564) * Added string handling in admin patch API * Assessment V5 Changes Assessment V5 Changes * KB-4705 | DEV| Assessment | BE | Consumption Logic for the QuestionWeightage Assessment Type 1. Removed the hardcoded attributes and added from assessment hierarchy. * KB-4705 | DEV| Assessment | BE | Consumption Logic for the QuestionWeightage Assessment Type 1. Added proper comments and logs. 2. Refractored the code. 3. Added logic for optionweightage. --------- Co-authored-by: karthik-tarento <[email protected]> * Retry Attempts Enabled for Assessment V5 * KB-4705 | DEV| Assessment | BE | Consumption Logic for the QuestionWeightage Assessment Type (#565) 1. Optional weightage score calculation enhancements. * Adding the insight API implementation for MDO channel (#571) * SaveStateMethod * Maintaining the order of the fields. * KB-4705 | DEV| Assessment | BE | Consumption Logic for the QuestionWeightage Assessment Type (#580) 1. Enhanchements for questionScheme. * KB-5130 | DEV| Assessment | BE | Enhancement in Consumption Logic for the QuestionWeightage Assessment Type. (#581) 1. Added logic for new attributes added. 2. Added questionLevel param in Question read API. * KB-5130 | DEV| Assessment | BE | Enhancement in Consumption Logic for the QuestionWeightage Assessment Type. (#583) 1. Score calculation fix. --------- Co-authored-by: tarentomaheshvakkund <[email protected]> Co-authored-by: karthik-tarento <[email protected]> Co-authored-by: saipradeep_ravipati <[email protected]>
- Loading branch information
1 parent
8edda04
commit 604c6b8
Showing
10 changed files
with
1,472 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/org/sunbird/assessment/service/AssessmentServiceV5.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.sunbird.assessment.service; | ||
|
||
import org.sunbird.common.model.SBApiResponse; | ||
|
||
import java.util.Map; | ||
|
||
public interface AssessmentServiceV5 { | ||
|
||
public SBApiResponse readAssessment(String assessmentIdentifier, String token,boolean editMode); | ||
|
||
public SBApiResponse readQuestionList(Map<String, Object> requestBody, String authUserToken,boolean editMode); | ||
|
||
public SBApiResponse retakeAssessment(String assessmentIdentifier, String token,Boolean editMode); | ||
|
||
public SBApiResponse readAssessmentResultV5(Map<String, Object> request, String userAuthToken); | ||
|
||
public SBApiResponse submitAssessmentAsync(Map<String, Object> data, String userAuthToken,boolean editMode); | ||
|
||
public SBApiResponse saveAssessmentAsync(Map<String, Object> data, String userAuthToken,boolean editMode); | ||
|
||
} |
Oops, something went wrong.