
nw.orm.eav.values.StringValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nw.orm-h3 Show documentation
Show all versions of nw.orm-h3 Show documentation
Orm wrapper for hibernate supports h3+ to 3.6.10
The newest version!
package nw.orm.eav.values;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import nw.orm.eav.data.EavValue;
// TODO: Auto-generated Javadoc
/**
* The Class StringValue.
*/
@Entity
@Table(name="STR_VAL")
public class StringValue extends EavValue {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 3333955139431299514L;
/** The value. */
@Column(name = "VALUE", nullable = true)
private String value;
/**
* Gets the value.
*
* @return the value
*/
public String getValue() {
return value;
}
/**
* Sets the value.
*
* @param value the new value
*/
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy