xieb
2023-07-26 006baff0642ddb99514f268c8876d0cb3766e298
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package cn.gistack.auth.props;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: aix
 * @DATE: 2023/7/24 15:58
 */
@Data
@Component
@ConfigurationProperties(prefix = "oauth.config")
public class OAuthProperties {
 
    private String clientId;
 
    private String clientSecret;
 
    private String appKey;
 
    private String appSecret;
 
    private String serverUrlPrefix;
 
    private String tokenUrl;
 
    private String profileUrl;
 
    private String redirectUri;
 
    private String redirectWebUri;
 
}