All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.penalara.ghc.jsonghcfile.engineghcfile.AssignedMeeting Maven / Gradle / Ivy

Go to download

Project with Java POJO classes of full file format to new PeñalaraGHC-Engine.

There is a newer version: 0.6.0
Show newest version

package com.penalara.ghc.jsonghcfile.engineghcfile;

import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * AssignedMeeting
 * 

* Meeting of teachers assigned in the timetable. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refMeeting", "refTeachers", "refClassRomms" }) public class AssignedMeeting { /** * Identifier of the meeting assigned. * (Required) * */ @JsonProperty("refMeeting") @JsonPropertyDescription("Identifier of the meeting assigned.") private String refMeeting; /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeachers") @JsonPropertyDescription("List of teachers assigned to the class unit.") private List refTeachers = new ArrayList(); /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") @JsonPropertyDescription("List of classrooms assigned to teach the class unit.") private List refClassRomms = new ArrayList(); /** * Identifier of the meeting assigned. * (Required) * */ @JsonProperty("refMeeting") public String getRefMeeting() { return refMeeting; } /** * Identifier of the meeting assigned. * (Required) * */ @JsonProperty("refMeeting") public void setRefMeeting(String refMeeting) { this.refMeeting = refMeeting; } /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeachers") public List getRefTeachers() { return refTeachers; } /** * RefTeachers *

* List of teachers assigned to the class unit. * (Required) * */ @JsonProperty("refTeachers") public void setRefTeachers(List refTeachers) { this.refTeachers = refTeachers; } /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") public List getRefClassRomms() { return refClassRomms; } /** * RefclassRomms *

* List of classrooms assigned to teach the class unit. * */ @JsonProperty("refClassRomms") public void setRefClassRomms(List refClassRomms) { this.refClassRomms = refClassRomms; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy