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

com.textrecruit.ustack.uisupport.FieldValueMap Maven / Gradle / Ivy

The newest version!
package com.textrecruit.ustack.uisupport;

public class FieldValueMap {

	private String id;
	private Object value;
	private Object component;

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public Object getValue() {
		return value;
	}

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

	public Object getComponent() {
		return component;
	}

	public void setComponent(Object component) {
		this.component = component;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy