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

fish.focus.uvms.incident.model.dto.KeyValuePair Maven / Gradle / Ivy

The newest version!
package fish.focus.uvms.incident.model.dto;

public class KeyValuePair {
    String key;

    Object value;

    public KeyValuePair() {
    }

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

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public Object getValue() {
        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy