This is an automated email from the git hooks/post-receive script. New commit to branch feature/5842 in repository tutti. See http://git.codelutin.com/tutti.git commit b1e6e58457bc097fcb8448aebab5c240482a2446 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Oct 21 13:20:36 2014 +0200 refs #5842 use adagio 3.6.4 (fix catch batch loading) + remove quantification measurement at synchronize action operation + foacotrize code between speciesBatch and benthosBatch --- .../entities/data/SpeciesAbleBatch.java | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) diff --git a/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatch.java b/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatch.java new file mode 100644 index 0000000..bcc1ce3 --- /dev/null +++ b/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatch.java @@ -0,0 +1,67 @@ +package fr.ifremer.tutti.persistence.entities.data; + +import fr.ifremer.tutti.persistence.entities.CommentAware; +import fr.ifremer.tutti.persistence.entities.TuttiEntity; +import fr.ifremer.tutti.persistence.entities.referential.Species; +import java.io.Serializable; +import java.util.List; +import javax.annotation.Generated; + +@Generated(value = "org.nuiton.eugene.java.JavaInterfaceTransformer", date = "Mon Oct 20 10:51:27 CEST 2014") +public interface SpeciesAbleBatch extends TuttiEntity, CommentAware { + + Species getSpecies(); + + void setSpecies(Species species); + + Integer getSampleCategoryId(); + + Serializable getSampleCategoryValue(); + + Float getSampleCategoryWeight(); + + Integer getNumber(); + + boolean isSpeciesToConfirm(); + + Float getSampleCategoryComputedWeight(); + + Integer getComputedNumber(); + + Float getComputedWeight(); + + void setSampleCategoryId(Integer categoryId); + + void setSampleCategoryValue(Serializable categoryValue); + + void setSampleCategoryWeight(Float categoryWeight); + + void setNumber(Integer number); + + void setSpeciesToConfirm(boolean speciesToConfirm); + + void setSampleCategoryComputedWeight(Float sampleCategoryComputedWeight); + + void setComputedNumber(Integer computedNumber); + + void setComputedWeight(Float computedWeight); + + SpeciesAbleBatch getParentBatch(); + + boolean isChildBatchsEmpty(); + + List<? extends SpeciesAbleBatch> getChildBatchs(); + + Float getWeight(); + + void setWeight(Float weight); + + Integer getRankOrder(); + + void setRankOrder(Integer rankOrder); + + void setParentBatch(SpeciesAbleBatch parentBatch); + + void setChildBatchs(List childs); + +} //SpeciesAbleBatch -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.