linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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
package com.xxl.job.core.biz.model;
 
import java.io.Serializable;
 
/**
 * @author liyh
 */
public class RegistryParam implements Serializable {
    private static final long serialVersionUID = 42L;
 
    private String registryGroup;
    private String registryKey;
    private String registryValue;
 
    public RegistryParam() {
    }
 
    public RegistryParam(String registryGroup, String registryKey, String registryValue) {
        this.registryGroup = registryGroup;
        this.registryKey = registryKey;
        this.registryValue = registryValue;
    }
 
    public String getRegistryGroup() {
        return registryGroup;
    }
 
    public void setRegistryGroup(String registryGroup) {
        this.registryGroup = registryGroup;
    }
 
    public String getRegistryKey() {
        return registryKey;
    }
 
    public void setRegistryKey(String registryKey) {
        this.registryKey = registryKey;
    }
 
    public String getRegistryValue() {
        return registryValue;
    }
 
    public void setRegistryValue(String registryValue) {
        this.registryValue = registryValue;
    }
 
    @Override
    public String toString() {
        return "RegistryParam{" +
                "registryGroup='" + registryGroup + '\'' +
                ", registryKey='" + registryKey + '\'' +
                ", registryValue='" + registryValue + '\'' +
                '}';
    }
}