org.vebqa.vebtal.model.ConfigurationCatalog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vebtal-api Show documentation
Show all versions of vebtal-api Show documentation
define common api, interfaces and models for opental
package org.vebqa.vebtal.model;
import javafx.beans.property.SimpleStringProperty;
@SuppressWarnings("restriction")
public class ConfigurationCatalog {
private final SimpleStringProperty key;
private final SimpleStringProperty value;
public ConfigurationCatalog(String aKey, String aValue) {
this.key = new SimpleStringProperty(aKey);
this.value = new SimpleStringProperty(aValue);
}
public String getKey() {
return key.get();
}
public String getValue() {
return value.get();
}
}