//// DUMMY LOGIC - remove these functions when completing this API ////
//// Do not use this logic, it is incorrect! ////
UserScoreJson[] tempScoreList = ScoreFactory.getUserScoreJson(2);
tempScoreList[0] = new UserScoreJson();
tempScoreList[0].setGroupId(1);
tempScoreList[0].setGroupTitle("Algebra");
tempScoreList[0].setNumOfQuestions(40);
tempScoreList[0].setNumOfRightAnswers(35);
tempScoreList[0].setDateTaken(new Date());
tempScoreList[1] = new UserScoreJson();
tempScoreList[1].setGroupId(2);
tempScoreList[1].setGroupTitle("English");
tempScoreList[1].setNumOfQuestions(25);
tempScoreList[1].setNumOfRightAnswers(25);
tempScoreList[1].setDateTaken(new Date());