com.heanbian.boot.autoconfigure.oauth2.OAuth2Properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heanbian-spring-boot-autoconfigure Show documentation
Show all versions of heanbian-spring-boot-autoconfigure Show documentation
Heanbian spring boot autoconfigure component.
package com.heanbian.boot.autoconfigure.oauth2;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "heanbian.oauth2")
public class OAuth2Properties {
private String logoutUrl;
public String getLogoutUrl() {
return logoutUrl;
}
public void setLogoutUrl(String logoutUrl) {
this.logoutUrl = logoutUrl;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy