This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.clozenough.service; | |
| import com.amazonaws.services.s3.AmazonS3; | |
| import com.amazonaws.services.s3.model.CannedAccessControlList; | |
| import com.amazonaws.services.s3.model.ObjectMetadata; | |
| import com.amazonaws.services.s3.model.PutObjectRequest; | |
| import com.clozenough.config.AwsConfig; | |
| import lombok.RequiredArgsConstructor; | |
| import lombok.SneakyThrows; | |
| import org.springframework.stereotype.Service; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.keycloak.quickstart.springboot.web; | |
| import org.keycloak.AuthorizationContext; | |
| import org.keycloak.KeycloakPrincipal; | |
| import org.keycloak.KeycloakSecurityContext; | |
| import org.keycloak.representations.IDToken; | |
| import org.keycloak.representations.idm.authorization.Permission; | |
| import org.springframework.web.bind.annotation.GetMapping; | |
| import org.springframework.web.bind.annotation.RestController; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cobienpte.paymentengine.pay; | |
| import com.palantir.docker.compose.DockerComposeRule; | |
| import com.palantir.docker.compose.connection.DockerPort; | |
| import org.springframework.beans.factory.annotation.Value; | |
| import org.springframework.boot.jdbc.DataSourceBuilder; | |
| import org.springframework.boot.test.context.TestConfiguration; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Primary; | |
| import org.springframework.context.annotation.Profile; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.tarabutgateway.obc.bobf.accounts.repository; | |
| import feign.Client; | |
| import feign.codec.Encoder; | |
| import feign.form.spring.SpringFormEncoder; | |
| import feign.httpclient.ApacheHttpClient; | |
| import net.tarabutgateway.obc.bobf.accounts.config.MTLSConfiguration; | |
| import org.apache.commons.codec.binary.Base64; | |
| import org.apache.http.client.config.RequestConfig; | |
| import org.apache.http.conn.ssl.NoopHostnameVerifier; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.octagon; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.net.URISyntaxException; | |
| import java.nio.charset.StandardCharsets; | |
| import java.util.Arrays; | |
| import java.util.HashSet; |