Skip to content

Commit

Permalink
fix: add getters and setters to Config
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Oct 25, 2023
1 parent 8bc9350 commit ecb7b0b
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/main/java/org/casbin/casdoor/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,51 @@ public Config(String endpoint, String clientId, String clientSecret, String cert
this.applicationName = applicationName;
}

public String getEndpoint() {
return endpoint;
}

public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}

public String getClientId() {
return clientId;
}

public void setClientId(String clientId) {
this.clientId = clientId;
}

public String getClientSecret() {
return clientSecret;
}

public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}

public String getCertificate() {
return certificate;
}

public void setCertificate(String certificate) {
this.certificate = certificate;
}

public String getOrganizationName() {
return organizationName;
}

public void setOrganizationName(String organizationName) {
this.organizationName = organizationName;
}

public String getApplicationName() {
return applicationName;
}

public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
}

0 comments on commit ecb7b0b

Please sign in to comment.