branch develop updated (e54cb1f -> ee124b8)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from e54cb1f remove old test bases new ee124b8 Add missing file headers The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit ee124b89ca7b5805efecb2875b64d60a71846461 Author: Tony CHEMIT <chemit@codelutin.com> Date: Mon Nov 7 14:32:56 2016 +0100 Add missing file headers Summary of changes: .../swing/ObserveSwingSessionHelper.java | 22 ++++++++++++++++++++++ .../table/impl/seine/TargetSampleUIHandler.java | 4 ++-- ...ol_8376_vesselActivitySeine_add_allowFad-H2.sql | 21 +++++++++++++++++++++ ...ol_8376_vesselActivitySeine_add_allowFad-PG.sql | 21 +++++++++++++++++++++ .../V5_1_18_evol_8404_lengthLengthParameter-H2.sql | 21 +++++++++++++++++++++ .../V5_1_18_evol_8404_lengthLengthParameter-PG.sql | 21 +++++++++++++++++++++ .../entities/referentiel/FormulaHelper.java | 22 ++++++++++++++++++++++ .../entities/referentiel/FormulaSupportImpl.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameterImpl.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameterTopiaDao.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameters.java | 22 ++++++++++++++++++++++ .../entities/referentiel/FormulaHelperTest.java | 22 ++++++++++++++++++++++ .../services/dto/referential/FormulaHelper.java | 22 ++++++++++++++++++++++ .../dto/referential/LengthLengthParameterDto.java | 22 ++++++++++++++++++++++ .../dto/referential/LengthWeightParameterDto.java | 22 ++++++++++++++++++++++ .../services/dto/seine/TargetLengthHelper.java | 22 ++++++++++++++++++++++ .../referential/ReferentialsShellBuilder.java | 22 ++++++++++++++++++++++ .../referential/MissingReferentialResult.java | 22 ++++++++++++++++++++++ 18 files changed, 372 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit ee124b89ca7b5805efecb2875b64d60a71846461 Author: Tony CHEMIT <chemit@codelutin.com> Date: Mon Nov 7 14:32:56 2016 +0100 Add missing file headers --- .../swing/ObserveSwingSessionHelper.java | 22 ++++++++++++++++++++++ .../table/impl/seine/TargetSampleUIHandler.java | 4 ++-- ...ol_8376_vesselActivitySeine_add_allowFad-H2.sql | 21 +++++++++++++++++++++ ...ol_8376_vesselActivitySeine_add_allowFad-PG.sql | 21 +++++++++++++++++++++ .../V5_1_18_evol_8404_lengthLengthParameter-H2.sql | 21 +++++++++++++++++++++ .../V5_1_18_evol_8404_lengthLengthParameter-PG.sql | 21 +++++++++++++++++++++ .../entities/referentiel/FormulaHelper.java | 22 ++++++++++++++++++++++ .../entities/referentiel/FormulaSupportImpl.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameterImpl.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameterTopiaDao.java | 22 ++++++++++++++++++++++ .../referentiel/LengthLengthParameters.java | 22 ++++++++++++++++++++++ .../entities/referentiel/FormulaHelperTest.java | 22 ++++++++++++++++++++++ .../services/dto/referential/FormulaHelper.java | 22 ++++++++++++++++++++++ .../dto/referential/LengthLengthParameterDto.java | 22 ++++++++++++++++++++++ .../dto/referential/LengthWeightParameterDto.java | 22 ++++++++++++++++++++++ .../services/dto/seine/TargetLengthHelper.java | 22 ++++++++++++++++++++++ .../referential/ReferentialsShellBuilder.java | 22 ++++++++++++++++++++++ .../referential/MissingReferentialResult.java | 22 ++++++++++++++++++++++ 18 files changed, 372 insertions(+), 2 deletions(-) diff --git a/application-swing/src/main/java/fr/ird/observe/application/swing/ObserveSwingSessionHelper.java b/application-swing/src/main/java/fr/ird/observe/application/swing/ObserveSwingSessionHelper.java index a27aa41..bd7cf2e 100644 --- a/application-swing/src/main/java/fr/ird/observe/application/swing/ObserveSwingSessionHelper.java +++ b/application-swing/src/main/java/fr/ird/observe/application/swing/ObserveSwingSessionHelper.java @@ -1,5 +1,27 @@ package fr.ird.observe.application.swing; +/*- + * #%L + * ObServe :: Application Swing + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import jaxx.runtime.swing.session.SwingSession; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; diff --git a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/content/table/impl/seine/TargetSampleUIHandler.java b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/content/table/impl/seine/TargetSampleUIHandler.java index 9b3d01d..818bbd3 100644 --- a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/content/table/impl/seine/TargetSampleUIHandler.java +++ b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/content/table/impl/seine/TargetSampleUIHandler.java @@ -8,12 +8,12 @@ * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. diff --git a/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-H2.sql b/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-H2.sql index d59de75..2f8eafa 100644 --- a/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-H2.sql +++ b/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-H2.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities Migration +-- %% +-- Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_seine.vesselactivity ADD COLUMN allowFad BOOLEAN NOT NULL DEFAULT FALSE; UPDATE observe_seine.vesselactivity SET allowFad = TRUE WHERE code = '6'; UPDATE observe_seine.vesselactivity SET allowFad = TRUE WHERE code = '13'; diff --git a/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-PG.sql b/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-PG.sql index d59de75..2f8eafa 100644 --- a/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-PG.sql +++ b/entities-migration/src/main/resources/db/migration/5.1/V5_1_17_evol_8376_vesselActivitySeine_add_allowFad-PG.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities Migration +-- %% +-- Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_seine.vesselactivity ADD COLUMN allowFad BOOLEAN NOT NULL DEFAULT FALSE; UPDATE observe_seine.vesselactivity SET allowFad = TRUE WHERE code = '6'; UPDATE observe_seine.vesselactivity SET allowFad = TRUE WHERE code = '13'; diff --git a/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-H2.sql b/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-H2.sql index a69fca5..ead9209 100644 --- a/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-H2.sql +++ b/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-H2.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities Migration +-- %% +-- Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_seine.nontargetlength ADD COLUMN sizeMeasureType VARCHAR(255); ALTER TABLE observe_seine.nontargetlength ADD CONSTRAINT FK_NON_TARGET_LENGTH_SIZE_MEASURE_TYPE FOREIGN KEY(sizeMeasureType) REFERENCES OBSERVE_COMMON.sizemeasuretype(topiaid); diff --git a/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-PG.sql b/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-PG.sql index eee685e..c5be30e 100644 --- a/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-PG.sql +++ b/entities-migration/src/main/resources/db/migration/5.1/V5_1_18_evol_8404_lengthLengthParameter-PG.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities Migration +-- %% +-- Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_seine.nontargetlength ADD COLUMN sizeMeasureType character varying(255); ALTER TABLE observe_seine.nontargetlength ADD CONSTRAINT FK_NON_TARGET_LENGTH_SIZE_MEASURE_TYPE FOREIGN KEY(sizeMeasureType) REFERENCES OBSERVE_COMMON.sizemeasuretype(topiaid); diff --git a/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaHelper.java b/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaHelper.java index 10ea378..7188756 100644 --- a/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaHelper.java +++ b/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaHelper.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import org.apache.commons.lang3.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; diff --git a/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaSupportImpl.java b/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaSupportImpl.java index e724013..8ae237f 100644 --- a/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaSupportImpl.java +++ b/entities/src/main/java/fr/ird/observe/entities/referentiel/FormulaSupportImpl.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import org.apache.commons.lang3.BooleanUtils; import java.util.Map; diff --git a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterImpl.java b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterImpl.java index 4be7a2f..ee23b71 100644 --- a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterImpl.java +++ b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterImpl.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + /** * Created on 05/11/16. * diff --git a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterTopiaDao.java b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterTopiaDao.java index 9d21663..98e4e42 100644 --- a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterTopiaDao.java +++ b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameterTopiaDao.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import java.util.Optional; public class LengthLengthParameterTopiaDao extends AbstractLengthLengthParameterTopiaDao<LengthLengthParameter> { diff --git a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameters.java b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameters.java index 89f2506..281d3d1 100644 --- a/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameters.java +++ b/entities/src/main/java/fr/ird/observe/entities/referentiel/LengthLengthParameters.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import fr.ird.observe.ObserveTopiaDaoSupplier; import java.util.Optional; diff --git a/entities/src/test/java/fr/ird/observe/entities/referentiel/FormulaHelperTest.java b/entities/src/test/java/fr/ird/observe/entities/referentiel/FormulaHelperTest.java index 18e9195..ecec502 100644 --- a/entities/src/test/java/fr/ird/observe/entities/referentiel/FormulaHelperTest.java +++ b/entities/src/test/java/fr/ird/observe/entities/referentiel/FormulaHelperTest.java @@ -1,5 +1,27 @@ package fr.ird.observe.entities.referentiel; +/*- + * #%L + * ObServe :: Entities + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import org.junit.Assert; import org.junit.Test; diff --git a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/FormulaHelper.java b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/FormulaHelper.java index e763bf3..888463f 100644 --- a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/FormulaHelper.java +++ b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/FormulaHelper.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.dto.referential; +/*- + * #%L + * ObServe :: Services DTO + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import org.apache.commons.lang3.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; diff --git a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthLengthParameterDto.java b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthLengthParameterDto.java index 7de2353..8d88dd8 100644 --- a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthLengthParameterDto.java +++ b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthLengthParameterDto.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.dto.referential; +/*- + * #%L + * ObServe :: Services DTO + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import java.util.Map; public class LengthLengthParameterDto extends GeneratedLengthLengthParameterDto implements FormulaHelper.FormulaSupport { diff --git a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthWeightParameterDto.java b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthWeightParameterDto.java index 37ddde3..8c45c8b 100644 --- a/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthWeightParameterDto.java +++ b/services-dto/src/main/java/fr/ird/observe/services/dto/referential/LengthWeightParameterDto.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.dto.referential; +/*- + * #%L + * ObServe :: Services DTO + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import java.util.Map; public class LengthWeightParameterDto extends GeneratedLengthWeightParameterDto implements FormulaHelper.FormulaSupport { diff --git a/services-dto/src/main/java/fr/ird/observe/services/dto/seine/TargetLengthHelper.java b/services-dto/src/main/java/fr/ird/observe/services/dto/seine/TargetLengthHelper.java index ea6cef1..4b30012 100644 --- a/services-dto/src/main/java/fr/ird/observe/services/dto/seine/TargetLengthHelper.java +++ b/services-dto/src/main/java/fr/ird/observe/services/dto/seine/TargetLengthHelper.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.dto.seine; +/*- + * #%L + * ObServe :: Services DTO + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + public class TargetLengthHelper extends GeneratedTargetLengthHelper { public static <BeanType extends TargetLengthDto> void copyTargetLengthDto(BeanType source, BeanType target) { diff --git a/services-topia/src/main/java/fr/ird/observe/services/topia/service/referential/ReferentialsShellBuilder.java b/services-topia/src/main/java/fr/ird/observe/services/topia/service/referential/ReferentialsShellBuilder.java index 2bd64fd..368d740 100644 --- a/services-topia/src/main/java/fr/ird/observe/services/topia/service/referential/ReferentialsShellBuilder.java +++ b/services-topia/src/main/java/fr/ird/observe/services/topia/service/referential/ReferentialsShellBuilder.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.topia.service.referential; +/*- + * #%L + * ObServe :: Services ToPIA Implementation + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import com.google.common.cache.AbstractLoadingCache; import com.google.common.cache.LoadingCache; import com.google.common.collect.HashMultimap; diff --git a/services/src/main/java/fr/ird/observe/services/service/referential/MissingReferentialResult.java b/services/src/main/java/fr/ird/observe/services/service/referential/MissingReferentialResult.java index abce1ac..78d83fd 100644 --- a/services/src/main/java/fr/ird/observe/services/service/referential/MissingReferentialResult.java +++ b/services/src/main/java/fr/ird/observe/services/service/referential/MissingReferentialResult.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.service.referential; +/*- + * #%L + * ObServe :: Services + * %% + * Copyright (C) 2008 - 2016 IRD, Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import com.google.common.collect.SetMultimap; import fr.ird.observe.services.dto.referential.ReferentialDto; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm