Skip to content

Commit

Permalink
refs #25 Add missing jar files for the mail stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
truedat101 committed Oct 14, 2013
1 parent 6fa6ae0 commit 0dec60e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Binary file added libs/activation-1.1.1.jar
Binary file not shown.
Binary file added libs/javax.mail-1.5.0.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions src/main/java/org/smilec/smile/bu/SmilePlugServerManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

public class SmilePlugServerManager extends AbstractBaseManager {

// XXX TODO: Add arguments to take Teacher Name, Session Name, and Group Name
public void startMakingQuestions(String ip, Context context) throws NetworkErrorException {
String url = SmilePlugUtil.createUrl(ip, SmilePlugUtil.START_MAKING_QUESTIONS_URL);
put(ip, context, url, "{}");
Expand Down Expand Up @@ -138,6 +139,9 @@ public void startRetakeQuestions(String ip, Context context, Board board) throws
public void showResults(String ip, Context context) throws NetworkErrorException {
String url = SmilePlugUtil.createUrl(ip, SmilePlugUtil.SHOW_RESULTS_URL);
put(ip, context, url, "{}");

// Always store the results

}

}

0 comments on commit 0dec60e

Please sign in to comment.