xiangpei
2025-05-22 631e9d709d7e3f420a2ef8017d1d680f4e32ede6
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
package com.xxl.job.core.biz.model;
 
import java.io.Serializable;
 
/**
 * Created by xuxueli on 2017-05-10 20:22:42
 */
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 + '\'' +
                '}';
    }
}