Skip to content

Commit

Permalink
Clarify client ID
Browse files Browse the repository at this point in the history
Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com>
  • Loading branch information
eamansour committed May 22, 2024
1 parent 78b811c commit 0d66f24
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
public class CouchdbAuthToken implements IAuthToken {

private String _id;
private String clientId;
private String dexClientId;
private String description;
private Instant creationTime;
private User owner;

public CouchdbAuthToken(String clientId, String description, Instant creationTime, User owner) {
this.clientId = clientId;
this.dexClientId = clientId;
this.description = description;
this.creationTime = creationTime;
this.owner = owner;
Expand All @@ -46,7 +46,7 @@ public User getOwner() {
return owner;
}

public String getClientId() {
return clientId;
public String getDexClientId() {
return dexClientId;
}
}

0 comments on commit 0d66f24

Please sign in to comment.