io.vertigo.orchestra.domain.definition.OActivity 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.definition;
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;
import io.vertigo.datastore.impl.entitystore.StoreVAccessor;
/**
* This class is automatically generated.
* DO NOT EDIT THIS FILE DIRECTLY.
*/
@Generated
@io.vertigo.datamodel.data.stereotype.DataSpace("orchestra")
public final class OActivity implements Entity {
private static final long serialVersionUID = 1L;
private Long actId;
private String name;
private String label;
private Integer number;
private Boolean milestone;
private String engine;
@io.vertigo.datamodel.data.stereotype.Association(
name = "AActPro",
fkFieldName = "proId",
primaryDtDefinitionName = "DtOProcess",
primaryIsNavigable = true,
primaryRole = "Process",
primaryLabel = "Processus",
primaryMultiplicity = "1..1",
foreignDtDefinitionName = "DtOActivity",
foreignIsNavigable = false,
foreignRole = "Activity",
foreignLabel = "Activity",
foreignMultiplicity = "0..*")
private final StoreVAccessor proIdAccessor = new StoreVAccessor<>(io.vertigo.orchestra.domain.definition.OProcess.class, "Process");
/** {@inheritDoc} */
@Override
public UID getUID() {
return UID.of(this);
}
/**
* Champ : ID.
* Récupère la valeur de la propriété 'Id Activité'.
* @return Long actId Obligatoire
*/
@Field(smartType = "STyOIdentifiant", type = "ID", cardinality = io.vertigo.core.lang.Cardinality.ONE, label = "Id Activité")
public Long getActId() {
return actId;
}
/**
* Champ : ID.
* Définit la valeur de la propriété 'Id Activité'.
* @param actId Long Obligatoire
*/
public void setActId(final Long actId) {
this.actId = actId;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Nom de l'activité'.
* @return String name
*/
@Field(smartType = "STyOLibelle", label = "Nom de l'activité")
public String getName() {
return name;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Nom de l'activité'.
* @param name String
*/
public void setName(final String name) {
this.name = name;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Libellé de l'activité'.
* @return String label
*/
@Field(smartType = "STyOLibelle", label = "Libellé de l'activité")
public String getLabel() {
return label;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Libellé de l'activité'.
* @param label String
*/
public void setLabel(final String label) {
this.label = label;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Numéro de l'activité'.
* @return Integer number
*/
@Field(smartType = "STyONombre", label = "Numéro de l'activité")
public Integer getNumber() {
return number;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Numéro de l'activité'.
* @param number Integer
*/
public void setNumber(final Integer number) {
this.number = number;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Jalon'.
* @return Boolean milestone
*/
@Field(smartType = "STyOBooleen", label = "Jalon")
public Boolean getMilestone() {
return milestone;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Jalon'.
* @param milestone Boolean
*/
public void setMilestone(final Boolean milestone) {
this.milestone = milestone;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Implémentation de l'activité'.
* @return String engine
*/
@Field(smartType = "STyOClasse", label = "Implémentation de l'activité")
public String getEngine() {
return engine;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Implémentation de l'activité'.
* @param engine String
*/
public void setEngine(final String engine) {
this.engine = engine;
}
/**
* Champ : FOREIGN_KEY.
* Récupère la valeur de la propriété 'Processus'.
* @return Long proId Obligatoire
*/
@io.vertigo.datamodel.data.stereotype.ForeignKey(smartType = "STyOIdentifiant", label = "Processus", fkDefinition = "DtOProcess", cardinality = io.vertigo.core.lang.Cardinality.ONE )
public Long getProId() {
return (Long) proIdAccessor.getId();
}
/**
* Champ : FOREIGN_KEY.
* Définit la valeur de la propriété 'Processus'.
* @param proId Long Obligatoire
*/
public void setProId(final Long proId) {
proIdAccessor.setId(proId);
}
/**
* Association : Processus.
* @return l'accesseur vers la propriété 'Processus'
*/
public StoreVAccessor process() {
return proIdAccessor;
}
/** {@inheritDoc} */
@Override
public String toString() {
return DataModelUtil.toString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy