1
13693261870
2022-09-16 fee60c3e25fac0982f3b8cb8feea7225c4ed22f8
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.terra.proxy.properties;
 
import lombok.Data;
 
@Data
public class ProxyProperties {
 
    private String host;
 
    private String targethost;
 
    private Integer times;
 
    private String logapipath;
 
    private String servletmapjson;
 
    private String blacklist;
 
    private String blackUris;
 
    private String tempAllowUrls;
 
    private String tempAllowBlackList;
 
    public String getLogapipath() {
        return logapipath;
    }
 
    public void setLogapipath(String logapipath) {
        this.logapipath = logapipath;
    }
 
    public String getServletmapjson() {
        return servletmapjson;
    }
 
    public void setServletmapjson(String servletmapjson) {
        this.servletmapjson = servletmapjson;
    }
 
    public Integer getTimes() {
        return times;
    }
 
    public void setTimes(Integer times) {
        this.times = times;
    }
 
    public String getTargethost() {
        return targethost;
    }
 
    public void setTargethost(String targethost) {
        this.targethost = targethost;
    }
 
    public String getHost() {
        return host;
    }
 
    public void setHost(String host) {
        this.host = host;
    }
 
    public String getBlacklist() {
        return blacklist;
    }
 
    public void setBlacklist(String blacklist) {
        this.blacklist = blacklist;
    }
 
    public String getBlackUris() {
        return blackUris;
    }
 
    public void setBlackUris(String blackUris) {
        this.blackUris = blackUris;
    }
 
    public String getTempAllowUrls() {
        return tempAllowUrls;
    }
 
    public void setTempAllowUrls(String tempAllowUrls) {
        this.tempAllowUrls = tempAllowUrls;
    }
 
    public String getTempAllowBlackList() {
        return tempAllowBlackList;
    }
 
    public void setTempAllowBlackList(String tempAllowBlackList) {
        this.tempAllowBlackList = tempAllowBlackList;
    }
}