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

com.penalara.ghc.jsonghcfile.engineghcfile.AnonymousClassRoom 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;


/**
 * AnonymousClassRoom
 * 

* Object with anonymous classrooms created in a set of classrooms. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refClassRoomsSet", "classRoomsCreated" }) public class AnonymousClassRoom { /** * Identifier of the ClassRooms group. * (Required) * */ @JsonProperty("refClassRoomsSet") @JsonPropertyDescription("Identifier of the ClassRooms group.") private String refClassRoomsSet; /** * ListOfAnonymousRooms *

* List of anonymous classroom created in one set of classrooms. * (Required) * */ @JsonProperty("classRoomsCreated") @JsonPropertyDescription("List of anonymous classroom created in one set of classrooms.") private List classRoomsCreated = new ArrayList(); /** * Identifier of the ClassRooms group. * (Required) * */ @JsonProperty("refClassRoomsSet") public String getRefClassRoomsSet() { return refClassRoomsSet; } /** * Identifier of the ClassRooms group. * (Required) * */ @JsonProperty("refClassRoomsSet") public void setRefClassRoomsSet(String refClassRoomsSet) { this.refClassRoomsSet = refClassRoomsSet; } /** * ListOfAnonymousRooms *

* List of anonymous classroom created in one set of classrooms. * (Required) * */ @JsonProperty("classRoomsCreated") public List getClassRoomsCreated() { return classRoomsCreated; } /** * ListOfAnonymousRooms *

* List of anonymous classroom created in one set of classrooms. * (Required) * */ @JsonProperty("classRoomsCreated") public void setClassRoomsCreated(List classRoomsCreated) { this.classRoomsCreated = classRoomsCreated; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy