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

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

Go to download

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

The 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;


/**
 * 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy