io.vertigo.orchestra.domain.referential.OExecutionState 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.orchestra.domain.referential;
import io.vertigo.core.lang.Generated;
import io.vertigo.datamodel.data.model.Entity;
import io.vertigo.datamodel.data.model.UID;
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
@io.vertigo.datamodel.data.stereotype.DataSpace("orchestra")
public final class OExecutionState implements Entity {
private static final long serialVersionUID = 1L;
private String estCd;
private String label;
/** {@inheritDoc} */
@Override
public UID getUID() {
return UID.of(this);
}
/**
* Champ : ID.
* Récupère la valeur de la propriété 'Code'.
* @return String estCd Obligatoire
*/
@Field(smartType = "STyOCodeIdentifiant", type = "ID", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Code")
public String getEstCd() {
return estCd;
}
/**
* Champ : ID.
* Définit la valeur de la propriété 'Code'.
* @param estCd String Obligatoire
*/
public void setEstCd(final String estCd) {
this.estCd = estCd;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Libellé'.
* @return String label
*/
@Field(smartType = "STyOLibelle", label = "Libellé")
public String getLabel() {
return label;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Libellé'.
* @param label String
*/
public void setLabel(final String label) {
this.label = label;
}
/** {@inheritDoc} */
@Override
public String toString() {
return DataModelUtil.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy