Persist tokens between restarts #3
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "persistent-tokens"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Utilize Java serialization to turn the entire
OAuth2Authorization
to a binary blob and store that in the database. Could not find a better way to do it given the types involved (likeMap<String, Object> properties
). Sure, Java serialization can fail on arbitrary objects but hopefully sinceOAuth2Authorization
implementsjava.io.Serializable
any properties put in are serializable as well.Fixes #2