org.webpieces.plugins.properties.ValueInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-properties Show documentation
Show all versions of plugin-properties Show documentation
Webpieces database backed property store
package org.webpieces.plugins.properties;
import org.webpieces.plugins.properties.beans.PropertyInfo;
public class ValueInfo {
private PropertyInfo info;
private Object value;
private String valueAsString;
public ValueInfo(PropertyInfo info, Object objectValue, String valueAsString) {
this.info = info;
this.value = objectValue;
this.valueAsString = valueAsString;
}
public PropertyInfo getInfo() {
return info;
}
public Object getValue() {
return value;
}
public String getValueAsString() {
return valueAsString;
}
}