1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
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
package org.apereo.cas.web.landtool.log.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * @author Tanbin
 * @date  2018-12-12
 */
@Component
@ConfigurationProperties(prefix = "landtool.log")
public class LogProperties {
    private boolean enabled = false;
    private String logServiceUrl;
    
    public boolean isEnabled() {
        return enabled;
    }
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }
    public String getLogServiceUrl() {
        return logServiceUrl;
    }
    public void setLogServiceUrl(String logServiceUrl) {
        this.logServiceUrl = logServiceUrl;
    }
    
    
 
}