yangys
2024-04-04 2cf2921440e7473ae50796c2cb688f609b3a7995
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.qianwen.core.scanner.config.properties;
 
import java.util.ArrayList;
import java.util.List;
 
/* loaded from: blade-starter-scanner-9.3.0.0-SNAPSHOT.jar:org/springblade/core/scanner/config/properties/ScannerProperties.class */
public class ScannerProperties {
    private String appName;
    private String appCode;
    private Boolean open = false;
    private String linkSymbol = ".";
    private List<String> updateModules = new ArrayList();
 
    public void setOpen(final Boolean open) {
        this.open = open;
    }
 
    public void setAppName(final String appName) {
        this.appName = appName;
    }
 
    public void setAppCode(final String appCode) {
        this.appCode = appCode;
    }
 
    public void setLinkSymbol(final String linkSymbol) {
        this.linkSymbol = linkSymbol;
    }
 
    public void setUpdateModules(final List<String> updateModules) {
        this.updateModules = updateModules;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ScannerProperties) {
            ScannerProperties other = (ScannerProperties) o;
            if (other.canEqual(this)) {
                Object this$open = getOpen();
                Object other$open = other.getOpen();
                if (this$open == null) {
                    if (other$open != null) {
                        return false;
                    }
                } else if (!this$open.equals(other$open)) {
                    return false;
                }
                Object this$appName = getAppName();
                Object other$appName = other.getAppName();
                if (this$appName == null) {
                    if (other$appName != null) {
                        return false;
                    }
                } else if (!this$appName.equals(other$appName)) {
                    return false;
                }
                Object this$appCode = getAppCode();
                Object other$appCode = other.getAppCode();
                if (this$appCode == null) {
                    if (other$appCode != null) {
                        return false;
                    }
                } else if (!this$appCode.equals(other$appCode)) {
                    return false;
                }
                Object this$linkSymbol = getLinkSymbol();
                Object other$linkSymbol = other.getLinkSymbol();
                if (this$linkSymbol == null) {
                    if (other$linkSymbol != null) {
                        return false;
                    }
                } else if (!this$linkSymbol.equals(other$linkSymbol)) {
                    return false;
                }
                Object this$updateModules = getUpdateModules();
                Object other$updateModules = other.getUpdateModules();
                return this$updateModules == null ? other$updateModules == null : this$updateModules.equals(other$updateModules);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ScannerProperties;
    }
 
    public int hashCode() {
        Object $open = getOpen();
        int result = (1 * 59) + ($open == null ? 43 : $open.hashCode());
        Object $appName = getAppName();
        int result2 = (result * 59) + ($appName == null ? 43 : $appName.hashCode());
        Object $appCode = getAppCode();
        int result3 = (result2 * 59) + ($appCode == null ? 43 : $appCode.hashCode());
        Object $linkSymbol = getLinkSymbol();
        int result4 = (result3 * 59) + ($linkSymbol == null ? 43 : $linkSymbol.hashCode());
        Object $updateModules = getUpdateModules();
        return (result4 * 59) + ($updateModules == null ? 43 : $updateModules.hashCode());
    }
 
    public String toString() {
        return "ScannerProperties(open=" + getOpen() + ", appName=" + getAppName() + ", appCode=" + getAppCode() + ", linkSymbol=" + getLinkSymbol() + ", updateModules=" + getUpdateModules() + ")";
    }
 
    public Boolean getOpen() {
        return this.open;
    }
 
    public String getAppName() {
        return this.appName;
    }
 
    public String getAppCode() {
        return this.appCode;
    }
 
    public String getLinkSymbol() {
        return this.linkSymbol;
    }
 
    public List<String> getUpdateModules() {
        return this.updateModules;
    }
}