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

oms3.dsl.KVP Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package oms3.dsl;

/**
 *
 * @author od
 */
public class KVP {

    String key;
    Object value;

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

    public String getKey() {
        return key;
    }

    public Object getValue() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy