
io.vertigo.orchestra.domain.referential.OUser Maven / Gradle / Ivy
/**
* vertigo - application development platform
*
* Copyright (C) 2013-2023, 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.orchestra.domain.referential;
import io.vertigo.core.lang.Generated;
import io.vertigo.datamodel.structure.model.Entity;
import io.vertigo.datamodel.structure.model.UID;
import io.vertigo.datamodel.structure.stereotype.Field;
import io.vertigo.datamodel.structure.util.DtObjectUtil;
/**
* This class is automatically generated.
* DO NOT EDIT THIS FILE DIRECTLY.
*/
@Generated
@io.vertigo.datamodel.structure.stereotype.DataSpace("orchestra")
public final class OUser implements Entity {
private static final long serialVersionUID = 1L;
private Long usrId;
private String firstName;
private String lastName;
private String email;
private String password;
private Boolean mailAlert;
private Boolean active;
/** {@inheritDoc} */
@Override
public UID getUID() {
return UID.of(this);
}
/**
* Champ : ID.
* Récupère la valeur de la propriété 'Id'.
* @return Long usrId Obligatoire
*/
@Field(smartType = "STyOIdentifiant", type = "ID", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Id")
public Long getUsrId() {
return usrId;
}
/**
* Champ : ID.
* Définit la valeur de la propriété 'Id'.
* @param usrId Long Obligatoire
*/
public void setUsrId(final Long usrId) {
this.usrId = usrId;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Nom'.
* @return String firstName
*/
@Field(smartType = "STyOLibelle", label = "Nom")
public String getFirstName() {
return firstName;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Nom'.
* @param firstName String
*/
public void setFirstName(final String firstName) {
this.firstName = firstName;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Prénom'.
* @return String lastName
*/
@Field(smartType = "STyOLibelle", label = "Prénom")
public String getLastName() {
return lastName;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Prénom'.
* @param lastName String
*/
public void setLastName(final String lastName) {
this.lastName = lastName;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Email'.
* @return String email
*/
@Field(smartType = "STyOLibelle", label = "Email")
public String getEmail() {
return email;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Email'.
* @param email String
*/
public void setEmail(final String email) {
this.email = email;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Mot de passe'.
* @return String password
*/
@Field(smartType = "STyOLibelle", label = "Mot de passe")
public String getPassword() {
return password;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Mot de passe'.
* @param password String
*/
public void setPassword(final String password) {
this.password = password;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Alerté en cas d'erreur'.
* @return Boolean mailAlert
*/
@Field(smartType = "STyOBooleen", label = "Alerté en cas d'erreur")
public Boolean getMailAlert() {
return mailAlert;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Alerté en cas d'erreur'.
* @param mailAlert Boolean
*/
public void setMailAlert(final Boolean mailAlert) {
this.mailAlert = mailAlert;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Compte Actif'.
* @return Boolean active
*/
@Field(smartType = "STyOBooleen", label = "Compte Actif")
public Boolean getActive() {
return active;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Compte Actif'.
* @param active Boolean
*/
public void setActive(final Boolean active) {
this.active = active;
}
/** {@inheritDoc} */
@Override
public String toString() {
return DtObjectUtil.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy