This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-config. See https://gitlab.nuiton.org/nuiton/nuiton-config.git commit 5b492912039a50d2af0ab9b5ac707ec7e7860db9 Author: Tony CHEMIT <chemit@codelutin.com> Date: Fri Oct 7 18:52:26 2016 +0200 Add missing license headers --- .../config/io/ini/ApplicationConfigIOIni.java | 22 ++++++++++++++++++++++ .../config/io/ini/ApplicationConfigIOIniTest.java | 22 ++++++++++++++++++++++ .../org/nuiton/config/io/ApplicationConfigIO.java | 22 ++++++++++++++++++++++ .../config/io/ApplicationConfigIOHelper.java | 22 ++++++++++++++++++++++ .../config/io/ApplicationConfigReadFormat.java | 22 ++++++++++++++++++++++ .../ApplicationConfigReadPropertiesException.java | 22 ++++++++++++++++++++++ .../ApplicationConfigWritePropertiesException.java | 22 ++++++++++++++++++++++ .../properties/ApplicationConfigIOProperties.java | 22 ++++++++++++++++++++++ .../ApplicationConfigIOPropertiesTest.java | 22 ++++++++++++++++++++++ .../test/resources/NuitonConfigExample.properties | 21 +++++++++++++++++++++ 10 files changed, 219 insertions(+) diff --git a/nuiton-config-io-ini/src/main/java/org/nuiton/config/io/ini/ApplicationConfigIOIni.java b/nuiton-config-io-ini/src/main/java/org/nuiton/config/io/ini/ApplicationConfigIOIni.java index fd0ed9e..b4c33d6 100644 --- a/nuiton-config-io-ini/src/main/java/org/nuiton/config/io/ini/ApplicationConfigIOIni.java +++ b/nuiton-config-io-ini/src/main/java/org/nuiton/config/io/ini/ApplicationConfigIOIni.java @@ -1,5 +1,27 @@ package org.nuiton.config.io.ini; +/*- + * #%L + * Nuiton Config :: IO Ini + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import com.google.common.base.Joiner; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.Multimap; diff --git a/nuiton-config-io-ini/src/test/java/org/nuiton/config/io/ini/ApplicationConfigIOIniTest.java b/nuiton-config-io-ini/src/test/java/org/nuiton/config/io/ini/ApplicationConfigIOIniTest.java index 024311c..5e9b9f5 100644 --- a/nuiton-config-io-ini/src/test/java/org/nuiton/config/io/ini/ApplicationConfigIOIniTest.java +++ b/nuiton-config-io-ini/src/test/java/org/nuiton/config/io/ini/ApplicationConfigIOIniTest.java @@ -1,5 +1,27 @@ package org.nuiton.config.io.ini; +/*- + * #%L + * Nuiton Config :: IO Ini + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import org.junit.Assert; import org.junit.Test; import org.nuiton.config.io.ApplicationConfigIO; diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIO.java b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIO.java index 25e9d24..859bc1e 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIO.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIO.java @@ -1,5 +1,27 @@ package org.nuiton.config.io; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import java.io.File; import java.net.URL; import java.util.Properties; diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIOHelper.java b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIOHelper.java index ade5445..a81bf3b 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIOHelper.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigIOHelper.java @@ -1,5 +1,27 @@ package org.nuiton.config.io; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import com.google.common.base.Preconditions; import java.io.File; diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadFormat.java b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadFormat.java index d68d3af..12c8fe7 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadFormat.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadFormat.java @@ -1,5 +1,27 @@ package org.nuiton.config.io; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + /** * Le format de lecture des ficiers de configuration. */ diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadPropertiesException.java b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadPropertiesException.java index 113cef8..207599c 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadPropertiesException.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigReadPropertiesException.java @@ -1,5 +1,27 @@ package org.nuiton.config.io; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + /** * Created by tchemit on 07/10/16. * diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigWritePropertiesException.java b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigWritePropertiesException.java index 63d4195..57be719 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigWritePropertiesException.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/ApplicationConfigWritePropertiesException.java @@ -1,5 +1,27 @@ package org.nuiton.config.io; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + /** * Created by tchemit on 07/10/16. * diff --git a/nuiton-config/src/main/java/org/nuiton/config/io/properties/ApplicationConfigIOProperties.java b/nuiton-config/src/main/java/org/nuiton/config/io/properties/ApplicationConfigIOProperties.java index b0d6127..65c7b32 100644 --- a/nuiton-config/src/main/java/org/nuiton/config/io/properties/ApplicationConfigIOProperties.java +++ b/nuiton-config/src/main/java/org/nuiton/config/io/properties/ApplicationConfigIOProperties.java @@ -1,5 +1,27 @@ package org.nuiton.config.io.properties; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import org.nuiton.config.io.ApplicationConfigIO; import org.nuiton.config.io.ApplicationConfigReadFormat; import org.nuiton.config.io.ApplicationConfigReadPropertiesException; diff --git a/nuiton-config/src/test/java/org/nuiton/config/io/properties/ApplicationConfigIOPropertiesTest.java b/nuiton-config/src/test/java/org/nuiton/config/io/properties/ApplicationConfigIOPropertiesTest.java index 94436d7..e8577e7 100644 --- a/nuiton-config/src/test/java/org/nuiton/config/io/properties/ApplicationConfigIOPropertiesTest.java +++ b/nuiton-config/src/test/java/org/nuiton/config/io/properties/ApplicationConfigIOPropertiesTest.java @@ -1,5 +1,27 @@ package org.nuiton.config.io.properties; +/*- + * #%L + * Nuiton Config :: API + * %% + * Copyright (C) 2016 Code Lutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import org.junit.Assert; import org.junit.Test; import org.nuiton.config.io.ApplicationConfigIO; diff --git a/nuiton-config/src/test/resources/NuitonConfigExample.properties b/nuiton-config/src/test/resources/NuitonConfigExample.properties index 3161b89..448d416 100644 --- a/nuiton-config/src/test/resources/NuitonConfigExample.properties +++ b/nuiton-config/src/test/resources/NuitonConfigExample.properties @@ -1,3 +1,24 @@ +### +# #%L +# Nuiton Config :: API +# %% +# Copyright (C) 2016 Code Lutin, Tony Chemit +# %% +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser 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 Lesser Public License for more details. +# +# You should have received a copy of the GNU General Lesser Public +# License along with this program. If not, see +# <http://www.gnu.org/licenses/lgpl-3.0.html>. +# #L% +### identity.firstName=Joshua identity.lastName=Bloch identity.age=56 -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.