branch release/3.3.0 updated (7c2a953e -> 4f8e6b44)
This is an automated email from the git hooks/post-receive script. New change to branch release/3.3.0 in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from 7c2a953e Update .gitlab-ci.yml new 4f8e6b44 Update 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 4f8e6b440df967790138729d9f6d07eb3a8e514a Author: jcouteau <couteau@codelutin.com> Date: Thu Mar 26 06:46:35 2020 +0100 Update file headers Summary of changes: .../src/main/java/javax/annotation/Generated.java | 23 +++++++++++++++++++++- .../persistence/entity/QuestionTopiaDao.java | 21 ++++++++++++++++++++ .../org/chorem/pollen/rest/api/v1/ReportApi.java | 21 ++++++++++++++++++++ .../chorem/pollen/services/bean/QuestionBean.java | 21 ++++++++++++++++++++ .../pollen/services/service/QuestionService.java | 21 ++++++++++++++++++++ 5 files changed, 106 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch release/3.3.0 in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 4f8e6b440df967790138729d9f6d07eb3a8e514a Author: jcouteau <couteau@codelutin.com> Date: Thu Mar 26 06:46:35 2020 +0100 Update file headers --- .../src/main/java/javax/annotation/Generated.java | 23 +++++++++++++++++++++- .../persistence/entity/QuestionTopiaDao.java | 21 ++++++++++++++++++++ .../org/chorem/pollen/rest/api/v1/ReportApi.java | 21 ++++++++++++++++++++ .../chorem/pollen/services/bean/QuestionBean.java | 21 ++++++++++++++++++++ .../pollen/services/service/QuestionService.java | 21 ++++++++++++++++++++ 5 files changed, 106 insertions(+), 1 deletion(-) diff --git a/pollen-persistence/src/main/java/javax/annotation/Generated.java b/pollen-persistence/src/main/java/javax/annotation/Generated.java index e3e1b407..d81f5ade 100644 --- a/pollen-persistence/src/main/java/javax/annotation/Generated.java +++ b/pollen-persistence/src/main/java/javax/annotation/Generated.java @@ -28,6 +28,27 @@ /** XXX Remove this when we stop supporting java 8, hack for java 11 compilation (should use javax.annotation.processing.Generated) **/ package javax.annotation; +/*- + * #%L + * Pollen :: Persistence + * %% + * Copyright (C) 2009 - 2020 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.lang.annotation.*; import static java.lang.annotation.ElementType.*; import static java.lang.annotation.RetentionPolicy.*; @@ -82,4 +103,4 @@ public @interface Generated { * @return Comments that the code generated included */ String comments() default ""; -} \ No newline at end of file +} diff --git a/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/QuestionTopiaDao.java b/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/QuestionTopiaDao.java index 2d4c2e1a..9df12cdf 100644 --- a/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/QuestionTopiaDao.java +++ b/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/QuestionTopiaDao.java @@ -1,5 +1,26 @@ package org.chorem.pollen.persistence.entity; +/*- + * #%L + * Pollen :: Persistence + * %% + * Copyright (C) 2009 - 2020 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.util.List; public class QuestionTopiaDao extends AbstractQuestionTopiaDao<Question> { diff --git a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/ReportApi.java b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/ReportApi.java index e8bbd701..40f841a3 100644 --- a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/ReportApi.java +++ b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/ReportApi.java @@ -1,5 +1,26 @@ package org.chorem.pollen.rest.api.v1; +/*- + * #%L + * Pollen :: Rest Api + * %% + * Copyright (C) 2009 - 2020 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Choice; import org.chorem.pollen.persistence.entity.Poll; import org.chorem.pollen.persistence.entity.Question; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/QuestionBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/QuestionBean.java index 22823481..cb78b565 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/QuestionBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/QuestionBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2020 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Question; import org.chorem.pollen.votecounting.model.VoteCountingConfig; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/QuestionService.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/QuestionService.java index 72ccc936..1bfabe84 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/QuestionService.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/QuestionService.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2020 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import com.google.common.collect.Sets; import org.apache.commons.collections4.CollectionUtils; import org.chorem.pollen.persistence.entity.Choice; -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm