From 0f7ec8a6dd28a7d5934c6b079b895ef516fbc494 Mon Sep 17 00:00:00 2001 From: Michael Schnell Date: Thu, 26 Dec 2019 08:16:58 +0100 Subject: [PATCH] Added copyright header --- .../example/quarkus/query/api/PersonResource.java | 12 ++++++++++++ .../query/app/QryCheckForViewUpdatesEvent.java | 12 ++++++++++++ .../quarkus/query/app/QryEventStoreFactory.java | 12 ++++++++++++ .../example/quarkus/query/app/QryJsonbFactory.java | 12 ++++++++++++ .../example/quarkus/query/app/QryScheduler.java | 12 ++++++++++++ .../query/app/QrySerDeserializerRegistryFactory.java | 12 ++++++++++++ .../example/quarkus/query/domain/QryPerson.java | 12 ++++++++++++ .../query/handler/PersonCreatedEventHandler.java | 12 ++++++++++++ .../quarkus/query/handler/QryEventChunkHandler.java | 12 ++++++++++++ .../query/handler/QryEventDispatcherFactory.java | 12 ++++++++++++ .../query/handler/QryPersonProjectionPosition.java | 12 ++++++++++++ .../QryPersonProjectionPositionRepository.java | 12 ++++++++++++ .../example/quarkus/query/handler/QryProjector.java | 12 ++++++++++++ 13 files changed, 156 insertions(+) diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/api/PersonResource.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/api/PersonResource.java index dd47314..31694ef 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/api/PersonResource.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/api/PersonResource.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.api; import java.util.List; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryCheckForViewUpdatesEvent.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryCheckForViewUpdatesEvent.java index a2d0ed9..ddf6ca4 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryCheckForViewUpdatesEvent.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryCheckForViewUpdatesEvent.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.app; /** diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryEventStoreFactory.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryEventStoreFactory.java index b16919f..1f7e022 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryEventStoreFactory.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryEventStoreFactory.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.app; import java.util.concurrent.Executors; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryJsonbFactory.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryJsonbFactory.java index 657995a..d305ced 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryJsonbFactory.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryJsonbFactory.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.app; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryScheduler.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryScheduler.java index a003ef4..257d1a8 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryScheduler.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QryScheduler.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.app; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QrySerDeserializerRegistryFactory.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QrySerDeserializerRegistryFactory.java index 8b737cc..aa507cf 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QrySerDeserializerRegistryFactory.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/app/QrySerDeserializerRegistryFactory.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.app; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/domain/QryPerson.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/domain/QryPerson.java index 75266e5..25bb0f3 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/domain/QryPerson.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/domain/QryPerson.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.domain; import javax.persistence.Column; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/PersonCreatedEventHandler.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/PersonCreatedEventHandler.java index c8be79d..9d81608 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/PersonCreatedEventHandler.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/PersonCreatedEventHandler.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventChunkHandler.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventChunkHandler.java index 60cff6e..d461579 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventChunkHandler.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventChunkHandler.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventDispatcherFactory.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventDispatcherFactory.java index c652e90..75c117d 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventDispatcherFactory.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryEventDispatcherFactory.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPosition.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPosition.java index 04363cb..56b176c 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPosition.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPosition.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import javax.persistence.Column; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPositionRepository.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPositionRepository.java index 636d957..4b9ef89 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPositionRepository.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryPersonProjectionPositionRepository.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import javax.enterprise.context.ApplicationScoped; diff --git a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryProjector.java b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryProjector.java index ca67c9d..4f4c29e 100644 --- a/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryProjector.java +++ b/quarkus/query/src/main/java/org/fuin/cqrs4j/example/quarkus/query/handler/QryProjector.java @@ -1,3 +1,15 @@ +/** + * Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/ + * + * This library 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 library 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License along with this library. If not, see + * http://www.gnu.org/licenses/. + */ package org.fuin.cqrs4j.example.quarkus.query.handler; import static org.fuin.cqrs4j.Cqrs4JUtils.tryLocked;