Skip to content

Commit

Permalink
Special Registration API: Fix
Browse files Browse the repository at this point in the history
- some attributes were not public (making it imposible to use the interface outside of the package)
  • Loading branch information
tomas-muller committed Sep 26, 2024
1 parent c2e55ec commit f54cc59
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ public void setCourse(String subject, String courseNbr, ExternalTermProvider ext
/** Registration error for which there needs to be an override */
public static class ChangeError {
/** Error code */
String code;
public String code;
/** error message (shown to the student) */
String message;
public String message;
}

/** Change note */
Expand Down Expand Up @@ -426,11 +426,11 @@ public static class CheckEligibilityResponse extends Response<SpecialRegistratio
/** Registrationn error */
public static class Problem {
/** Error code */
String code;
public String code;
/** Error message */
String message;
public String message;
/** Section affected */
String crn;
public String crn;
}

/** Data returned from the schedule validation */
Expand Down Expand Up @@ -598,9 +598,9 @@ public static class SpecialRegistrationCheckGradeModes {
/** Banner campus (e.g., PWL) */
public String campus;
/** List of available grade modes */
List<SpecialRegistrationCurrentGradeMode> gradingModes;
public List<SpecialRegistrationCurrentGradeMode> gradingModes;
/** List of available variable credits changes */
List<SpecialRegistrationVariableCredit> varCredits;
public List<SpecialRegistrationVariableCredit> varCredits;
/** Student's current credit */
public Float currentCredit;
/** Student's max credit */
Expand Down

0 comments on commit f54cc59

Please sign in to comment.