diff --git a/integration-tests/run-integration-tests.sh b/integration-tests/run-integration-tests.sh index 65ffb494..c9d2a01d 100644 --- a/integration-tests/run-integration-tests.sh +++ b/integration-tests/run-integration-tests.sh @@ -1,4 +1,17 @@ #!/bin/sh +# +# JPAstreamer - Express JPA queries with Java Streams +# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +# +# License: GNU Lesser General Public License (LGPL), version 2.1 or later. +# +# 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. +# +# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +# + # Run sakila database docker run --platform linux/amd64 -d --publish 3306:3306 --name mysqld restsql/mysql-sakila diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/InheritanceTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/InheritanceTest.java index eb2ed928..5071285f 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/InheritanceTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/InheritanceTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance; import com.speedment.jpastreamer.application.JPAStreamer; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/docker-compose.yml b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/docker-compose.yml index 05ae15e4..5473e2b9 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/docker-compose.yml +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/docker-compose.yml @@ -1,3 +1,16 @@ +# +# JPAstreamer - Express JPA queries with Java Streams +# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +# +# License: GNU Lesser General Public License (LGPL), version 2.1 or later. +# +# 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. +# +# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +# + version: '3.8' services: diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/BlogPost.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/BlogPost.java index 3b7a05e0..100b9b4d 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/BlogPost.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/BlogPost.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Book.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Book.java index c70850b1..3f19c746 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Book.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Book.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Publication.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Publication.java index f8510655..1bbd627b 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Publication.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/model/Publication.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/run-test.sh b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/run-test.sh index 51baf5be..ab622526 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/run-test.sh +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/run-test.sh @@ -1,4 +1,17 @@ #!/bin/sh +# +# JPAstreamer - Express JPA queries with Java Streams +# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +# +# License: GNU Lesser General Public License (LGPL), version 2.1 or later. +# +# 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. +# +# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +# + docker-compose rm -v -f -s test-db && docker-compose up -d mysql -h 127.0.0.1 -P 3305 -u speedment -ppassword publications diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/data.sql b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/data.sql index b7e0c7a5..ef169501 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/data.sql +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/data.sql @@ -1,3 +1,16 @@ +-- +-- JPAstreamer - Express JPA queries with Java Streams +-- Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +-- +-- License: GNU Lesser General Public License (LGPL), version 2.1 or later. +-- +-- 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. +-- +-- See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +-- + INSERT INTO books (id, publishing_date, title, version, pages) VALUES (1, '2008-7-04', 'Book 1', 2, 213), (2, '2009-7-04', 'Book 2', 2, 234), diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/schema.sql b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/schema.sql index 90c3e24e..23801a3a 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/schema.sql +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance/scripts/schema.sql @@ -1,3 +1,16 @@ +-- +-- JPAstreamer - Express JPA queries with Java Streams +-- Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +-- +-- License: GNU Lesser General Public License (LGPL), version 2.1 or later. +-- +-- 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. +-- +-- See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +-- + CREATE TABLE books ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, publishing_date DATE NOT NULL, diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/InheritanceTest2.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/InheritanceTest2.java index b9006629..31852707 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/InheritanceTest2.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/InheritanceTest2.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance2; import com.speedment.jpastreamer.application.JPAStreamer; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/docker-compose.yml b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/docker-compose.yml index 719761c9..76f094e4 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/docker-compose.yml +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/docker-compose.yml @@ -1,3 +1,16 @@ +# +# JPAstreamer - Express JPA queries with Java Streams +# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +# +# License: GNU Lesser General Public License (LGPL), version 2.1 or later. +# +# 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. +# +# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +# + version: '3.8' services: diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Author.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Author.java index 98c9a26a..f37250da 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Author.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Author.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance2.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/BlogPost2.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/BlogPost2.java index b381949f..09005f97 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/BlogPost2.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/BlogPost2.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance2.model; import jakarta.persistence.Column; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Book2.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Book2.java index 399c9bdf..59035ca4 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Book2.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Book2.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance2.model; import jakarta.persistence.Column; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Publication2.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Publication2.java index b731e8a6..1405915f 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Publication2.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/model/Publication2.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.inheritance2.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/run-test.sh b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/run-test.sh index 4132d822..3d011f4a 100755 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/run-test.sh +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/run-test.sh @@ -1,4 +1,17 @@ #!/bin/sh +# +# JPAstreamer - Express JPA queries with Java Streams +# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +# +# License: GNU Lesser General Public License (LGPL), version 2.1 or later. +# +# 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. +# +# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +# + docker-compose rm -v -f -s test-db-2 && docker-compose up -d mysql -h 127.0.0.1 -P 3304 -u speedment -ppassword testdb2 diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/data.sql b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/data.sql index 130ddda3..9bd24c88 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/data.sql +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/data.sql @@ -1,3 +1,16 @@ +-- +-- JPAstreamer - Express JPA queries with Java Streams +-- Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +-- +-- License: GNU Lesser General Public License (LGPL), version 2.1 or later. +-- +-- 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. +-- +-- See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +-- + INSERT INTO publication(id, publication_type, publishing_date, title, version, pages, url) VALUES (1, 'Book', '2008-7-04', 'Book 1', 2, 213, null), (2, 'Book', '2009-7-04', 'Book 2', 2, 234, null), diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/schema.sql b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/schema.sql index a63ae362..51a37af0 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/schema.sql +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/inheritance2/scripts/schema.sql @@ -1,3 +1,16 @@ +-- +-- JPAstreamer - Express JPA queries with Java Streams +-- Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. +-- +-- License: GNU Lesser General Public License (LGPL), version 2.1 or later. +-- +-- 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. +-- +-- See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE +-- + CREATE TABLE publication ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, publication_type VARCHAR(31), diff --git a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/BlogPost.java b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/BlogPost.java index 3836fdf2..3b32b994 100644 --- a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/BlogPost.java +++ b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/BlogPost.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.fieldgenerator.test; import jakarta.persistence.Column; diff --git a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Book.java b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Book.java index 044aa1d3..872d66b3 100644 --- a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Book.java +++ b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Book.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.fieldgenerator.test; import jakarta.persistence.Column; diff --git a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Publication.java b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Publication.java index 36e74a23..4747e5c3 100644 --- a/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Publication.java +++ b/jpastreamer.fieldgenerator/jpastreamer.fieldgenerator.test/src/main/java/com/speedment/jpastreamer/fieldgenerator/test/Publication.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * 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. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.fieldgenerator.test; import jakarta.persistence.*;