Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: serialVersionUID fix for Serializable Classes #1300

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -36,6 +36,8 @@
* credentials.
*/
class ExternalAccountMetricsHandler implements java.io.Serializable {
private static final long serialVersionUID = 7825203615911901249L;

private static final String SOURCE_KEY = "source";
private static final String IMPERSONATION_KEY = "sa-impersonation";
private static final String CONFIG_LIFETIME_KEY = "config-lifetime";
Expand Down
Expand Up @@ -498,6 +498,8 @@ public Builder toBuilder() {

/** Stores an immutable snapshot of the accesstoken owned by {@link OAuth2Credentials} */
static class OAuthValue implements Serializable {
private static final long serialVersionUID = -7269184394646019967L;

private final AccessToken temporaryAccess;
private final Map<String, List<String>> requestMetadata;

Expand Down