Upload bff 53/134153/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Fri, 14 Apr 2023 11:44:19 +0000 (11:44 +0000)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Fri, 14 Apr 2023 11:44:19 +0000 (11:44 +0000)
commitcdc670c5a1c25b0b0ab460b1711a0a42f270b1f3
tree41ac6c0e7a52505fd1d0de057df6d5328a853cd0
parent1a9b563662e9a9dd1f89e04ce0026e2cc5c4771d
Upload bff

Issue-ID: PORTAL-1083

Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I50f0a2db2dab28354c32c1ebf5a5e22afb0faade
116 files changed:
.gitignore [new file with mode: 0644]
Dockerfile [new file with mode: 0644]
README.md [new file with mode: 0644]
app/LICENSE [new file with mode: 0644]
app/LICENSE_HEADER [new file with mode: 0644]
app/build.gradle [new file with mode: 0644]
app/src/main/java/org/onap/portal/bff/Application.java [new file with mode: 0644]
app/src/main/resources/application-access-control.yml [new file with mode: 0644]
app/src/main/resources/application-development.yml [new file with mode: 0644]
app/src/main/resources/application-local.yml [new file with mode: 0644]
app/src/main/resources/application.yml [new file with mode: 0644]
app/src/main/resources/logback-spring.xml [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/ApiDocsIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/BaseIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/HealthCheckIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/TokenGenerator.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/ActionDto.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/ActionFixtures.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/ActionsMocks.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/CreateActionsIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/GetActionsIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/actions/ListActionsIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/headers/XRequestIdHeaderTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/idtoken/IdTokenExchangeFilterFunctionTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/preferences/CreatePreferencesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/preferences/GetPreferencesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/preferences/PreferencesMocks.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/preferences/UpdatePreferencesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/roles/ListRealmRolesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/roles/RolesMocks.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/CreateUserIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/DeleteUserIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/GetUserDetailIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/ListAssignedRolesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/ListAvailableRolesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/ListUsersIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/UpdateAssignedRolesIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/UpdateUserIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/users/UpdateUserPasswordIntegrationTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/utils/SortingChainResolverTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/utils/SortingParserTest.java [new file with mode: 0644]
app/src/test/java/org/onap/portal/bff/utils/VersionComparatorTest.java [new file with mode: 0644]
app/src/test/resources/application-access-control.yml [new file with mode: 0644]
app/src/test/resources/application-development.yml [new file with mode: 0644]
app/src/test/resources/application.yml [new file with mode: 0644]
app/src/test/resources/logback-spring.xml [new file with mode: 0644]
app/src/test/resources/preferences/preferencesProperties.json [new file with mode: 0644]
bin/build.sh [new file with mode: 0755]
bin/compile.sh [new file with mode: 0755]
bin/generate-openapi.sh [new file with mode: 0755]
bin/sonarqube.sh [new file with mode: 0755]
bin/test.sh [new file with mode: 0755]
build.gradle [new file with mode: 0755]
development/.env [new file with mode: 0644]
development/config/onap-realm.json [new file with mode: 0644]
development/docker-compose.yml [new file with mode: 0644]
development/requests-code.http [new file with mode: 0644]
development/requests.http [new file with mode: 0644]
development/run.sh [new file with mode: 0755]
development/stop.sh [new file with mode: 0755]
gradle/wrapper/gradle-wrapper.jar [new file with mode: 0644]
gradle/wrapper/gradle-wrapper.properties [new file with mode: 0644]
gradlew [new file with mode: 0755]
gradlew.bat [new file with mode: 0644]
lib/LICENSE [new file with mode: 0644]
lib/LICENSE_HEADER [new file with mode: 0644]
lib/build.gradle [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/BeansConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/ConversionServiceConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/IdTokenExchangeFilterFunction.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/LoggerInterceptor.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/MapperSpringConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/PortalBffConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/SecurityConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/clients/AbstractClientConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/clients/KeycloakConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/clients/PortalHistoryConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/config/clients/PortalPrefsConfig.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/AbstractBffController.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/ActionsController.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/BffControllerAdvice.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/PreferencesController.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/RolesController.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/controller/UsersController.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/exceptions/DownstreamApiProblemException.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/mappers/ActionsMapper.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/mappers/CredentialMapper.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/mappers/PreferencesMapper.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/mappers/RolesMapper.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/mappers/UsersMapper.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/services/ActionService.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/services/KeycloakService.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/services/PreferencesService.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/utils/ErrorHandler.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/utils/Logger.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/utils/SortingChainResolver.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/utils/SortingParser.java [new file with mode: 0644]
lib/src/main/java/org/onap/portal/bff/utils/VersionComparator.java [new file with mode: 0644]
lombok.config [new file with mode: 0644]
openapi/build.gradle [new file with mode: 0644]
openapi/client-portal-history/LICENSE [new file with mode: 0644]
openapi/client-portal-history/build.gradle [new file with mode: 0644]
openapi/client-portal-history/src/portal_history_openapi.yaml [new file with mode: 0644]
openapi/client-portal-keycloak/LICENSE [new file with mode: 0644]
openapi/client-portal-keycloak/build.gradle [new file with mode: 0644]
openapi/client-portal-keycloak/src/portal_keycloak_openapi.yaml [new file with mode: 0644]
openapi/client-portal-prefs/LICENSE [new file with mode: 0644]
openapi/client-portal-prefs/build.gradle [new file with mode: 0644]
openapi/client-portal-prefs/src/portal_prefs_openapi.yaml [new file with mode: 0644]
openapi/server/LICENSE [new file with mode: 0644]
openapi/server/build.gradle [new file with mode: 0644]
openapi/server/src/main/resources/static/api-docs.html [new file with mode: 0644]
openapi/server/src/main/resources/static/api.yaml [new file with mode: 0644]
settings.gradle [new file with mode: 0644]
spotbugs-exclude.xml [new file with mode: 0644]
version [new file with mode: 0644]