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

model.Configuration Maven / Gradle / Ivy

package model;

import java.util.Map;

public class Configuration implements Map.Entry {
    private final String key;
    private String value;

    public Configuration(String key, String value) {
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return key;
    }

    public String getValue() {
        return value;
    }

    public String setValue(String value) {
        String old = this.value;
        this.value = value;
        return old;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy