regis

<back to all web services

SectionAdminRequest

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

public class dtos
{

    public static class SectionAdminRequest
    {
        public String uuid = null;
        
        public String getUuid() { return uuid; }
        public SectionAdminRequest setUuid(String value) { this.uuid = 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 SectionAdminRequest DTOs

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

HTTP + JSV

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

POST /Section/Admin/{uuid} HTTP/1.1 
Host: data.regent-college.edu 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	uuid: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	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-01,
	end_date: 0001-01-01,
	first_meeting_date: 0001-01-01,
	last_meeting_date: 0001-01-01,
	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-01,
	override_registration_end_date: 0001-01-01,
	override_add_start_date: 0001-01-01,
	override_add_end_date: 0001-01-01,
	override_drop_start_date: 0001-01-01,
	override_drop_end_date: 0001-01-01,
	override_grading_end_date: 0001-01-01,
	term: String,
	reporting_term: String,
	reporting_year: 0,
	added_date: 0001-01-01,
	added_by: String,
	changed_date: 0001-01-01,
	changed_by: String,
	timestamp: 0001-01-01
}