-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ExecutorAuthenticationProvider API (#1548)
* Add ExecutorAuthenticationProvider API don’t flag blocking imperative AuthenticationProvider with @Blocking instead use `ExecutorAuthenticationProvider` * cache every beanContext invocation
- Loading branch information
Showing
9 changed files
with
110 additions
and
163 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
67 changes: 0 additions & 67 deletions
67
security/src/main/java/io/micronaut/security/authentication/AuthenticationProviderUtils.java
This file was deleted.
Oops, something went wrong.
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
39 changes: 39 additions & 0 deletions
39
...in/java/io/micronaut/security/authentication/provider/ExecutorAuthenticationProvider.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,39 @@ | ||
/* | ||
* Copyright 2017-2024 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.security.authentication.provider; | ||
|
||
import io.micronaut.scheduling.TaskExecutors; | ||
import io.micronaut.security.authentication.AuthenticationRequest; | ||
|
||
/** | ||
* An {@link AuthenticationProvider} which forces you to define the executor to be used. | ||
* Blocking implementations of AuthenticationProvider should use this API. | ||
* @author Sergio del Amo | ||
* @since 4.5.0 | ||
* @param <T> Request Context Type | ||
* @param <I> Authentication Request Identity Type | ||
* @param <S> Authentication Request Secret Type | ||
*/ | ||
public interface ExecutorAuthenticationProvider<T, I, S> extends AuthenticationProvider<T, I, S> { | ||
|
||
/** | ||
* | ||
* @return The executor name where the code {@link AuthenticationProvider#authenticate(T, AuthenticationRequest)} will be executed. | ||
*/ | ||
default String getExecutorName() { | ||
return TaskExecutors.BLOCKING; | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...micronaut/security/authentication/provider/HttpRequestExecutorAuthenticationProvider.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,27 @@ | ||
/* | ||
* Copyright 2017-2023 original authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.micronaut.security.authentication.provider; | ||
|
||
import io.micronaut.http.HttpRequest; | ||
|
||
/** | ||
* {@link ExecutorAuthenticationProvider} for {@link HttpRequest}. | ||
* @author Sergio del Amo | ||
* @since 4.5.0 | ||
* @param <B> The HTTP Request Body type | ||
*/ | ||
public interface HttpRequestExecutorAuthenticationProvider<B> extends ExecutorAuthenticationProvider<HttpRequest<B>, String, String> { | ||
} |
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
66 changes: 0 additions & 66 deletions
66
...ovy/io/micronaut/security/authentication/ImperativeAuthenticationProviderUtilsTest.groovy
This file was deleted.
Oops, something went wrong.
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