This is an automated email from the git hooks/post-receive script. New commit to branch feature/3860_introduce_topiasqlbatchsupport in repository topia. See http://git.nuiton.org/topia.git commit 29ed7349275e772fadba2f024423b11d78595b71 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Jan 5 22:12:29 2016 +0100 Add missing license headers --- .../support/TopiaMetadataModelSupportImpl.java | 23 ++++++++++++++++++++++ .../persistence/metadata/TopiaMetadataEntity.java | 23 ++++++++++++++++++++++ .../persistence/metadata/TopiaMetadataModel.java | 22 +++++++++++++++++++++ .../metadata/TopiaMetadataModelVisitor.java | 23 ++++++++++++++++++++++ .../support/TopiaMetadataModelSupport.java | 23 ++++++++++++++++++++++ .../batch/TopiaSqlBatchServiceConfiguration.java | 23 ++++++++++++++++++++++ .../templates/TopiaMetadataModelGenerator.java | 23 ++++++++++++++++++++++ 7 files changed, 160 insertions(+) diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/support/TopiaMetadataModelSupportImpl.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/support/TopiaMetadataModelSupportImpl.java index 3b0ccca..ec34d54 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/support/TopiaMetadataModelSupportImpl.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/support/TopiaMetadataModelSupportImpl.java @@ -1,5 +1,27 @@ package org.nuiton.topia.persistence.internal.support; +/* + * #%L + * ToPIA :: Persistence + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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.topia.persistence.TopiaException; import org.nuiton.topia.persistence.TopiaPersistenceContext; import org.nuiton.topia.persistence.metadata.TopiaMetadataModel; @@ -11,6 +33,7 @@ import java.io.IOException; * Created on 04/01/16. * * @author Tony Chemit - chemit@codelutin.com + * @since 3.0.1 */ public class TopiaMetadataModelSupportImpl implements TopiaMetadataModelSupport { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataEntity.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataEntity.java index c409592..789063a 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataEntity.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataEntity.java @@ -1,5 +1,27 @@ package org.nuiton.topia.persistence.metadata; +/* + * #%L + * ToPIA :: Persistence + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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.MoreObjects; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -12,6 +34,7 @@ import java.util.Objects; * Created on 03/01/16. * * @author Tony Chemit - chemit@codelutin.com + * @since 3.0.1 */ public class TopiaMetadataEntity { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModel.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModel.java index 70cc470..19812fe 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModel.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModel.java @@ -1,5 +1,27 @@ package org.nuiton.topia.persistence.metadata; +/* + * #%L + * ToPIA :: Persistence + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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.Optional; import com.google.common.base.Preconditions; import com.google.gson.Gson; diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModelVisitor.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModelVisitor.java index b3c55c5..2aefd8f 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModelVisitor.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/metadata/TopiaMetadataModelVisitor.java @@ -1,5 +1,27 @@ package org.nuiton.topia.persistence.metadata; +/* + * #%L + * ToPIA :: Persistence + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -10,6 +32,7 @@ import java.util.Set; * Created on 04/01/16. * * @author Tony Chemit - chemit@codelutin.com + * @since 3.0.1 */ public interface TopiaMetadataModelVisitor { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/support/TopiaMetadataModelSupport.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/support/TopiaMetadataModelSupport.java index bc148ed..b6cb9a7 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/support/TopiaMetadataModelSupport.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/support/TopiaMetadataModelSupport.java @@ -1,11 +1,34 @@ package org.nuiton.topia.persistence.support; +/* + * #%L + * ToPIA :: Persistence + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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.topia.persistence.metadata.TopiaMetadataModel; /** * Created on 02/01/16. * * @author Tony Chemit - chemit@codelutin.com + * @since 3.0.1 */ public interface TopiaMetadataModelSupport { diff --git a/topia-service-sql-batch/src/main/java/org/nuiton/topia/service/sql/batch/TopiaSqlBatchServiceConfiguration.java b/topia-service-sql-batch/src/main/java/org/nuiton/topia/service/sql/batch/TopiaSqlBatchServiceConfiguration.java index 1a1f7fa..b889c8b 100644 --- a/topia-service-sql-batch/src/main/java/org/nuiton/topia/service/sql/batch/TopiaSqlBatchServiceConfiguration.java +++ b/topia-service-sql-batch/src/main/java/org/nuiton/topia/service/sql/batch/TopiaSqlBatchServiceConfiguration.java @@ -1,9 +1,32 @@ package org.nuiton.topia.service.sql.batch; +/* + * #%L + * ToPIA :: Service Sql batch + * %% + * Copyright (C) 2004 - 2016 CodeLutin, 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 on 05/01/16. * * @author Tony Chemit - chemit@codelutin.com + * @since 3.0.1 */ public class TopiaSqlBatchServiceConfiguration { diff --git a/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaMetadataModelGenerator.java b/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaMetadataModelGenerator.java index 6e6e27b..c9a40a0 100644 --- a/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaMetadataModelGenerator.java +++ b/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaMetadataModelGenerator.java @@ -1,5 +1,27 @@ package org.nuiton.topia.templates; +/* + * #%L + * ToPIA :: Templates + * %% + * Copyright (C) 2004 - 2016 CodeLutin + * %% + * 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.Optional; import com.google.gson.Gson; import com.google.gson.GsonBuilder; @@ -27,6 +49,7 @@ import java.util.List; * * @author Tony Chemit - chemit@codelutin.com * @plexus.component role="org.nuiton.eugene.Template" role-hint="org.nuiton.topia.templates.TopiaMetadataModelGenerator" + * @since 3.0.1 */ public class TopiaMetadataModelGenerator extends ObjectModelGenerator { -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.