regis

<back to all web services

SectionsAdminRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Sections/Admin/{reporting_term}
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class SectionsAdminRequest
    {
        public String reporting_term = null;
        
        public String getReportingTerm() { return reporting_term; }
        public SectionsAdminRequest setReportingTerm(String value) { this.reporting_term = value; return this; }
    }

    public static class SectionsAdminResponse
    {
        public ResponseStatus responseStatus = null;
        public String reporting_term = null;
        public ArrayList<SectionAdminResponse> sections = null;
        public HashMap<Integer,ArrayList<SectionRateWithAmountResponse>> section_rates = null;
        public HashMap<Integer,ArrayList<SectionRefundScheduleResponse>> section_refund_schedules = null;
        public ArrayList<String> locations = null;
        public HashMap<Integer,ArrayList<InstructorResponse>> section_instructors = null;
        public HashMap<Integer,ArrayList<String>> section_document_codes = null;
        public HashMap<Integer,ArrayList<Integer>> crosslisted_sections = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public SectionsAdminResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
        public String getReportingTerm() { return reporting_term; }
        public SectionsAdminResponse setReportingTerm(String value) { this.reporting_term = value; return this; }
        public ArrayList<SectionAdminResponse> getSections() { return sections; }
        public SectionsAdminResponse setSections(ArrayList<SectionAdminResponse> value) { this.sections = value; return this; }
        public HashMap<Integer,ArrayList<SectionRateWithAmountResponse>> getSectionRates() { return section_rates; }
        public SectionsAdminResponse setSectionRates(HashMap<Integer,ArrayList<SectionRateWithAmountResponse>> value) { this.section_rates = value; return this; }
        public HashMap<Integer,ArrayList<SectionRefundScheduleResponse>> getSectionRefundSchedules() { return section_refund_schedules; }
        public SectionsAdminResponse setSectionRefundSchedules(HashMap<Integer,ArrayList<SectionRefundScheduleResponse>> value) { this.section_refund_schedules = value; return this; }
        public ArrayList<String> getLocations() { return locations; }
        public SectionsAdminResponse setLocations(ArrayList<String> value) { this.locations = value; return this; }
        public HashMap<Integer,ArrayList<InstructorResponse>> getSectionInstructors() { return section_instructors; }
        public SectionsAdminResponse setSectionInstructors(HashMap<Integer,ArrayList<InstructorResponse>> value) { this.section_instructors = value; return this; }
        public HashMap<Integer,ArrayList<String>> getSectionDocumentCodes() { return section_document_codes; }
        public SectionsAdminResponse setSectionDocumentCodes(HashMap<Integer,ArrayList<String>> value) { this.section_document_codes = value; return this; }
        public HashMap<Integer,ArrayList<Integer>> getCrosslistedSections() { return crosslisted_sections; }
        public SectionsAdminResponse setCrosslistedSections(HashMap<Integer,ArrayList<Integer>> value) { this.crosslisted_sections = value; return this; }
    }

    public static class SectionAdminResponse
    {
        public String uuid = null;
        public Integer section_id = null;
        public Integer course_id = null;
        public String course_name = null;
        public BigDecimal min_credits = null;
        public BigDecimal max_credits = null;
        public BigDecimal credit_increments = null;
        public BigDecimal min_audits = null;
        public BigDecimal max_audits = null;
        public BigDecimal audit_increments = null;
        public String section_code = null;
        public String title = null;
        public String pretty_title = null;
        public String override_course_description = null;
        public String current_status = null;
        public String location = null;
        public String room = null;
        public Boolean is_audio = null;
        public Boolean is_oncampus = null;
        public String distance_ed_materials = null;
        public Date start_date = null;
        public Date end_date = null;
        public Date first_meeting_date = null;
        public Date last_meeting_date = null;
        public String meeting_days = null;
        public String start_times = null;
        public String end_times = null;
        public Boolean is_pass_fail = null;
        public Boolean is_weekend = null;
        public Boolean is_weekday = null;
        public Boolean is_evening = null;
        public Boolean is_waitlist = null;
        public Boolean has_special_requirements = null;
        public String special_requirements = null;
        public Boolean is_unlisted = null;
        public Integer capacity = null;
        public BigDecimal flat_fee_amount = null;
        public BigDecimal additional_fee_amount = null;
        public Date override_registration_start_date = null;
        public Date override_registration_end_date = null;
        public Date override_add_start_date = null;
        public Date override_add_end_date = null;
        public Date override_drop_start_date = null;
        public Date override_drop_end_date = null;
        public Date override_grading_end_date = null;
        public String term = null;
        public String reporting_term = null;
        public Integer reporting_year = null;
        public Date added_date = null;
        public String added_by = null;
        public Date changed_date = null;
        public String changed_by = null;
        public Date timestamp = null;
        
        public String getUuid() { return uuid; }
        public SectionAdminResponse setUuid(String value) { this.uuid = value; return this; }
        public Integer getSectionId() { return section_id; }
        public SectionAdminResponse setSectionId(Integer value) { this.section_id = value; return this; }
        public Integer getCourseId() { return course_id; }
        public SectionAdminResponse setCourseId(Integer value) { this.course_id = value; return this; }
        public String getCourseName() { return course_name; }
        public SectionAdminResponse setCourseName(String value) { this.course_name = value; return this; }
        public BigDecimal getMinCredits() { return min_credits; }
        public SectionAdminResponse setMinCredits(BigDecimal value) { this.min_credits = value; return this; }
        public BigDecimal getMaxCredits() { return max_credits; }
        public SectionAdminResponse setMaxCredits(BigDecimal value) { this.max_credits = value; return this; }
        public BigDecimal getCreditIncrements() { return credit_increments; }
        public SectionAdminResponse setCreditIncrements(BigDecimal value) { this.credit_increments = value; return this; }
        public BigDecimal getMinAudits() { return min_audits; }
        public SectionAdminResponse setMinAudits(BigDecimal value) { this.min_audits = value; return this; }
        public BigDecimal getMaxAudits() { return max_audits; }
        public SectionAdminResponse setMaxAudits(BigDecimal value) { this.max_audits = value; return this; }
        public BigDecimal getAuditIncrements() { return audit_increments; }
        public SectionAdminResponse setAuditIncrements(BigDecimal value) { this.audit_increments = value; return this; }
        public String getSectionCode() { return section_code; }
        public SectionAdminResponse setSectionCode(String value) { this.section_code = value; return this; }
        public String getTitle() { return title; }
        public SectionAdminResponse setTitle(String value) { this.title = value; return this; }
        public String getPrettyTitle() { return pretty_title; }
        public SectionAdminResponse setPrettyTitle(String value) { this.pretty_title = value; return this; }
        public String getOverrideCourseDescription() { return override_course_description; }
        public SectionAdminResponse setOverrideCourseDescription(String value) { this.override_course_description = value; return this; }
        public String getCurrentStatus() { return current_status; }
        public SectionAdminResponse setCurrentStatus(String value) { this.current_status = value; return this; }
        public String getLocation() { return location; }
        public SectionAdminResponse setLocation(String value) { this.location = value; return this; }
        public String getRoom() { return room; }
        public SectionAdminResponse setRoom(String value) { this.room = value; return this; }
        public Boolean getIsAudio() { return is_audio; }
        public SectionAdminResponse setIsAudio(Boolean value) { this.is_audio = value; return this; }
        public Boolean getIsOncampus() { return is_oncampus; }
        public SectionAdminResponse setIsOncampus(Boolean value) { this.is_oncampus = value; return this; }
        public String getDistanceEdMaterials() { return distance_ed_materials; }
        public SectionAdminResponse setDistanceEdMaterials(String value) { this.distance_ed_materials = value; return this; }
        public Date getStartDate() { return start_date; }
        public SectionAdminResponse setStartDate(Date value) { this.start_date = value; return this; }
        public Date getEndDate() { return end_date; }
        public SectionAdminResponse setEndDate(Date value) { this.end_date = value; return this; }
        public Date getFirstMeetingDate() { return first_meeting_date; }
        public SectionAdminResponse setFirstMeetingDate(Date value) { this.first_meeting_date = value; return this; }
        public Date getLastMeetingDate() { return last_meeting_date; }
        public SectionAdminResponse setLastMeetingDate(Date value) { this.last_meeting_date = value; return this; }
        public String getMeetingDays() { return meeting_days; }
        public SectionAdminResponse setMeetingDays(String value) { this.meeting_days = value; return this; }
        public String getStartTimes() { return start_times; }
        public SectionAdminResponse setStartTimes(String value) { this.start_times = value; return this; }
        public String getEndTimes() { return end_times; }
        public SectionAdminResponse setEndTimes(String value) { this.end_times = value; return this; }
        public Boolean getIsPassFail() { return is_pass_fail; }
        public SectionAdminResponse setIsPassFail(Boolean value) { this.is_pass_fail = value; return this; }
        public Boolean getIsWeekend() { return is_weekend; }
        public SectionAdminResponse setIsWeekend(Boolean value) { this.is_weekend = value; return this; }
        public Boolean getIsWeekday() { return is_weekday; }
        public SectionAdminResponse setIsWeekday(Boolean value) { this.is_weekday = value; return this; }
        public Boolean getIsEvening() { return is_evening; }
        public SectionAdminResponse setIsEvening(Boolean value) { this.is_evening = value; return this; }
        public Boolean getIsWaitlist() { return is_waitlist; }
        public SectionAdminResponse setIsWaitlist(Boolean value) { this.is_waitlist = value; return this; }
        public Boolean isHasSpecialRequirements() { return has_special_requirements; }
        public SectionAdminResponse setHasSpecialRequirements(Boolean value) { this.has_special_requirements = value; return this; }
        public String getSpecialRequirements() { return special_requirements; }
        public SectionAdminResponse setSpecialRequirements(String value) { this.special_requirements = value; return this; }
        public Boolean getIsUnlisted() { return is_unlisted; }
        public SectionAdminResponse setIsUnlisted(Boolean value) { this.is_unlisted = value; return this; }
        public Integer getCapacity() { return capacity; }
        public SectionAdminResponse setCapacity(Integer value) { this.capacity = value; return this; }
        public BigDecimal getFlatFeeAmount() { return flat_fee_amount; }
        public SectionAdminResponse setFlatFeeAmount(BigDecimal value) { this.flat_fee_amount = value; return this; }
        public BigDecimal getAdditionalFeeAmount() { return additional_fee_amount; }
        public SectionAdminResponse setAdditionalFeeAmount(BigDecimal value) { this.additional_fee_amount = value; return this; }
        public Date getOverrideRegistrationStartDate() { return override_registration_start_date; }
        public SectionAdminResponse setOverrideRegistrationStartDate(Date value) { this.override_registration_start_date = value; return this; }
        public Date getOverrideRegistrationEndDate() { return override_registration_end_date; }
        public SectionAdminResponse setOverrideRegistrationEndDate(Date value) { this.override_registration_end_date = value; return this; }
        public Date getOverrideAddStartDate() { return override_add_start_date; }
        public SectionAdminResponse setOverrideAddStartDate(Date value) { this.override_add_start_date = value; return this; }
        public Date getOverrideAddEndDate() { return override_add_end_date; }
        public SectionAdminResponse setOverrideAddEndDate(Date value) { this.override_add_end_date = value; return this; }
        public Date getOverrideDropStartDate() { return override_drop_start_date; }
        public SectionAdminResponse setOverrideDropStartDate(Date value) { this.override_drop_start_date = value; return this; }
        public Date getOverrideDropEndDate() { return override_drop_end_date; }
        public SectionAdminResponse setOverrideDropEndDate(Date value) { this.override_drop_end_date = value; return this; }
        public Date getOverrideGradingEndDate() { return override_grading_end_date; }
        public SectionAdminResponse setOverrideGradingEndDate(Date value) { this.override_grading_end_date = value; return this; }
        public String getTerm() { return term; }
        public SectionAdminResponse setTerm(String value) { this.term = value; return this; }
        public String getReportingTerm() { return reporting_term; }
        public SectionAdminResponse setReportingTerm(String value) { this.reporting_term = value; return this; }
        public Integer getReportingYear() { return reporting_year; }
        public SectionAdminResponse setReportingYear(Integer value) { this.reporting_year = value; return this; }
        public Date getAddedDate() { return added_date; }
        public SectionAdminResponse setAddedDate(Date value) { this.added_date = value; return this; }
        public String getAddedBy() { return added_by; }
        public SectionAdminResponse setAddedBy(String value) { this.added_by = value; return this; }
        public Date getChangedDate() { return changed_date; }
        public SectionAdminResponse setChangedDate(Date value) { this.changed_date = value; return this; }
        public String getChangedBy() { return changed_by; }
        public SectionAdminResponse setChangedBy(String value) { this.changed_by = value; return this; }
        public Date getTimestamp() { return timestamp; }
        public SectionAdminResponse setTimestamp(Date value) { this.timestamp = value; return this; }
    }

}

Java SectionsAdminRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Sections/Admin/{reporting_term} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"reporting_term":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"reporting_term":"String","sections":[{"uuid":"String","section_id":0,"course_id":0,"course_name":"String","min_credits":0,"max_credits":0,"credit_increments":0,"min_audits":0,"max_audits":0,"audit_increments":0,"section_code":"String","title":"String","pretty_title":"String","override_course_description":"String","current_status":"String","location":"String","room":"String","is_audio":false,"is_oncampus":false,"distance_ed_materials":"String","start_date":"0001-01-01T00:00:00.0000000","end_date":"0001-01-01T00:00:00.0000000","first_meeting_date":"0001-01-01T00:00:00.0000000","last_meeting_date":"0001-01-01T00:00:00.0000000","meeting_days":"String","start_times":"String","end_times":"String","is_pass_fail":false,"is_weekend":false,"is_weekday":false,"is_evening":false,"is_waitlist":false,"has_special_requirements":false,"special_requirements":"String","is_unlisted":false,"capacity":0,"flat_fee_amount":0,"additional_fee_amount":0,"override_registration_start_date":"0001-01-01T00:00:00.0000000","override_registration_end_date":"0001-01-01T00:00:00.0000000","override_add_start_date":"0001-01-01T00:00:00.0000000","override_add_end_date":"0001-01-01T00:00:00.0000000","override_drop_start_date":"0001-01-01T00:00:00.0000000","override_drop_end_date":"0001-01-01T00:00:00.0000000","override_grading_end_date":"0001-01-01T00:00:00.0000000","term":"String","reporting_term":"String","reporting_year":0,"added_date":"0001-01-01T00:00:00.0000000","added_by":"String","changed_date":"0001-01-01T00:00:00.0000000","changed_by":"String","timestamp":"0001-01-01T00:00:00.0000000"}],"section_rates":{"0":[{"rate_id":0,"charge":0,"credit":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"uuid":"String","secUUID":"String","section_id":0,"course_name":"String","section_code":"String","title":"String","reporting_term":"String","rate_code":"String","rate_description":"String","is_override_credit_rate":false,"is_override_audit_rate":false}]},"section_refund_schedules":{"0":[{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"uuid":"String","secUUID":"String","section_id":0,"course_name":"String","section_code":"String","title":"String","reporting_term":"String","rate_code":"String","rate_description":"String","percentage":0,"start_date":"0001-01-01T00:00:00.0000000","end_date":"0001-01-01T00:00:00.0000000"}]},"locations":["String"],"section_instructors":{"0":[{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"regent_id":0,"regent_login":"String","preferred_name":"String","first_name":"String","last_name":"String","full_name":"String","email":"String","image_base64":"String"}]},"section_document_codes":{"0":["String"]},"crosslisted_sections":{"0":[0]}}