From 3a9fb949a15cb71a93412ec241e16157f60c4013 Mon Sep 17 00:00:00 2001 From: Scott Esbrandt Date: Fri, 15 Dec 2023 15:23:33 -0500 Subject: [PATCH] working version --- .github/workflows/example-gradle.yml | 70 + .../example-gradle/hibernate-sample/LICENSE | 201 + .../example-gradle/hibernate-sample/README.md | 29 + .../hibernate-sample/build.gradle.kts | 201 + .../com/mfvanek/hibernate/DemoFindApp.class | Bin 0 -> 2690 bytes .../hibernate/DemoInsertApp$DataSaver.class | Bin 0 -> 1364 bytes .../com/mfvanek/hibernate/DemoInsertApp.class | Bin 0 -> 6799 bytes .../hibernate/DemoLiquibaseRunnerApp.class | Bin 0 -> 4296 bytes .../com/mfvanek/hibernate/consts/Const.class | Bin 0 -> 885 bytes .../hibernate/entities/TestEvent.class | Bin 0 -> 4413 bytes .../hibernate/entities/TestEventInfo.class | Bin 0 -> 4706 bytes .../hibernate/enums/TestEventType.class | Bin 0 -> 1259 bytes .../hibernate/utils/PropertiesUtil.class | Bin 0 -> 1783 bytes .../utils/RowsCountValidator$RowsCount.class | Bin 0 -> 3131 bytes .../hibernate/utils/RowsCountValidator.class | Bin 0 -> 2771 bytes .../hibernate/utils/ServiceRegistryUtil.class | Bin 0 -> 1027 bytes .../hibernate/utils/SessionFactoryUtil.class | Bin 0 -> 4182 bytes .../hibernate/utils/PropertiesUtilTest.class | Bin 0 -> 2290 bytes .../build/docs/javadoc/allclasses-index.html | 87 + .../build/docs/javadoc/allpackages-index.html | 71 + .../com/mfvanek/hibernate/DemoFindApp.html | 171 + .../com/mfvanek/hibernate/DemoInsertApp.html | 171 + .../hibernate/DemoLiquibaseRunnerApp.html | 171 + .../com/mfvanek/hibernate/consts/Const.html | 305 + .../hibernate/consts/package-summary.html | 107 + .../hibernate/consts/package-tree.html | 70 + .../mfvanek/hibernate/entities/TestEvent.html | 258 + .../hibernate/entities/TestEventInfo.html | 275 + .../hibernate/entities/package-summary.html | 109 + .../hibernate/entities/package-tree.html | 71 + .../hibernate/enums/TestEventType.html | 238 + .../hibernate/enums/package-summary.html | 107 + .../mfvanek/hibernate/enums/package-tree.html | 74 + .../mfvanek/hibernate/package-summary.html | 111 + .../com/mfvanek/hibernate/package-tree.html | 72 + .../hibernate/utils/PropertiesUtil.html | 144 + .../hibernate/utils/RowsCountValidator.html | 173 + .../hibernate/utils/ServiceRegistryUtil.html | 144 + .../hibernate/utils/SessionFactoryUtil.html | 153 + .../hibernate/utils/package-summary.html | 113 + .../mfvanek/hibernate/utils/package-tree.html | 73 + .../build/docs/javadoc/constant-values.html | 99 + .../build/docs/javadoc/copy.svg | 33 + .../build/docs/javadoc/element-list | 5 + .../build/docs/javadoc/help-doc.html | 187 + .../build/docs/javadoc/index-all.html | 240 + .../build/docs/javadoc/index.html | 73 + .../javadoc/legal/ADDITIONAL_LICENSE_INFO | 37 + .../docs/javadoc/legal/ASSEMBLY_EXCEPTION | 27 + .../build/docs/javadoc/legal/LICENSE | 347 + .../build/docs/javadoc/legal/jquery.md | 72 + .../build/docs/javadoc/legal/jqueryUI.md | 49 + .../build/docs/javadoc/link.svg | 31 + .../build/docs/javadoc/member-search-index.js | 1 + .../build/docs/javadoc/module-search-index.js | 1 + .../build/docs/javadoc/overview-summary.html | 25 + .../build/docs/javadoc/overview-tree.html | 97 + .../docs/javadoc/package-search-index.js | 1 + .../build/docs/javadoc/resources/glass.png | Bin 0 -> 499 bytes .../build/docs/javadoc/resources/x.png | Bin 0 -> 394 bytes .../javadoc/script-dir/jquery-3.6.1.min.js | 2 + .../docs/javadoc/script-dir/jquery-ui.min.css | 6 + .../docs/javadoc/script-dir/jquery-ui.min.js | 6 + .../build/docs/javadoc/script.js | 253 + .../build/docs/javadoc/search-page.js | 284 + .../build/docs/javadoc/search.html | 71 + .../build/docs/javadoc/search.js | 458 + .../build/docs/javadoc/stylesheet.css | 1272 +++ .../build/docs/javadoc/tag-search-index.js | 1 + .../build/docs/javadoc/type-search-index.js | 1 + .../com/mfvanek/hibernate/DemoFindApp.java | 41 + .../com/mfvanek/hibernate/DemoInsertApp.java | 113 + .../hibernate/DemoLiquibaseRunnerApp.java | 63 + .../com/mfvanek/hibernate/consts/Const.java | 18 + .../mfvanek/hibernate/entities/TestEvent.java | 80 + .../hibernate/entities/TestEventInfo.java | 109 + .../hibernate/enums/TestEventType.java | 8 + .../hibernate/utils/PropertiesUtil.java | 26 + .../hibernate/utils/RowsCountValidator.java | 77 + .../hibernate/utils/ServiceRegistryUtil.java | 15 + .../hibernate/utils/SessionFactoryUtil.java | 51 + .../hibernate-sample/build/jacoco/test.exec | Bin 0 -> 53518 bytes .../libs/hibernate-sample-1.5.0-javadoc.jar | Bin 0 -> 136941 bytes .../libs/hibernate-sample-1.5.0-sources.jar | Bin 0 -> 13369 bytes .../build/libs/hibernate-sample-1.5.0.jar | Bin 0 -> 25632 bytes .../effective-config/lombok-main.config | 2 + .../effective-config/lombok-test.config | 2 + .../hibernate-sample/build/reports/bom.json | 8602 +++++++++++++++++ .../hibernate-sample/build/reports/bom.xml | 3575 +++++++ .../build/reports/checkstyle/main.html | 73 + .../build/reports/checkstyle/main.xml | 25 + .../build/reports/checkstyle/test.html | 73 + .../build/reports/checkstyle/test.xml | 5 + .../com.mfvanek.hibernate.consts/Const.html | 1 + .../Const.java.html | 19 + .../com.mfvanek.hibernate.consts/index.html | 1 + .../index.source.html | 1 + .../TestEvent.html | 1 + .../TestEvent.java.html | 65 + .../TestEventInfo.html | 1 + .../TestEventInfo.java.html | 108 + .../com.mfvanek.hibernate.entities/index.html | 1 + .../index.source.html | 1 + .../TestEventType.html | 1 + .../TestEventType.java.html | 9 + .../com.mfvanek.hibernate.enums/index.html | 1 + .../index.source.html | 1 + .../PropertiesUtil.html | 1 + .../PropertiesUtil.java.html | 25 + .../RowsCountValidator$RowsCount.html | 1 + .../RowsCountValidator.html | 1 + .../RowsCountValidator.java.html | 81 + .../ServiceRegistryUtil.html | 1 + .../ServiceRegistryUtil.java.html | 18 + .../SessionFactoryUtil.html | 1 + .../SessionFactoryUtil.java.html | 59 + .../com.mfvanek.hibernate.utils/index.html | 1 + .../index.source.html | 1 + .../com.mfvanek.hibernate/DemoFindApp.html | 1 + .../DemoFindApp.java.html | 43 + .../DemoInsertApp$DataSaver.html | 1 + .../com.mfvanek.hibernate/DemoInsertApp.html | 1 + .../DemoInsertApp.java.html | 118 + .../DemoLiquibaseRunnerApp.html | 1 + .../DemoLiquibaseRunnerApp.java.html | 58 + .../html/com.mfvanek.hibernate/index.html | 1 + .../com.mfvanek.hibernate/index.source.html | 1 + .../build/reports/jacoco/test/html/index.html | 1 + .../test/html/jacoco-resources/branchfc.gif | Bin 0 -> 91 bytes .../test/html/jacoco-resources/branchnc.gif | Bin 0 -> 91 bytes .../test/html/jacoco-resources/branchpc.gif | Bin 0 -> 91 bytes .../test/html/jacoco-resources/bundle.gif | Bin 0 -> 709 bytes .../test/html/jacoco-resources/class.gif | Bin 0 -> 586 bytes .../test/html/jacoco-resources/down.gif | Bin 0 -> 67 bytes .../test/html/jacoco-resources/greenbar.gif | Bin 0 -> 91 bytes .../test/html/jacoco-resources/group.gif | Bin 0 -> 351 bytes .../test/html/jacoco-resources/method.gif | Bin 0 -> 193 bytes .../test/html/jacoco-resources/package.gif | Bin 0 -> 227 bytes .../test/html/jacoco-resources/prettify.css | 13 + .../test/html/jacoco-resources/prettify.js | 1510 +++ .../test/html/jacoco-resources/redbar.gif | Bin 0 -> 91 bytes .../test/html/jacoco-resources/report.css | 243 + .../test/html/jacoco-resources/report.gif | Bin 0 -> 363 bytes .../test/html/jacoco-resources/session.gif | Bin 0 -> 213 bytes .../test/html/jacoco-resources/sort.gif | Bin 0 -> 58 bytes .../jacoco/test/html/jacoco-resources/sort.js | 148 + .../test/html/jacoco-resources/source.gif | Bin 0 -> 354 bytes .../jacoco/test/html/jacoco-resources/up.gif | Bin 0 -> 67 bytes .../jacoco/test/html/jacoco-sessions.html | 1 + .../reports/jacoco/test/jacocoTestReport.xml | 1 + .../build/reports/pmd/main.html | 4 + .../build/reports/pmd/main.xml | 3 + .../build/reports/pmd/test.html | 4 + .../build/reports/pmd/test.xml | 3 + .../build/reports/spotbugs/main.html | 161 + .../build/reports/spotbugs/main.xml | 62 + .../build/reports/spotbugs/test.html | 149 + .../build/reports/spotbugs/test.xml | 55 + ...ek.hibernate.utils.PropertiesUtilTest.html | 128 + .../reports/tests/test/css/base-style.css | 179 + .../build/reports/tests/test/css/style.css | 84 + .../build/reports/tests/test/index.html | 133 + .../build/reports/tests/test/js/report.js | 194 + .../packages/com.mfvanek.hibernate.utils.html | 103 + .../build/resources/main/config.properties | 8 + .../1.0.0/1.0.0-1-creating-tables.xml | 75 + .../1.0.0/1.0.0-2-changing-primary-keys.xml | 28 + .../main/db/changelog/liquibase-changelog.xml | 13 + .../build/resources/main/hibernate.cfg.xml | 35 + .../build/resources/main/logback.xml | 16 + .../build/spotbugs/auxclasspath/spotbugsMain | 27 + .../build/spotbugs/auxclasspath/spotbugsTest | 35 + .../build/spotbugsMain-analyse-class-file.txt | 13 + .../build/spotbugsTest-analyse-class-file.txt | 1 + ...nek.hibernate.utils.PropertiesUtilTest.xml | 30 + .../build/test-results/test/binary/output.bin | 23 + .../test-results/test/binary/output.bin.idx | Bin 0 -> 36 bytes .../test-results/test/binary/results.bin | Bin 0 -> 125 bytes .../build/tmp/.cache/expanded/expanded.lock | Bin 0 -> 17 bytes .../META-INF/MANIFEST.MF | 21 + .../org.jacoco.agent/pom.properties | 3 + .../maven/org.jacoco/org.jacoco.agent/pom.xml | 106 + .../about.html | 72 + .../jacocoagent.jar | Bin 0 -> 300661 bytes .../org/jacoco/agent/AgentJar.class | Bin 0 -> 2322 bytes .../org/jacoco/agent/package-info.class | Bin 0 -> 122 bytes .../compileJava/previous-compilation-data.bin | Bin 0 -> 102882 bytes .../previous-compilation-data.bin | Bin 0 -> 24390 bytes .../build/tmp/delombok/delombok.options | 3 + .../success.txt | 0 .../build/tmp/jar/MANIFEST.MF | 2 + .../build/tmp/javadoc/javadoc.options | 18 + .../build/tmp/javadocJar/MANIFEST.MF | 2 + .../build/tmp/pmdMain/incremental.cache | Bin 0 -> 1969 bytes .../build/tmp/pmdTest/incremental.cache | Bin 0 -> 213 bytes .../build/tmp/sourcesJar/MANIFEST.MF | 2 + .../config/checkstyle/checkstyle.xml | 308 + .../hibernate-sample/config/pmd/pmd.xml | 93 + .../config/spotbugs/exclude.xml | 25 + .../hibernate-sample/docker-compose.yml | 18 + .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43462 bytes .../gradle/wrapper/gradle-wrapper.properties | 7 + .../example-gradle/hibernate-sample/gradlew | 249 + .../hibernate-sample/gradlew.bat | 92 + .../example-gradle/hibernate-sample/init.sql | 1 + .../hibernate-sample/lombok.config | 3 + .../hibernate-sample/settings.gradle.kts | 12 + .../com/mfvanek/hibernate/DemoFindApp.java | 42 + .../com/mfvanek/hibernate/DemoInsertApp.java | 117 + .../hibernate/DemoLiquibaseRunnerApp.java | 57 + .../com/mfvanek/hibernate/consts/Const.java | 18 + .../mfvanek/hibernate/entities/TestEvent.java | 64 + .../hibernate/entities/TestEventInfo.java | 107 + .../hibernate/enums/TestEventType.java | 8 + .../hibernate/utils/PropertiesUtil.java | 24 + .../hibernate/utils/RowsCountValidator.java | 80 + .../hibernate/utils/ServiceRegistryUtil.java | 17 + .../hibernate/utils/SessionFactoryUtil.java | 58 + .../src/main/resources/config.properties | 8 + .../1.0.0/1.0.0-1-creating-tables.xml | 75 + .../1.0.0/1.0.0-2-changing-primary-keys.xml | 28 + .../db/changelog/liquibase-changelog.xml | 13 + .../src/main/resources/hibernate.cfg.xml | 35 + .../src/main/resources/logback.xml | 16 + .../hibernate/utils/PropertiesUtilTest.java | 21 + README.md | 61 +- poetry.lock | 553 ++ pyproject.toml | 21 + sbom_to_snyk_depgraph/__init__.py | 0 sbom_to_snyk_depgraph/main.py | 208 + sbom_to_snyk_depgraph/snyk_depgraph.py | 231 + 231 files changed, 27413 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/example-gradle.yml create mode 100644 .github/workflows/example-gradle/hibernate-sample/LICENSE create mode 100644 .github/workflows/example-gradle/hibernate-sample/README.md create mode 100644 .github/workflows/example-gradle/hibernate-sample/build.gradle.kts create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoFindApp.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoInsertApp$DataSaver.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoInsertApp.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/consts/Const.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/entities/TestEvent.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/entities/TestEventInfo.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/enums/TestEventType.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/PropertiesUtil.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/RowsCountValidator$RowsCount.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/RowsCountValidator.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/ServiceRegistryUtil.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/SessionFactoryUtil.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/classes/java/test/com/mfvanek/hibernate/utils/PropertiesUtilTest.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allclasses-index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allpackages-index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoFindApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoInsertApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/Const.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEvent.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEventInfo.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/TestEventType.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/PropertiesUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/RowsCountValidator.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/ServiceRegistryUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/SessionFactoryUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/constant-values.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/copy.svg create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/element-list create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/help-doc.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index-all.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ASSEMBLY_EXCEPTION create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/LICENSE create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jquery.md create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jqueryUI.md create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/link.svg create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/member-search-index.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/module-search-index.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-summary.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-tree.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/package-search-index.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/resources/glass.png create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/resources/x.png create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-3.6.1.min.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-ui.min.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-ui.min.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/search-page.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/search.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/search.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/stylesheet.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/tag-search-index.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/type-search-index.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/DemoFindApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/DemoInsertApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/consts/Const.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/entities/TestEvent.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/entities/TestEventInfo.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/enums/TestEventType.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/utils/PropertiesUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/utils/RowsCountValidator.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/utils/ServiceRegistryUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/generated/sources/delombok/java/main/com/mfvanek/hibernate/utils/SessionFactoryUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/jacoco/test.exec create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/libs/hibernate-sample-1.5.0-javadoc.jar create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/libs/hibernate-sample-1.5.0-sources.jar create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/libs/hibernate-sample-1.5.0.jar create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/lombok/effective-config/lombok-main.config create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/lombok/effective-config/lombok-test.config create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/bom.json create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/bom.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/checkstyle/main.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/checkstyle/main.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/checkstyle/test.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/checkstyle/test.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.consts/Const.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.consts/Const.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.consts/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.consts/index.source.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/TestEvent.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/TestEvent.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/TestEventInfo.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/TestEventInfo.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.entities/index.source.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.enums/TestEventType.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.enums/TestEventType.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.enums/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.enums/index.source.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/PropertiesUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/PropertiesUtil.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/RowsCountValidator$RowsCount.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/RowsCountValidator.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/RowsCountValidator.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/ServiceRegistryUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/ServiceRegistryUtil.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/SessionFactoryUtil.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/SessionFactoryUtil.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate.utils/index.source.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoFindApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoFindApp.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoInsertApp$DataSaver.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoInsertApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoInsertApp.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoLiquibaseRunnerApp.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/DemoLiquibaseRunnerApp.java.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/com.mfvanek.hibernate/index.source.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/branchfc.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/branchnc.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/branchpc.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/bundle.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/class.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/down.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/greenbar.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/group.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/method.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/package.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/prettify.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/prettify.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/redbar.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/report.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/report.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/session.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/sort.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/sort.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/source.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-resources/up.gif create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/html/jacoco-sessions.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/jacoco/test/jacocoTestReport.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/pmd/main.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/pmd/main.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/pmd/test.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/pmd/test.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/spotbugs/main.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/spotbugs/main.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/spotbugs/test.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/spotbugs/test.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/classes/com.mfvanek.hibernate.utils.PropertiesUtilTest.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/css/base-style.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/css/style.css create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/index.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/js/report.js create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/reports/tests/test/packages/com.mfvanek.hibernate.utils.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/config.properties create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/db/changelog/1.0.0/1.0.0-1-creating-tables.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/db/changelog/1.0.0/1.0.0-2-changing-primary-keys.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/db/changelog/liquibase-changelog.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/hibernate.cfg.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/resources/main/logback.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/spotbugs/auxclasspath/spotbugsMain create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/spotbugs/auxclasspath/spotbugsTest create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/spotbugsMain-analyse-class-file.txt create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/spotbugsTest-analyse-class-file.txt create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/test-results/test/TEST-com.mfvanek.hibernate.utils.PropertiesUtilTest.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/test-results/test/binary/output.bin create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/test-results/test/binary/output.bin.idx create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/test-results/test/binary/results.bin create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/expanded.lock create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/META-INF/MANIFEST.MF create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/META-INF/maven/org.jacoco/org.jacoco.agent/pom.properties create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/META-INF/maven/org.jacoco/org.jacoco.agent/pom.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/about.html create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/jacocoagent.jar create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/org/jacoco/agent/AgentJar.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/.cache/expanded/zip_cde35f471dab581134460fc9a50e2c59/org/jacoco/agent/package-info.class create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/compileJava/previous-compilation-data.bin create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/compileTestJava/previous-compilation-data.bin create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/delombok/delombok.options create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/jacocoTestCoverageVerification/success.txt create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/jar/MANIFEST.MF create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/javadoc/javadoc.options create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/javadocJar/MANIFEST.MF create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/pmdMain/incremental.cache create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/pmdTest/incremental.cache create mode 100644 .github/workflows/example-gradle/hibernate-sample/build/tmp/sourcesJar/MANIFEST.MF create mode 100644 .github/workflows/example-gradle/hibernate-sample/config/checkstyle/checkstyle.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/config/pmd/pmd.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/config/spotbugs/exclude.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/docker-compose.yml create mode 100644 .github/workflows/example-gradle/hibernate-sample/gradle/wrapper/gradle-wrapper.jar create mode 100644 .github/workflows/example-gradle/hibernate-sample/gradle/wrapper/gradle-wrapper.properties create mode 100755 .github/workflows/example-gradle/hibernate-sample/gradlew create mode 100644 .github/workflows/example-gradle/hibernate-sample/gradlew.bat create mode 100644 .github/workflows/example-gradle/hibernate-sample/init.sql create mode 100644 .github/workflows/example-gradle/hibernate-sample/lombok.config create mode 100644 .github/workflows/example-gradle/hibernate-sample/settings.gradle.kts create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/DemoFindApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/DemoInsertApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/consts/Const.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/entities/TestEvent.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/entities/TestEventInfo.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/enums/TestEventType.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/utils/PropertiesUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/utils/RowsCountValidator.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/utils/ServiceRegistryUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/java/com/mfvanek/hibernate/utils/SessionFactoryUtil.java create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/config.properties create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/db/changelog/1.0.0/1.0.0-1-creating-tables.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/db/changelog/1.0.0/1.0.0-2-changing-primary-keys.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/db/changelog/liquibase-changelog.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/hibernate.cfg.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/main/resources/logback.xml create mode 100644 .github/workflows/example-gradle/hibernate-sample/src/test/java/com/mfvanek/hibernate/utils/PropertiesUtilTest.java create mode 100644 poetry.lock create mode 100644 pyproject.toml create mode 100644 sbom_to_snyk_depgraph/__init__.py create mode 100644 sbom_to_snyk_depgraph/main.py create mode 100644 sbom_to_snyk_depgraph/snyk_depgraph.py diff --git a/.github/workflows/example-gradle.yml b/.github/workflows/example-gradle.yml new file mode 100644 index 0000000..d128eed --- /dev/null +++ b/.github/workflows/example-gradle.yml @@ -0,0 +1,70 @@ +name: Snyk Monitor SBOM Example Worklfow + +on: + push: + branches: + - main + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: .github/workflows/example-gradle/hibernate-sample + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: wrapper + - name: Build with Gradle + run: ./gradlew build 2>/dev/null + - name: Generate SBOM + run: ./gradlew cyclonedxBom + - name: Upload CDX SBOM + uses: actions/upload-artifact@v3 + with: + name: bom + path: .github/workflows/example-gradle/hibernate-sample/build/reports/bom.json + snyk-monitor: + needs: build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + + - name: Install Poetry + run: curl -sSL https://install.python-poetry.org | python3 - + + - name: Install dependencies + run: | + pwd + ls -lrt + $HOME/.local/bin/poetry install -v + env: + POETRY_VIRTUALENVS_IN_PROJECT: true + + - name: Download SBOM from build step + uses: actions/download-artifact@v3 + with: + name: bom + + - name: Monitor SBOM with Snyk + run: | + source .venv/bin/activate + $HOME/.local/bin/poetry run python3 sbom_to_snyk_depgraph/main.py --sbom-file=".github/workflows/example-gradle/hibernate-sample/build/reports/bom.json" monitor --snyk-org-id=fa37c43d-b33f-489a-8708-9b84b6e6211b + env: + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + + diff --git a/.github/workflows/example-gradle/hibernate-sample/LICENSE b/.github/workflows/example-gradle/hibernate-sample/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/.github/workflows/example-gradle/hibernate-sample/README.md b/.github/workflows/example-gradle/hibernate-sample/README.md new file mode 100644 index 0000000..71ad220 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/README.md @@ -0,0 +1,29 @@ +# Hibernate sample app + +[![Java CI](https://github.com/mfvanek/hibernate-sample/actions/workflows/tests.yml/badge.svg)](https://github.com/mfvanek/hibernate-sample/actions/workflows/tests.yml) +[![codecov](https://codecov.io/gh/mfvanek/hibernate-sample/branch/master/graph/badge.svg?token=S86JZL3IOR)](https://codecov.io/gh/mfvanek/hibernate-sample) + +## Requirements +Java 19+ + +## Docker Compose +### Start +```shell +docker-compose --project-name="hibernate-test" up -d +``` + +### Stop +```shell +docker-compose --project-name="hibernate-test" down +``` + +## Explore volumes +### List all volumes +```shell +docker volume ls +``` + +### Delete specified volume +```shell +docker volume rm hibernate-test_hibernatedb-data +``` diff --git a/.github/workflows/example-gradle/hibernate-sample/build.gradle.kts b/.github/workflows/example-gradle/hibernate-sample/build.gradle.kts new file mode 100644 index 0000000..9b11076 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build.gradle.kts @@ -0,0 +1,201 @@ +import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask +import com.github.spotbugs.snom.Confidence +import com.github.spotbugs.snom.Effort +import com.github.spotbugs.snom.SpotBugsTask +import net.ltgt.gradle.errorprone.errorprone + +plugins { + id("java-library") + id("jacoco") + id("maven-publish") + id("checkstyle") + id("pmd") + id("com.github.spotbugs") version "6.0.2" + id("net.ltgt.errorprone") version "3.1.0" + id("io.freefair.lombok") version "8.4" + id("com.github.ben-manes.versions") version "0.50.0" + id("org.cyclonedx.bom") version "1.8.1" +} + +repositories { + mavenLocal() + mavenCentral() +} + +group = "com.mfvanek" +version = "1.5.0" +description = "Hibernate sample app" + +dependencies { + implementation(platform("org.hibernate.orm:hibernate-platform:6.4.0.Final")) + implementation("org.hibernate.orm:hibernate-core") + implementation("org.hibernate.orm:hibernate-hikaricp") + implementation("com.zaxxer:HikariCP:5.1.0") + implementation("org.postgresql:postgresql:42.7.1") + implementation("org.slf4j:slf4j-api:2.0.9") + implementation("ch.qos.logback:logback-classic:1.4.14") + implementation("org.liquibase:liquibase-core:4.25.0") + implementation("com.github.blagerweij:liquibase-sessionlock:1.6.9") + implementation("org.mongodb:mongodb-driver:3.12.14") + implementation("org.hibernate.validator:hibernate-validator:8.0.1.Final") + + testImplementation(platform("org.junit:junit-bom:5.10.1")) + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") + testImplementation("org.junit.jupiter:junit-jupiter-api") + testImplementation("org.assertj:assertj-core:3.24.2") + + checkstyle("com.thomasjensen.checkstyle.addons:checkstyle-addons:7.0.1") + + errorprone("com.google.errorprone:error_prone_core:2.23.0") + errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.21") + + spotbugsPlugins("jp.skypencil.findbugs.slf4j:bug-pattern:1.5.0") + spotbugsPlugins("com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0") + spotbugsPlugins("com.mebigfatguy.sb-contrib:sb-contrib:7.6.3") +} + +java { +// toolchain { +// languageVersion = JavaLanguageVersion.of(19) +// } + sourceCompatibility = JavaVersion.VERSION_19 + targetCompatibility = JavaVersion.VERSION_19 + withJavadocJar() + withSourcesJar() +} +tasks.withType().configureEach { + options.compilerArgs.add("-parameters") + options.errorprone { + disableWarningsInGeneratedCode.set(true) + disable("Slf4jLoggerShouldBeNonStatic") + } +} + +tasks { + wrapper { + gradleVersion = "8.5" + } + + test { + useJUnitPlatform() + dependsOn(checkstyleMain, checkstyleTest, pmdMain, pmdTest, spotbugsMain, spotbugsTest) + finalizedBy(jacocoTestReport, jacocoTestCoverageVerification) + } + + javadoc { + if (JavaVersion.current().isJava9Compatible) { + (options as StandardJavadocDocletOptions).addBooleanOption("html5", true) + } + } + + jacocoTestReport { + dependsOn(test) + reports { + xml.required.set(true) + html.required.set(true) + } + } + + jacocoTestCoverageVerification { + dependsOn(jacocoTestReport) + violationRules { + rule { + limit { + counter = "CLASS" + value = "MISSEDCOUNT" + maximum = "12".toBigDecimal() + } + } + rule { + limit { + counter = "METHOD" + value = "MISSEDCOUNT" + maximum = "67".toBigDecimal() + } + } + rule { + limit { + counter = "LINE" + value = "MISSEDCOUNT" + maximum = "253".toBigDecimal() + } + } + rule { + limit { + counter = "BRANCH" + value = "COVEREDRATIO" + minimum = "0.0".toBigDecimal() + } + } + rule { + limit { + counter = "INSTRUCTION" + value = "COVEREDRATIO" + minimum = "0.02".toBigDecimal() + } + } + } + } + + check { + dependsOn(jacocoTestCoverageVerification) + } +} + +lombok { + version.set(libs.versions.lombok.get()) +} + +jacoco { + toolVersion = libs.versions.jacoco.get() +} + +checkstyle { + toolVersion = libs.versions.checkstyle.get() + configFile = file("config/checkstyle/checkstyle.xml") + isIgnoreFailures = false + maxWarnings = 0 + maxErrors = 0 +} + +pmd { + toolVersion = libs.versions.pmd.get() + isConsoleOutput = true + ruleSetFiles = files("config/pmd/pmd.xml") + ruleSets = listOf() +} + +spotbugs { + showProgress.set(true) + effort.set(Effort.MAX) + reportLevel.set(Confidence.LOW) + excludeFilter.set(file("config/spotbugs/exclude.xml")) +} +tasks.withType().configureEach { + reports { + create("xml") { enabled = true } + create("html") { enabled = true } + } +} + +publishing { + publications.create("maven") { + from(components["java"]) + } +} + +fun isNonStable(version: String): Boolean { + val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) } + val regex = "^[0-9,.v-]+(-r)?$".toRegex() + val isStable = stableKeyword || regex.matches(version) + return isStable.not() +} + +tasks.named("dependencyUpdates").configure { + checkForGradleUpdate = true + gradleReleaseChannel = "current" + checkConstraints = true + rejectVersionIf { + isNonStable(candidate.version) + } +} diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoFindApp.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoFindApp.class new file mode 100644 index 0000000000000000000000000000000000000000..4c21bbdb410466a27585110dca6be51db9479963 GIT binary patch literal 2690 zcma)8TUQfT7~O|lCWNs>z)M6iV3iQW(0V6UMFa%{s35J{+awvnKr%yTCRnuE`@O3# zed_WD_*&bwDrwiMee$8t{WJEVcAp`@py(=VG3WlB@9e$LKKbk4-~Iq_3g1Rihk$~h ziV(sAu~}_FOP4gWm>$o~>Umcne8Mmd_oP4|*)I%2kX~K_HRr%35~Ow`Tq9Oo-{pzlJDc z*sP#QMKf9i+Be?utX{T;471QbKQ9oOX6?-4F!#BTeDO9TUD=HT>ZWVBhVG;%b;liC zU^7$COtz}nhV8_nWEBOPyx>l0`p|4TYZZ&Sorz$FK;y9K7zI61)(o>RaqD&ic4C); zHWj;(AjtCM{#61&!<@DRI+NKo0w!GBFpC*q&oU*MWg0qE?7_1_9jcPz6xj7lOy6)Oijz2{;IxWSX1pAE$wm<~SSi>x)yPJc9F-TTNCqJXVx7qT+&- zRmioqJXspWn1XQ?7ja2o+j=Cx9*@A76F zPCt2DV8(Q#YjP;3BJVj@S+nOZTcuJ?%g>FQr9~-;&IlwmHQZKgK>`=W3=9RcD&|06 z@?i2`$(m~k)RVX6yDhNSpY<|(%Qog;nGtBc%qwV=^7M&#&0O|KWXx3!)WC>FhX& zBP;`68f{P*zLBFbCbOBRY2v(Q&TOP3ws`3!I9FwR0XMujeRv;>UiznS6Suhj1O9g* z_=L;q6x>#5>_S262{y^!9J0-p*A;rqg?BhTB)B$)sC@004=cW77BZW=zoYl+1H3wx zs^XwPUoal5;wUSjc(AE=_Yz*KVjzG&(K{xgIM-9fZ~#3^$i_oeT$VU=^o8Zn>+x_E zR|Am!ZwdT}sH|ypxZoqCWLRq89uhM0BWzvmQ2WC1P&`cR;-QB!kj^~_ch66RB97A- z;BjKe5uOym_z<700(yr1AdC^pBF4FK!kMBm9!49E^Jl?n?B(hN-->ozLI>S)5991( zr0w_~oy;-mfqs$-8N@Ee{)n|WhVe0X2{Gm!e2ULJRowN6;C8r+&+!G3jo=4-Ntyy4 zB^iXDaI+Bc4=U(Ya7>|*N@o5+8{ZBR6k9*KOj6`A8IdH_*Kvm!W5*czt5r$2d*pMt YDYk^-FW4ewEqtz>% literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoInsertApp$DataSaver.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/DemoInsertApp$DataSaver.class new file mode 100644 index 0000000000000000000000000000000000000000..12fbfa89e91b05e90344b9199efef29b116b3e77 GIT binary patch literal 1364 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 literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/consts/Const.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/consts/Const.class new file mode 100644 index 0000000000000000000000000000000000000000..4389ff02650289caa6888d10b22094faa4c3b5c1 GIT binary patch literal 885 zcmaiy-EPug7{~uFpOrDU;hfuaDid{EBE0~OrekH0ln-0Lctl>x3%s+m*cSA*JTmdX z3-F?hPnls2nepUle^2{=zJLAx@e{y1oaK-}GK*9mX=E6-ulRzi4tK|DYj7p(kRkI% zx-xvrkUTl^RZv88+yN~ zHFR-XFLeLc>a)K_rk3AbaP$#h@p6E)}b#K!tdJ-MWBX^ z`ulGET(f94HLZE68?Ec{D0sq98V*!@LOT_XH&z|_c`gS$5U*Cg>tStJm73nrma9^5 z%#h}e6fQ%m;ti?2EknAZIiJ$LJAB}fr(k$CcY55H5&w0j!il7kO2+@MgqEMPyt!|S zs*K|0mX}bDZX{JimQE8;aDY3=fnkFvfjsfu7;h2p#JE7b8{_-L4`RGed>G@0#78lH xO#C#)MaoR0K!)rysz6;bkUskk_H9{GiEQ*4Na8u!{PI1G7kEj;a6&eL(?1G_(6|5q literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/entities/TestEvent.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/entities/TestEvent.class new file mode 100644 index 0000000000000000000000000000000000000000..69a4a654aa44ed7a8681ce9662cda2d7509dc070 GIT binary patch literal 4413 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 T@%agU!?!qRzs0+FABX-6B-?LZ literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/enums/TestEventType.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/enums/TestEventType.class new file mode 100644 index 0000000000000000000000000000000000000000..2cc40e51e9fa6bbccfd676ccc2b9da6d2d60d042 GIT binary patch literal 1259 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 literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/RowsCountValidator.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/RowsCountValidator.class new file mode 100644 index 0000000000000000000000000000000000000000..ae22b97c41aaaa259febde8921de243c92a1964c GIT binary patch literal 2771 zcmbVOT~`xV6x}xjhQv`~%BP}2MH_-J*4ow*q*aOv4QLIGrS@w`E@5CYlV&DV{U!Ye zeQvE%b*;8fedurM>gv8TAq*02^&z=;?wqsFKA(5~`se9y06v7DL<}7o;yOCfC6L-Q zw@t$~or-aDZBv$ffvy?LvHV$qj?8#5fo>!;By}8uE-+Pct44Kw+jQiXv0<&rx?}p% zX!w@x8MocYHIjSR#Hw3y%%8;yk0zLUXaf%Y6PaxBtsC0bGx1?vRNY9_&=3|ne z13CsVM2F3CS)ex)0tP{uvrW&-jTbc>7dZESK^L5LSHlT`OYJpY6tA&X2$LAbDV3uU zfeV?J$E*$ALwFOXHH_&vgR=sM_eF?~)*4LorKqD}_Hz-e=E?ZMBZZ#PF^(*uDw0rV z+d#EZR9>CaF^MT=a67CLDG<*rstBJK7}+Db>=qiOjd@#EnWg!AC0X-XM@d}3I~p$P zco*+6_ksLgrUW$dSvIRg?af3P6#Tm7RB~x{!6h9ZU|L|HYHrCn*D0C)9n0U~&ht&j zXG!gIr>WTnEC~ZMDoK|G`l1ooRVgOfavy29qT?#&Xi?R^XRlw}H1ckxBI~WTNRW1T zByc7Q)hxiE0-~BZ)eZAHuHib9V7nE8^g$tkgo+473xxW1`kNk`Lp z+pVs-TgG+i$U0lOoD)bCtP0z@QD+d>!t4jV$mW`f6hpvlCOezUziyE$#XGD<-`Oye^q`(X3nQxp^4(H!Qk${uQZ_OKM5_8*cfQS!WT2 z1E#ZNn-3mvEIsc$#ryMa)cXC}E`$E(g=bb)0%whxmFdX4W|z$#$ayHQT<^;)Mih1@ z5<5uVt8rpW&MdLW%5RQDf$3LtdvEN}qsy*g+tM4$yY5z_ z7M-NcaS%!3KE)MQO&jsM5&1T=xCt?5+IGS6B_ppdIBepeJ|v@%XhlmyjZ@`-f9+^% z;H7=?<)ZvV2z|sTXHbk2wFAf0AcDXRK6P<&bB;t{m$GaO#sLC+(kvgzK(=+CB)@&BhleVPBqXaakoMVYtJ?NqpX<@H5v=iW`c; zF^1h z#uP7q6^<-r2;E|7U=?2k?2LeKN1$~VUs6sn55uS46-i4W-o;mZ_ch-o5c?Y^Gz_N# zml82zr6{@U);Fw(Z-WX@ksS@JP%GX2D`p?!V?|g5gjJD%Uv+VqTw_c^iK{A&VU)S+ Y=B~n@M3qlzN(}SNVG3M)2MkI!sG1jvo)*z(aa&k@KT$ezas--6t}_;w6?wxJ(*Z@ z;CC!n5jRmsn4t{C`l7{>&|#4D+!eZ!EgH@0%fGt7s&@AtbyuEgFS z0HIciP5foI<=o^9;N#G{9Msg<#` z2VNNSgk%+YAy-OUFA$!ju5)E2Q5_XggXieG$1rnIYl+AE4F1JDI+VmeHyE3wWN7@; zkmO{3&bzm0ewKAa)Rx;)iO*@D#&ClNF=?u89rAdK8|maz<(Q=^8J61rnG*rk)>Epx zFFvWEOeBST=Xx^gBt@*YW8Dw*p1&fL>#vCDNU@_+6N-=0$W{x7xKb@2qH>7oFJxeNMC&Xu0F>w`4Lscylrc?m#{F2d zx==5WC2wGI@d$IrsBKqoAK~tI(qu+4CPvl*7Dkaqo~WZi(jvXi`j~cxC$whp^cN(x B9h?9F literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/SessionFactoryUtil.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/main/com/mfvanek/hibernate/utils/SessionFactoryUtil.class new file mode 100644 index 0000000000000000000000000000000000000000..0fa2da30d39ff336bd5c3b8bcf8417eb7558e7d9 GIT binary patch literal 4182 zcma)9`Fj)B6+O>39$O69h%GFE0Swq?5zxlQ7@Qi{5F23gWhLQ9v4<5~knURCj zC0#@Jlr&xFn(j-QmL#oh;wE%&zy8v{r{CA@yqU2jVTB+V>CJoZ-goc0=iYbykN>{; zHh_om_XO%tuc1N53N#8F%({hCVPe{JC51;lJqR;54a^K5U6kOxR^i_nl&VJtb{I*y0>0$+RDoFGH?08qT&^ql4a)v zI@&wZu9vSc#+TuCno}j#t6{ak&g#7x*9}r%3lBvND24+f|Cs!rRWVKHiOmhRa>H7lR z?ddD#w3)I^C!Y%Edhd3)mJ{@Lv%voQwPMJbaFr!nbv%e|0;@uF7l9Gjz6|B6Lwi@k zzzz*Nb?ic$z?OTUEbu^H2Gv|SsbVQT8eIFFn!9_Gr05-c zjBM&kE|X39MJqL`5H1k?p-9U0=s_p;Y1psh01h&KH9V+kg}_F$ShQ!Bs}#6=H)-z6 zlA7VId3I>@A(cXh1&n2WSIdwQ?-5vACez@xtSkmh*aRLzmxgW~M-}If)o|U5b59}X z`rTwtl1n1G3=63AmxgQepNrUZ7B&$OIrcS@?lZ!tvA%3RtkWO618D3QEk^5%b|yPJgehF%CjxB`c%ou zD(Fmm$O)u3VP<7`2{hp&M6fzj@29$`fboXQ<6}BLt`0G3A5uoD347K4PwDuy+Q0i= z`$w%j`+<@tn{b_3TZ=NaFwf(&IzFeg>v5oB9~;!kU)1p>wYDK%i%eTOO2e0Vt(PM? zWZN=t+WlU>q$+#`=Ux=pwwS$991T{hm@FYd6L>-Ks}En*@wKo-SWeapZ;E~=cUm%O z`*4{BCZa`4+H&MbslYa9%*@y%N;2(cP5Yur0`fhc6kJ$e;rEhBy(HOUWo7c*XNSSt znN>JDb=E9~2Wa>{!%|HJdZk*XyL%wAJ}h3$rOLubGZxF2fEXr)*}{>-tSb@NkD4BH zhWsO|8v>@Sz@c>Q-a@5vtyYk}Zix#jV_^9f@ripK(whpCY1=Ji+^N)Q>8N@ka}-(I zR*sO2vYG8gRZsK|NncgZ;^d=aQQQS~Rm9_+G^p$3DnUqA?2YRL5j&o>)Ft(P+#Eu?-F=t zCZaSk82qYQ}fNQROR@wIF-LWwue9Oc=xD%CxUxcUODh-HQ^e*RrD|p5YDVhm1(@T>>>T7B&eVlI zM=rF4$LP^c{1iXq`p@~O)n5Ru3A}<|a;zNuCp9VrZ*996y)*L^wXc@h6kd zhvOX_eGeXFA-7^JGPS@Mup;L{2FRc6JA?l*e*(_&&mb# zjnCohZ=k14vdFeIwDfguslyxi4S!pC>Hvg%?$b@XA_+L6aIp~VblKs#mAC! literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/classes/java/test/com/mfvanek/hibernate/utils/PropertiesUtilTest.class b/.github/workflows/example-gradle/hibernate-sample/build/classes/java/test/com/mfvanek/hibernate/utils/PropertiesUtilTest.class new file mode 100644 index 0000000000000000000000000000000000000000..eca08f1b24528ca75defe687541d7f5b93ed6289 GIT binary patch literal 2290 zcmbVOTUQ%Z6#h;~nRFNmO)r2#Z&FQA7{I&KRvKxG4NyC2FjlQ6GY4{DGAC;;wD_-l zLF`)X>a)w=HUkZyKFn>OefH)1_TFdy`0M#g0JpHIBZEE-Sp%og&oI2jcev?t zZ_`|>ZwWhO=)WO78Qx^*D-^3bayYF)H!uK$Vairbv$?UuJ+W;zWL@|k4}}?p(hbZ9 zzG?|Slp=UU-wat-afe~FP%I~2Vy%?Yf{rs7(lBh`EbHs!`0WtKVvJ;YbP<|_;N@1Pi&V5K@J~N?e|oRd^d+r z390U?BYBKO4xckjbj2y#EwcGk`A!ZCN2x^AJ05Qe9n<*Iz)jp@7$XxQmtL^+jH=Y# zUG^5e-8J74KErLQki-3d5)p^M(6Gor5d7PzP!R!@NVcRLf_|thJ+T@!X^d22fEn^- zWplU6eHnjugxRnmsh(%c|IH1-bS9oaRzpRuv#$JYLgQiNg|aECGLSK&o~J_Um}I() zC*86Y(eN|3qLw7qlL-`uOtwZ`-mE)(@}SAdSqeH`(#a&MGB9e1p+ggjCfL%mxXELO z8Xhp5>%yOOWg7+EQju?qJ2Hl3eBJ5G$Gqq;0p1Op~(;Q(M88Fs1@nWq$i6d zQ@?@zN-r6d=pHWv8os8x(N@3`?$8%-msT^$W{V8PdK3H5_A$7JbFXkd`vPONzUO!w zu=a3yy=yd&EGZArb_1gr#5kReT?Z2#2lq%PcE1b^>v7?9oVgum^Haa$9fo}rb9?yU z6{d49kg4_M=dD^c|B+QYmH))5_2)mcYFhpair_{nf{SDW^ansE3F1G2X$)bGp4}+s pQN{}CtkRVwy*0w?TYAsnAuM{vV0=%q3aY4qlSC&;9S$}y_BS!lkhcH; literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allclasses-index.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allclasses-index.html new file mode 100644 index 0000000..8f18196 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allclasses-index.html @@ -0,0 +1,87 @@ + + + + +All Classes and Interfaces (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allpackages-index.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allpackages-index.html new file mode 100644 index 0000000..9a5735a --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/allpackages-index.html @@ -0,0 +1,71 @@ + + + + +All Packages (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoFindApp.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoFindApp.html new file mode 100644 index 0000000..93df75c --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoFindApp.html @@ -0,0 +1,171 @@ + + + + +DemoFindApp (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DemoFindApp

+
+
java.lang.Object +
com.mfvanek.hibernate.DemoFindApp
+
+
+
+
public class DemoFindApp +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DemoFindApp

      +
      public DemoFindApp()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      public static void main(String[] args)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoInsertApp.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoInsertApp.html new file mode 100644 index 0000000..07db229 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoInsertApp.html @@ -0,0 +1,171 @@ + + + + +DemoInsertApp (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DemoInsertApp

+
+
java.lang.Object +
com.mfvanek.hibernate.DemoInsertApp
+
+
+
+
public class DemoInsertApp +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DemoInsertApp

      +
      public DemoInsertApp()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      public static void main(String[] args)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.html new file mode 100644 index 0000000..8ad765f --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/DemoLiquibaseRunnerApp.html @@ -0,0 +1,171 @@ + + + + +DemoLiquibaseRunnerApp (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DemoLiquibaseRunnerApp

+
+
java.lang.Object +
com.mfvanek.hibernate.DemoLiquibaseRunnerApp
+
+
+
+
public class DemoLiquibaseRunnerApp +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DemoLiquibaseRunnerApp

      +
      public DemoLiquibaseRunnerApp()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      main

      +
      public static void main(String[] args)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/Const.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/Const.html new file mode 100644 index 0000000..01d95c8 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/Const.html @@ -0,0 +1,305 @@ + + + + +Const (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Const

+
+
java.lang.Object +
com.mfvanek.hibernate.consts.Const
+
+
+
+
public abstract class Const +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      PROPERTY_FILE_NAME

      +
      public static final String PROPERTY_FILE_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      HIBERNATE_CONFIG_FILE_NAME

      +
      public static final String HIBERNATE_CONFIG_FILE_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      URL_PROPERTY_NAME

      +
      public static final String URL_PROPERTY_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      USERNAME_PROPERTY_NAME

      +
      public static final String USERNAME_PROPERTY_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PASSWORD_PROPERTY_NAME

      +
      public static final String PASSWORD_PROPERTY_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      DRIVER_PROPERTY_NAME

      +
      public static final String DRIVER_PROPERTY_NAME
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      LIQUIBASE_CHANGELOG_FILE

      +
      public static final String LIQUIBASE_CHANGELOG_FILE
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      SCHEMA_NAME

      +
      public static final String SCHEMA_NAME
      +
      There is another approach + https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#multitenacy
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Const

      +
      public Const()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-summary.html new file mode 100644 index 0000000..8e8d059 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-summary.html @@ -0,0 +1,107 @@ + + + + +com.mfvanek.hibernate.consts (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Package com.mfvanek.hibernate.consts

+
+
+
package com.mfvanek.hibernate.consts
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-tree.html new file mode 100644 index 0000000..055600b --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/consts/package-tree.html @@ -0,0 +1,70 @@ + + + + +com.mfvanek.hibernate.consts Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.mfvanek.hibernate.consts

+
+Package Hierarchies: + +
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • com.mfvanek.hibernate.consts.Const
    • +
    +
  • +
+
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEvent.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEvent.html new file mode 100644 index 0000000..8b4ee4d --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEvent.html @@ -0,0 +1,258 @@ + + + + +TestEvent (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class TestEvent

+
+
java.lang.Object +
com.mfvanek.hibernate.entities.TestEvent
+
+
+
+
@Entity +public class TestEvent +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      TestEvent

      +
      public TestEvent(String message, + Date timeMark)
      +
      +
    • +
    • +
      +

      TestEvent

      +
      public TestEvent()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      setInfo

      +
      public void setInfo(Set<TestEventInfo> info)
      +
      +
    • +
    • +
      +

      addEventInfo

      +
      public void addEventInfo(Set<TestEventInfo> value)
      +
      +
    • +
    • +
      +

      getId

      +
      public Long getId()
      +
      +
    • +
    • +
      +

      getMessage

      +
      public String getMessage()
      +
      +
    • +
    • +
      +

      getTimeMark

      +
      public Date getTimeMark()
      +
      +
    • +
    • +
      +

      getInfo

      +
      public Set<TestEventInfo> getInfo()
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    • +
      +

      setMessage

      +
      public void setMessage(String message)
      +
      +
    • +
    • +
      +

      setTimeMark

      +
      public void setTimeMark(Date timeMark)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEventInfo.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEventInfo.html new file mode 100644 index 0000000..bb63328 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/TestEventInfo.html @@ -0,0 +1,275 @@ + + + + +TestEventInfo (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class TestEventInfo

+
+
java.lang.Object +
com.mfvanek.hibernate.entities.TestEventInfo
+
+
+
+
@Entity +public class TestEventInfo +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      TestEventInfo

      +
      public TestEventInfo(TestEventType infoType, + String info)
      +
      +
    • +
    • +
      +

      TestEventInfo

      +
      public TestEventInfo()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      setEventId

      +
      public void setEventId(TestEvent event)
      +
      +
    • +
    • +
      +

      getId

      +
      public String getId()
      +
      +
    • +
    • +
      +

      getInfo

      +
      public String getInfo()
      +
      +
    • +
    • +
      +

      getInfoType

      +
      public TestEventType getInfoType()
      +
      +
    • +
    • +
      +

      getEventId

      +
      public TestEvent getEventId()
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    • +
      +

      setInfo

      +
      public void setInfo(String info)
      +
      +
    • +
    • +
      +

      setInfoType

      +
      public void setInfoType(TestEventType infoType)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-summary.html new file mode 100644 index 0000000..f418923 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-summary.html @@ -0,0 +1,109 @@ + + + + +com.mfvanek.hibernate.entities (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Package com.mfvanek.hibernate.entities

+
+
+
package com.mfvanek.hibernate.entities
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-tree.html new file mode 100644 index 0000000..fda8f2c --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/entities/package-tree.html @@ -0,0 +1,71 @@ + + + + +com.mfvanek.hibernate.entities Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.mfvanek.hibernate.entities

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/TestEventType.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/TestEventType.html new file mode 100644 index 0000000..9b3095b --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/TestEventType.html @@ -0,0 +1,238 @@ + + + + +TestEventType (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class TestEventType

+
+
java.lang.Object +
java.lang.Enum<TestEventType> +
com.mfvanek.hibernate.enums.TestEventType
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<TestEventType>, Constable
+
+
+
public enum TestEventType +extends Enum<TestEventType>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static TestEventType[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static TestEventType valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-summary.html new file mode 100644 index 0000000..dfbe012 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-summary.html @@ -0,0 +1,107 @@ + + + + +com.mfvanek.hibernate.enums (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Package com.mfvanek.hibernate.enums

+
+
+
package com.mfvanek.hibernate.enums
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-tree.html new file mode 100644 index 0000000..9b92503 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/enums/package-tree.html @@ -0,0 +1,74 @@ + + + + +com.mfvanek.hibernate.enums Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.mfvanek.hibernate.enums

+
+Package Hierarchies: + +
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-summary.html new file mode 100644 index 0000000..a0f8c1f --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-summary.html @@ -0,0 +1,111 @@ + + + + +com.mfvanek.hibernate (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Package com.mfvanek.hibernate

+
+
+
package com.mfvanek.hibernate
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-tree.html new file mode 100644 index 0000000..22312fc --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/package-tree.html @@ -0,0 +1,72 @@ + + + + +com.mfvanek.hibernate Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.mfvanek.hibernate

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/PropertiesUtil.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/PropertiesUtil.html new file mode 100644 index 0000000..dc79095 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/PropertiesUtil.html @@ -0,0 +1,144 @@ + + + + +PropertiesUtil (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class PropertiesUtil

+
+
java.lang.Object +
com.mfvanek.hibernate.utils.PropertiesUtil
+
+
+
+
public final class PropertiesUtil +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      load

      +
      public static Properties load()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/RowsCountValidator.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/RowsCountValidator.html new file mode 100644 index 0000000..bfc9fbb --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/RowsCountValidator.html @@ -0,0 +1,173 @@ + + + + +RowsCountValidator (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RowsCountValidator

+
+
java.lang.Object +
com.mfvanek.hibernate.utils.RowsCountValidator
+
+
+
+
public class RowsCountValidator +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RowsCountValidator

      +
      public RowsCountValidator(org.hibernate.SessionFactory sessionFactory)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      validate

      +
      public <T> void validate(long expected, + Class<T> clazz)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/ServiceRegistryUtil.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/ServiceRegistryUtil.html new file mode 100644 index 0000000..634685f --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/ServiceRegistryUtil.html @@ -0,0 +1,144 @@ + + + + +ServiceRegistryUtil (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ServiceRegistryUtil

+
+
java.lang.Object +
com.mfvanek.hibernate.utils.ServiceRegistryUtil
+
+
+
+
public final class ServiceRegistryUtil +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      build

      +
      public static org.hibernate.service.ServiceRegistry build()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/SessionFactoryUtil.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/SessionFactoryUtil.html new file mode 100644 index 0000000..5eb8dfa --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/SessionFactoryUtil.html @@ -0,0 +1,153 @@ + + + + +SessionFactoryUtil (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SessionFactoryUtil

+
+
java.lang.Object +
com.mfvanek.hibernate.utils.SessionFactoryUtil
+
+
+
+
public final class SessionFactoryUtil +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      build

      +
      public static org.hibernate.SessionFactory build()
      +
      +
    • +
    • +
      +

      validateQueriesCount

      +
      public static void validateQueriesCount(long expected)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-summary.html new file mode 100644 index 0000000..50f6971 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-summary.html @@ -0,0 +1,113 @@ + + + + +com.mfvanek.hibernate.utils (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Package com.mfvanek.hibernate.utils

+
+
+
package com.mfvanek.hibernate.utils
+
+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-tree.html new file mode 100644 index 0000000..ff99811 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/com/mfvanek/hibernate/utils/package-tree.html @@ -0,0 +1,73 @@ + + + + +com.mfvanek.hibernate.utils Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.mfvanek.hibernate.utils

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/constant-values.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/constant-values.html new file mode 100644 index 0000000..46c66c3 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/constant-values.html @@ -0,0 +1,99 @@ + + + + +Constant Field Values (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Constant Field Values

+
+
+

Contents

+ +
+
+

com.mfvanek.*

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/copy.svg b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/copy.svg new file mode 100644 index 0000000..7c46ab1 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/copy.svg @@ -0,0 +1,33 @@ + + + + + + + + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/element-list b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/element-list new file mode 100644 index 0000000..b80f36b --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/element-list @@ -0,0 +1,5 @@ +com.mfvanek.hibernate +com.mfvanek.hibernate.consts +com.mfvanek.hibernate.entities +com.mfvanek.hibernate.enums +com.mfvanek.hibernate.utils diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/help-doc.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/help-doc.html new file mode 100644 index 0000000..a124e47 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/help-doc.html @@ -0,0 +1,187 @@ + + + + +API Help (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Overview

+

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+
+
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enum Classes
  • +
  • Exception Classes
  • +
  • Annotation Interfaces
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

Constant Field Values

+

The Constant Field Values page lists the static final fields and their values.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index-all.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index-all.html new file mode 100644 index 0000000..8c0ce1c --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index-all.html @@ -0,0 +1,240 @@ + + + + +Index (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E G H L M P R S T U V 
All Classes and Interfaces|All Packages|Constant Field Values +

A

+
+
addEventInfo(Set<TestEventInfo>) - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
ADDITIONAL - Enum constant in enum class com.mfvanek.hibernate.enums.TestEventType
+
 
+
+

B

+
+
build() - Static method in class com.mfvanek.hibernate.utils.ServiceRegistryUtil
+
 
+
build() - Static method in class com.mfvanek.hibernate.utils.SessionFactoryUtil
+
 
+
+

C

+
+
com.mfvanek.hibernate - package com.mfvanek.hibernate
+
 
+
com.mfvanek.hibernate.consts - package com.mfvanek.hibernate.consts
+
 
+
com.mfvanek.hibernate.entities - package com.mfvanek.hibernate.entities
+
 
+
com.mfvanek.hibernate.enums - package com.mfvanek.hibernate.enums
+
 
+
com.mfvanek.hibernate.utils - package com.mfvanek.hibernate.utils
+
 
+
Const - Class in com.mfvanek.hibernate.consts
+
 
+
Const() - Constructor for class com.mfvanek.hibernate.consts.Const
+
 
+
+

D

+
+
DemoFindApp - Class in com.mfvanek.hibernate
+
 
+
DemoFindApp() - Constructor for class com.mfvanek.hibernate.DemoFindApp
+
 
+
DemoInsertApp - Class in com.mfvanek.hibernate
+
 
+
DemoInsertApp() - Constructor for class com.mfvanek.hibernate.DemoInsertApp
+
 
+
DemoLiquibaseRunnerApp - Class in com.mfvanek.hibernate
+
 
+
DemoLiquibaseRunnerApp() - Constructor for class com.mfvanek.hibernate.DemoLiquibaseRunnerApp
+
 
+
DRIVER_PROPERTY_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
+

E

+
+
equals(Object) - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
EXTENDED - Enum constant in enum class com.mfvanek.hibernate.enums.TestEventType
+
 
+
+

G

+
+
getEventId() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
getId() - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
getId() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
getInfo() - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
getInfo() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
getInfoType() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
getMessage() - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
getTimeMark() - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
+

H

+
+
hashCode() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
HIBERNATE_CONFIG_FILE_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
+

L

+
+
LIQUIBASE_CHANGELOG_FILE - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
load() - Static method in class com.mfvanek.hibernate.utils.PropertiesUtil
+
 
+
+

M

+
+
main(String[]) - Static method in class com.mfvanek.hibernate.DemoFindApp
+
 
+
main(String[]) - Static method in class com.mfvanek.hibernate.DemoInsertApp
+
 
+
main(String[]) - Static method in class com.mfvanek.hibernate.DemoLiquibaseRunnerApp
+
 
+
MAIN - Enum constant in enum class com.mfvanek.hibernate.enums.TestEventType
+
 
+
+

P

+
+
PASSWORD_PROPERTY_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
PropertiesUtil - Class in com.mfvanek.hibernate.utils
+
 
+
PROPERTY_FILE_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
+

R

+
+
RowsCountValidator - Class in com.mfvanek.hibernate.utils
+
 
+
RowsCountValidator(SessionFactory) - Constructor for class com.mfvanek.hibernate.utils.RowsCountValidator
+
 
+
+

S

+
+
SCHEMA_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
+
There is another approach + https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#multitenacy
+
+
ServiceRegistryUtil - Class in com.mfvanek.hibernate.utils
+
 
+
SessionFactoryUtil - Class in com.mfvanek.hibernate.utils
+
 
+
setEventId(TestEvent) - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
setInfo(String) - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
setInfo(Set<TestEventInfo>) - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
setInfoType(TestEventType) - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
setMessage(String) - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
setTimeMark(Date) - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
+

T

+
+
TestEvent - Class in com.mfvanek.hibernate.entities
+
 
+
TestEvent() - Constructor for class com.mfvanek.hibernate.entities.TestEvent
+
 
+
TestEvent(String, Date) - Constructor for class com.mfvanek.hibernate.entities.TestEvent
+
 
+
TestEventInfo - Class in com.mfvanek.hibernate.entities
+
 
+
TestEventInfo() - Constructor for class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
TestEventInfo(TestEventType, String) - Constructor for class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
TestEventType - Enum Class in com.mfvanek.hibernate.enums
+
 
+
toString() - Method in class com.mfvanek.hibernate.entities.TestEvent
+
 
+
toString() - Method in class com.mfvanek.hibernate.entities.TestEventInfo
+
 
+
+

U

+
+
URL_PROPERTY_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
USERNAME_PROPERTY_NAME - Static variable in class com.mfvanek.hibernate.consts.Const
+
 
+
+

V

+
+
validate(long, Class<T>) - Method in class com.mfvanek.hibernate.utils.RowsCountValidator
+
 
+
validateQueriesCount(long) - Static method in class com.mfvanek.hibernate.utils.SessionFactoryUtil
+
 
+
valueOf(String) - Static method in enum class com.mfvanek.hibernate.enums.TestEventType
+
+
Returns the enum constant of this class with the specified name.
+
+
values() - Static method in enum class com.mfvanek.hibernate.enums.TestEventType
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
+A B C D E G H L M P R S T U V 
All Classes and Interfaces|All Packages|Constant Field Values
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index.html new file mode 100644 index 0000000..72d69a1 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/index.html @@ -0,0 +1,73 @@ + + + + +Overview (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

hibernate-sample 1.5.0 API

+
+ +
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ASSEMBLY_EXCEPTION b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..4296666 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + https://openjdk.org/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/LICENSE b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 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 General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jquery.md b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jqueryUI.md b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/link.svg b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/link.svg new file mode 100644 index 0000000..7ccc5ed --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/link.svg @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/member-search-index.js b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/member-search-index.js new file mode 100644 index 0000000..b77f376 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"addEventInfo(Set)","u":"addEventInfo(java.util.Set)"},{"p":"com.mfvanek.hibernate.enums","c":"TestEventType","l":"ADDITIONAL"},{"p":"com.mfvanek.hibernate.utils","c":"ServiceRegistryUtil","l":"build()"},{"p":"com.mfvanek.hibernate.utils","c":"SessionFactoryUtil","l":"build()"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"Const()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate","c":"DemoFindApp","l":"DemoFindApp()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate","c":"DemoInsertApp","l":"DemoInsertApp()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate","c":"DemoLiquibaseRunnerApp","l":"DemoLiquibaseRunnerApp()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"DRIVER_PROPERTY_NAME"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"com.mfvanek.hibernate.enums","c":"TestEventType","l":"EXTENDED"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"getEventId()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"getId()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"getId()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"getInfo()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"getInfo()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"getInfoType()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"getMessage()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"getTimeMark()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"hashCode()"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"HIBERNATE_CONFIG_FILE_NAME"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"LIQUIBASE_CHANGELOG_FILE"},{"p":"com.mfvanek.hibernate.utils","c":"PropertiesUtil","l":"load()"},{"p":"com.mfvanek.hibernate.enums","c":"TestEventType","l":"MAIN"},{"p":"com.mfvanek.hibernate","c":"DemoFindApp","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.mfvanek.hibernate","c":"DemoInsertApp","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.mfvanek.hibernate","c":"DemoLiquibaseRunnerApp","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"PASSWORD_PROPERTY_NAME"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"PROPERTY_FILE_NAME"},{"p":"com.mfvanek.hibernate.utils","c":"RowsCountValidator","l":"RowsCountValidator(SessionFactory)","u":"%3Cinit%3E(org.hibernate.SessionFactory)"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"SCHEMA_NAME"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"setEventId(TestEvent)","u":"setEventId(com.mfvanek.hibernate.entities.TestEvent)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"setInfo(Set)","u":"setInfo(java.util.Set)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"setInfo(String)","u":"setInfo(java.lang.String)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"setInfoType(TestEventType)","u":"setInfoType(com.mfvanek.hibernate.enums.TestEventType)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"setMessage(String)","u":"setMessage(java.lang.String)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"setTimeMark(Date)","u":"setTimeMark(java.util.Date)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"TestEvent()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"TestEvent(String, Date)","u":"%3Cinit%3E(java.lang.String,java.util.Date)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"TestEventInfo()","u":"%3Cinit%3E()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"TestEventInfo(TestEventType, String)","u":"%3Cinit%3E(com.mfvanek.hibernate.enums.TestEventType,java.lang.String)"},{"p":"com.mfvanek.hibernate.entities","c":"TestEvent","l":"toString()"},{"p":"com.mfvanek.hibernate.entities","c":"TestEventInfo","l":"toString()"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"URL_PROPERTY_NAME"},{"p":"com.mfvanek.hibernate.consts","c":"Const","l":"USERNAME_PROPERTY_NAME"},{"p":"com.mfvanek.hibernate.utils","c":"RowsCountValidator","l":"validate(long, Class)","u":"validate(long,java.lang.Class)"},{"p":"com.mfvanek.hibernate.utils","c":"SessionFactoryUtil","l":"validateQueriesCount(long)"},{"p":"com.mfvanek.hibernate.enums","c":"TestEventType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.mfvanek.hibernate.enums","c":"TestEventType","l":"values()"}];updateSearchResults(); \ No newline at end of file diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/module-search-index.js b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-summary.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-summary.html new file mode 100644 index 0000000..fb462ef --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-summary.html @@ -0,0 +1,25 @@ + + + + +hibernate-sample 1.5.0 API + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-tree.html b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-tree.html new file mode 100644 index 0000000..7ed42c4 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/overview-tree.html @@ -0,0 +1,97 @@ + + + + +Class Hierarchy (hibernate-sample 1.5.0 API) + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+
+Package Hierarchies: + +
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/package-search-index.js b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/package-search-index.js new file mode 100644 index 0000000..8f3850a --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"com.mfvanek.hibernate"},{"l":"com.mfvanek.hibernate.consts"},{"l":"com.mfvanek.hibernate.entities"},{"l":"com.mfvanek.hibernate.enums"},{"l":"com.mfvanek.hibernate.utils"}];updateSearchResults(); \ No newline at end of file diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/resources/glass.png b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/resources/glass.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f591f467a1c0c949bbc510156a0c1afb860a6e GIT binary patch literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY literal 0 HcmV?d00001 diff --git a/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-3.6.1.min.js b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/.github/workflows/example-gradle/hibernate-sample/build/docs/javadoc/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("