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

com.fizzgate.plugin.PluginConfig Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
/*
 *  Copyright (C) 2020 the original author or authors.
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see .
 */

package com.fizzgate.plugin;

import org.apache.commons.lang3.StringUtils;

import com.fizzgate.util.JacksonUtils;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

/**
 * @author hongqiaowei
 */

public class PluginConfig implements Comparable {

    public static final String CUSTOM_CONFIG = "fcK";

    public String              plugin;                                 // tb_plugin.eng_name

    public String              fixedConfig;

    public Map config       =  Collections.emptyMap();

    public int                 order;

    public void setConfig(String confJson) {
        if (StringUtils.isNotBlank(confJson)) {
            Map m = JacksonUtils.readValue(confJson, Map.class);
            if (config == Collections.EMPTY_MAP) {
                config = m;
            } else {
                config.putAll(m);
            }
        }
    }

    public void setFixedConfig(String fixedConfig) {
        if (StringUtils.isNotBlank(fixedConfig)) {
            if (config == Collections.EMPTY_MAP) {
                config = new HashMap<>();
            }
            config.put(CUSTOM_CONFIG, fixedConfig);
        }
    }

    @Override
    public String toString() {
        return JacksonUtils.writeValueAsString(this);
    }

    @Override
    public int compareTo(PluginConfig that) {
        return this.order - that.order;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy