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

com.penalara.ghc.jsonghcfile.engineghcfile.FileMetadata 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.Date;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;


/**
 * FileMetadata
 * 

* Information about the file. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "name", "versionJson", "createdDate", "lastModifiedDate", "refUser", "source", "fullMode" }) public class FileMetadata { /** * TimetableName *

* Name of the Timetable * (Required) * */ @JsonProperty("name") @JsonPropertyDescription("Name of the Timetable") private String name; /** * SchemaVersion *

* Version of multiplatformGHCSchema used * (Required) * */ @JsonProperty("versionJson") @JsonPropertyDescription("Version of multiplatformGHCSchema used") private String versionJson; /** * JsonCreatedDate *

* Json generation date. * (Required) * */ @JsonProperty("createdDate") @JsonPropertyDescription("Json generation date.") private Date createdDate; /** * JsonGenerationDate *

* Json last modification date. * (Required) * */ @JsonProperty("lastModifiedDate") @JsonPropertyDescription("Json last modification date.") private Date lastModifiedDate; /** * UserReference *

* Contains a user reference who owns the file. * (Required) * */ @JsonProperty("refUser") @JsonPropertyDescription("Contains a user reference who owns the file.") private String refUser; /** * SourceModule *

* Indicates the GHCMultiplatform module that generated the file. * (Required) * */ @JsonProperty("source") @JsonPropertyDescription("Indicates the GHCMultiplatform module that generated the file.") private FileMetadata.SourceModule source; /** * FullPlannerMode *

* Indicates if the planner must use the full mode. * */ @JsonProperty("fullMode") @JsonPropertyDescription("Indicates if the planner must use the full mode.") private Boolean fullMode = false; /** * TimetableName *

* Name of the Timetable * (Required) * */ @JsonProperty("name") public String getName() { return name; } /** * TimetableName *

* Name of the Timetable * (Required) * */ @JsonProperty("name") public void setName(String name) { this.name = name; } /** * SchemaVersion *

* Version of multiplatformGHCSchema used * (Required) * */ @JsonProperty("versionJson") public String getVersionJson() { return versionJson; } /** * SchemaVersion *

* Version of multiplatformGHCSchema used * (Required) * */ @JsonProperty("versionJson") public void setVersionJson(String versionJson) { this.versionJson = versionJson; } /** * JsonCreatedDate *

* Json generation date. * (Required) * */ @JsonProperty("createdDate") public Date getCreatedDate() { return createdDate; } /** * JsonCreatedDate *

* Json generation date. * (Required) * */ @JsonProperty("createdDate") public void setCreatedDate(Date createdDate) { this.createdDate = createdDate; } /** * JsonGenerationDate *

* Json last modification date. * (Required) * */ @JsonProperty("lastModifiedDate") public Date getLastModifiedDate() { return lastModifiedDate; } /** * JsonGenerationDate *

* Json last modification date. * (Required) * */ @JsonProperty("lastModifiedDate") public void setLastModifiedDate(Date lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } /** * UserReference *

* Contains a user reference who owns the file. * (Required) * */ @JsonProperty("refUser") public String getRefUser() { return refUser; } /** * UserReference *

* Contains a user reference who owns the file. * (Required) * */ @JsonProperty("refUser") public void setRefUser(String refUser) { this.refUser = refUser; } /** * SourceModule *

* Indicates the GHCMultiplatform module that generated the file. * (Required) * */ @JsonProperty("source") public FileMetadata.SourceModule getSource() { return source; } /** * SourceModule *

* Indicates the GHCMultiplatform module that generated the file. * (Required) * */ @JsonProperty("source") public void setSource(FileMetadata.SourceModule source) { this.source = source; } /** * FullPlannerMode *

* Indicates if the planner must use the full mode. * */ @JsonProperty("fullMode") public Boolean getFullMode() { return fullMode; } /** * FullPlannerMode *

* Indicates if the planner must use the full mode. * */ @JsonProperty("fullMode") public void setFullMode(Boolean fullMode) { this.fullMode = fullMode; } /** * SourceModule *

* Indicates the GHCMultiplatform module that generated the file. * */ public enum SourceModule { HORARIOS("horarios"), JE("je"), EXAMENES("examenes"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (FileMetadata.SourceModule c: values()) { CONSTANTS.put(c.value, c); } } SourceModule(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static FileMetadata.SourceModule fromValue(String value) { FileMetadata.SourceModule constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy