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

io.mosip.registration.controller.vo.GlobalParamVO Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
package io.mosip.registration.controller.vo;

import javafx.beans.property.SimpleStringProperty;

public class GlobalParamVO {
	
	private SimpleStringProperty key;
	private SimpleStringProperty serverValue;
	private SimpleStringProperty localValue;
	
	public String getKey() {
		return key.get();
	}

	public void setKey(String key) {
		this.key = new SimpleStringProperty(key);
	}
	
	public String getServerValue() {
		return serverValue.get();
	}

	public void setServerValue(String serverValue) {
		this.serverValue = new SimpleStringProperty(serverValue);
	}
	
	public String getLocalValue() {
		return localValue.get();
	}

	public void setLocalValue(String localValue) {
		this.localValue = new SimpleStringProperty(localValue);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy