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

io.vertigo.planning.agenda.domain.CreationPlageHoraireForm Maven / Gradle / Ivy

The newest version!
/*
 * vertigo - application development platform
 *
 * Copyright (C) 2013-2024, Vertigo.io, [email protected]
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.vertigo.planning.agenda.domain;

import io.vertigo.core.lang.Generated;
import io.vertigo.datamodel.data.model.DataObject;
import io.vertigo.datamodel.data.stereotype.Field;
import io.vertigo.datamodel.data.util.DataModelUtil;

/**
 * This class is automatically generated.
 * DO NOT EDIT THIS FILE DIRECTLY.
 */
@Generated
public final class CreationPlageHoraireForm implements DataObject {
	private static final long serialVersionUID = 1L;

	private Long ageId;
	private java.time.LocalDate dateLocale;
	private Integer minutesDebut;
	private Integer minutesFin;
	private Integer nbGuichet;
	private Integer dureeCreneau;
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Agenda'.
	 * @return Long ageId Obligatoire
	 */
	@Field(smartType = "STyPId", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Agenda")
	public Long getAgeId() {
		return ageId;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Agenda'.
	 * @param ageId Long Obligatoire
	 */
	public void setAgeId(final Long ageId) {
		this.ageId = ageId;
	}
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Date de la plage horaire'.
	 * @return LocalDate dateLocale Obligatoire
	 */
	@Field(smartType = "STyPLocalDate", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Date de la plage horaire")
	public java.time.LocalDate getDateLocale() {
		return dateLocale;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Date de la plage horaire'.
	 * @param dateLocale LocalDate Obligatoire
	 */
	public void setDateLocale(final java.time.LocalDate dateLocale) {
		this.dateLocale = dateLocale;
	}
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Heure de début'.
	 * @return Integer minutesDebut Obligatoire
	 */
	@Field(smartType = "STyPHeureMinute", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Heure de début")
	public Integer getMinutesDebut() {
		return minutesDebut;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Heure de début'.
	 * @param minutesDebut Integer Obligatoire
	 */
	public void setMinutesDebut(final Integer minutesDebut) {
		this.minutesDebut = minutesDebut;
	}
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Heure de fin'.
	 * @return Integer minutesFin Obligatoire
	 */
	@Field(smartType = "STyPHeureMinute", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Heure de fin")
	public Integer getMinutesFin() {
		return minutesFin;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Heure de fin'.
	 * @param minutesFin Integer Obligatoire
	 */
	public void setMinutesFin(final Integer minutesFin) {
		this.minutesFin = minutesFin;
	}
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Nombre de guichets'.
	 * @return Integer nbGuichet Obligatoire
	 */
	@Field(smartType = "STyPNbGuichet", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Nombre de guichets")
	public Integer getNbGuichet() {
		return nbGuichet;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Nombre de guichets'.
	 * @param nbGuichet Integer Obligatoire
	 */
	public void setNbGuichet(final Integer nbGuichet) {
		this.nbGuichet = nbGuichet;
	}
	
	/**
	 * Champ : DATA.
	 * Récupère la valeur de la propriété 'Durée en minutes'.
	 * @return Integer dureeCreneau Obligatoire
	 */
	@Field(smartType = "STyPMinute", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Durée en minutes")
	public Integer getDureeCreneau() {
		return dureeCreneau;
	}

	/**
	 * Champ : DATA.
	 * Définit la valeur de la propriété 'Durée en minutes'.
	 * @param dureeCreneau Integer Obligatoire
	 */
	public void setDureeCreneau(final Integer dureeCreneau) {
		this.dureeCreneau = dureeCreneau;
	}
	
	/** {@inheritDoc} */
	@Override
	public String toString() {
		return DataModelUtil.toString(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy