com.networknt.oauth.token.handler.OauthRefeshTokenConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-refresh-token Show documentation
Show all versions of oauth2-refresh-token Show documentation
A micro service server that manages refresh token.
package com.networknt.oauth.token.handler;
public class OauthRefeshTokenConfig {
boolean enableAudit;
public boolean isEnableAudit() {
return enableAudit;
}
public void setEnableAudit(boolean enableAudit) {
this.enableAudit = enableAudit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy