com.penalara.ghc.jsonghcfile.engineghcfile.AssignedComplementary Maven / Gradle / Ivy
Show all versions of engineGHCFile Show documentation
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;
/**
* AssignedComplementary
*
* Teacher's complementary activity assigned in the timetable.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"refComplementary",
"refClassRomms"
})
public class AssignedComplementary {
/**
* Identifier of the Complementary Activity assigned.
* (Required)
*
*/
@JsonProperty("refComplementary")
@JsonPropertyDescription("Identifier of the Complementary Activity assigned.")
private String refComplementary;
/**
* 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 Complementary Activity assigned.
* (Required)
*
*/
@JsonProperty("refComplementary")
public String getRefComplementary() {
return refComplementary;
}
/**
* Identifier of the Complementary Activity assigned.
* (Required)
*
*/
@JsonProperty("refComplementary")
public void setRefComplementary(String refComplementary) {
this.refComplementary = refComplementary;
}
/**
* 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;
}
}