Project initial setup with brightcove API reference
authorelgekko <vasary@elgekko.net>
Fri, 15 Sep 2023 21:20:48 +0000 (23:20 +0200)
committerelgekko <vasary@elgekko.net>
Fri, 15 Sep 2023 21:20:48 +0000 (23:20 +0200)
commit80e81ded3c62755c9e27d74e05f99b958e05a703
tree00f3694097666fac1582ed21eb76f6870240e601
parenta80fcb8094657ca41cae6e2f0c033fcd733fa8ea
Project initial setup with brightcove API reference
93 files changed:
mc-vod-sync/.gitignore [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/pom.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/main/java/hu/user/mcvodsync/VodSyncEntry.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/main/resources/application-dev.yaml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/main/resources/application.yaml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/main/resources/logback-spring.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/test/java/hu/user/mcvodsync/RepositoryIT.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/test/java/hu/user/mcvodsync/VodSyncEntryTest.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/test/java/hu/user/mcvodsync/VodXlsProcessorIT.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-app/src/test/resources/AMC_Selekt_jogositott_tartalmak_20230906.xlsx [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-brightcove/README.md [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-brightcove/mc-vod-sync-brightcove.iml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-brightcove/pom.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-brightcove/src/main/resources/openapi.yaml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/README [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/bootstrap.sql [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/environments/development.properties [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/environments/prod.properties [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/scripts/001_create_changelog.sql [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/scripts/002_create_initial_schema.sql [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/migrations/scripts/004_create_test_data.sql [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/pom.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/Associate.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/UploadFile.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/AssociateRepository.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/AssociateRepositorySearch.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/AssociateRepositorySearchImpl.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/UploadFileRepository.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/UploadFileRepositorySearch.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-db/src/main/java/hu/user/mcvodsync/db/repository/UploadFileRepositorySearchImpl.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-service/pom.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-service/src/main/java/hu/user/mcvodsync/service/data/EntityDataService.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-service/src/main/java/hu/user/mcvodsync/service/data/EntityDataServiceBase.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-service/src/main/java/hu/user/mcvodsync/service/xls/VodXlsProcessor.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/pom.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/ApplicationProperties.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/Constants.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/auth/CurrentProfile.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/auth/Guard.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/auth/LocalAuthProvider.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/config/DevelopmentConfig.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/config/ResourceConfigurer.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/config/WebSecurityConfig.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/data/AssociatesDataModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/data/UploadFileDataModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/data/common/CachedDataModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/data/common/CachedSpringDataModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/data/common/FormDocument.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/editor/AssociateEditorModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/editor/PartnerEditorModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/editor/common/EditCompleted.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/editor/common/Editors.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/editor/common/EntityEditorModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/session/SessionSettings.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/AssociatesViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/IndexViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/LoginViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/UploadFilesViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/common/AsyncBaseModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/common/EntityViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/common/FilterActiveViewModel.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/java/hu/user/mcvodsync/ui/view/common/UITask.java [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/metainfo/zk-label.properties [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/metainfo/zk-label_hu.properties [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/metainfo/zk/zk.xml [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/associates.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/editor/associate-editor.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/editor/partner-editor.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/fields/field-label.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/fields/inline-radio.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/fields/text.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/index.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/login.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/associate-filter.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/associate-selector.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/partner-selector.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/project-filter.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/project-selector.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/obsolate/project.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/css/skeleton.css [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/css/webclient.css [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/images/logo.png [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/js/cleave.min.js [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/print.min.css [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/static/print.min.js [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/timeout.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/upload-files.zul [new file with mode: 0644]
mc-vod-sync/mc-vod-sync-ui/src/main/resources/web/widget/entity-selector.zul [new file with mode: 0644]
mc-vod-sync/pom.xml [new file with mode: 0644]
mc-vod-sync/runConfigurations/create-vodsync-db2-docker-container.run.xml [new file with mode: 0644]
mc-vod-sync/runConfigurations/server-dev.run.xml [new file with mode: 0644]
mc-vod-sync/start-mc-vod-sync.sh [new file with mode: 0644]
mc-vod-sync/stop-mc-vod-sync.sh [new file with mode: 0644]