![JAR search and dependency download from the Maven repository](/logo.png)
com.garmin.config.GarminConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of garmin-oauth Show documentation
Show all versions of garmin-oauth Show documentation
Package garmin license, new user license to app
The newest version!
package com.garmin.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* @Classname GarminConfig
* @Description TODO
* @Date 2019/10/18 10:10
* @Created by weihua.zou
*/
@Component
@ConfigurationProperties(prefix = "garmin.oauth")
@Data
public class GarminConfig {
private String consumerkey;
private String consumerSecret;
private String requestTokenUrl;
private String oauthConfirmUrl;
private String oauthAccessTokenUrl;
/**
* garmin 授权成功回调地址
*/
private String callBackUrl;
/**
* garmin 获取到认证token 通知页面
*/
private String notifyUrl;
/**
* 是否自动跳转至giama绑定登陆页面
*/
private boolean autoJumpPage=true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy