All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redkalex.scheduled.xxljob.RegistryParam Maven / Gradle / Ivy

There is a newer version: 2.7.7
Show newest version
package org.redkalex.scheduled.xxljob;

import java.io.Serializable;
import org.redkale.convert.json.JsonConvert;

/** 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 JsonConvert.root().convertTo(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy