Skip to content

Commit

Permalink
SerialVersionUID fix for serializable classes
Browse files Browse the repository at this point in the history
  • Loading branch information
rng70-or committed Oct 6, 2023
1 parent 826ee40 commit b0295d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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 @@ -497,6 +497,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

0 comments on commit b0295d7

Please sign in to comment.