You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpAuthenticationMechanism.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ public Set<Class<? extends AuthenticationRequest>> getCredentialTypes() {
Copy file name to clipboardExpand all lines: extensions/amazon-lambda-rest/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpAuthenticationMechanism.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ public Set<Class<? extends AuthenticationRequest>> getCredentialTypes() {
Copy file name to clipboardExpand all lines: extensions/elytron-security-oauth2/runtime/src/main/java/io/quarkus/elytron/security/oauth2/runtime/auth/OAuth2AuthMechanism.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public Set<Class<? extends AuthenticationRequest>> getCredentialTypes() {
Copy file name to clipboardExpand all lines: extensions/elytron-security-properties-file/deployment/src/test/java/io/quarkus/security/test/CustomAuth.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ public Set<Class<? extends AuthenticationRequest>> getCredentialTypes() {
Copy file name to clipboardExpand all lines: extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpSecurityPolicyBuildItem.java
Copy file name to clipboardExpand all lines: extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/HttpSecurityProcessor.java
Copy file name to clipboardExpand all lines: extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpSecurityRecorder.java
-18
Original file line number
Diff line number
Diff line change
@@ -129,24 +129,6 @@ public EagerSecurityInterceptorStorage get() {
Copy file name to clipboardExpand all lines: extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/ImmutablePathMatcher.java
+5-17
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ public PathMatch<T> match(String path) {
55
55
if (hasExactPathMatches) {
56
56
Tmatch = exactPathMatches.get(path);
57
57
if (match != null) {
58
-
returnnewPathMatch<>(path, "", match);
58
+
returnnewPathMatch<>(path, match);
59
59
}
60
60
}
61
61
@@ -64,7 +64,7 @@ public PathMatch<T> match(String path) {
64
64
if (pathLength == length) {
65
65
SubstringMatch<T> next = paths.get(path, length);
66
66
if (next != null) {
67
-
returnnewPathMatch<>(path, "", next.getValue());
67
+
returnnewPathMatch<>(path, next.getValue());
68
68
}
69
69
} elseif (pathLength < length) {
70
70
charc = path.charAt(pathLength);
@@ -76,12 +76,12 @@ public PathMatch<T> match(String path) {
76
76
//String part = path.substring(0, pathLength);
77
77
SubstringMatch<T> next = paths.get(path, pathLength);
0 commit comments