-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* implement opaque token introspection #3633 * merge develop * increase developer admin 64k archive entry limit * fix pr findings
- Loading branch information
Showing
96 changed files
with
2,420 additions
and
913 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
21 changes: 21 additions & 0 deletions
21
...om/mercedesbenz/sechub/domain/administration/TestAdministrationSecurityConfiguration.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-License-Identifier: MIT | ||
package com.mercedesbenz.sechub.domain.administration; | ||
|
||
import static org.mockito.Mockito.mock; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.web.client.RestTemplate; | ||
|
||
import com.mercedesbenz.sechub.sharedkernel.security.SecHubSecurityConfiguration; | ||
|
||
@Configuration | ||
@Import(SecHubSecurityConfiguration.class) | ||
public class TestAdministrationSecurityConfiguration { | ||
|
||
@Bean | ||
RestTemplate restTemplate() { | ||
return mock(); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-License-Identifier: MIT | ||
/*============================================================================ | ||
* Build file for subproject | ||
* | ||
* Root build file: "${rootProject.projectDir}/build.gradle" | ||
* ============================================================================ | ||
*/ | ||
dependencies { | ||
|
||
implementation project(':sechub-commons-core') | ||
implementation project(':sechub-testframework-spring') | ||
implementation library.springboot_starter_security | ||
implementation library.springboot_starter_oauth2_resource_server | ||
|
||
testImplementation library.springframework_web | ||
testImplementation library.springframework_webmvc | ||
testImplementation library.springboot_test_autoconfigure | ||
testImplementation library.springboot_starter_test | ||
testImplementation library.springframework_security_test | ||
testImplementation library.jakarta_servlet_api | ||
} |
Oops, something went wrong.