-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 提供了 OAuth2AuthorizationObjectMapperCustomizer 类,方便用户扩展 OAuth2Author…
…ization 的序列化逻辑
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
...springsecurity/oauth2/server/authorization/OAuth2AuthorizationObjectMapperCustomizer.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,15 @@ | ||
package org.ballcat.springsecurity.oauth2.server.authorization; | ||
|
||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
|
||
/** | ||
* 用于序列化 OAuth2Authorization 的专用 ObjectMapper 定制器 | ||
* | ||
* @author hccake | ||
*/ | ||
@FunctionalInterface | ||
public interface OAuth2AuthorizationObjectMapperCustomizer { | ||
|
||
void customize(ObjectMapper objectMapper); | ||
|
||
} |
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