Provide an embedded Docker container for local development #1

Merged
ansv7779 merged 10 commits from docker into main 2025-03-26 18:51:21 +01:00
Showing only changes of commit 0f03bbca52 - Show all commits

View File

@ -15,6 +15,9 @@ public record ClientRow(
String clientSecret) String clientSecret)
{ {
public Set<String> scopeSet() { public Set<String> scopeSet() {
if (scopes == null) {
return Set.of();
}
return Arrays.stream(this.scopes.split(" ")) return Arrays.stream(this.scopes.split(" "))
.filter(Predicate.not(String::isBlank)) .filter(Predicate.not(String::isBlank))
.collect(Collectors.toUnmodifiableSet()); .collect(Collectors.toUnmodifiableSet());