Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public class AccessToken {

private Long expiresAt;

private List<String> audience;

public AccessToken() {}

public AccessToken(String token, String clientId, List<String> scopes, Long expiresAt) {
Expand All @@ -26,15 +24,6 @@ public AccessToken(String token, String clientId, List<String> scopes, Long expi
this.expiresAt = expiresAt;
}

public AccessToken(
String token, String clientId, List<String> scopes, Long expiresAt, List<String> audience) {
this.token = token;
this.clientId = clientId;
this.scopes = scopes;
this.expiresAt = expiresAt;
this.audience = audience;
}

public String getToken() {
return token;
}
Expand Down Expand Up @@ -66,12 +55,4 @@ public Long getExpiresAt() {
public void setExpiresAt(Long expiresAt) {
this.expiresAt = expiresAt;
}

public List<String> getAudience() {
return audience;
}

public void setAudience(List<String> audience) {
this.audience = audience;
}
}
Loading