javaee.module.backend.entities.config.AbstractPreferenceHelperParent_1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.entities.config;
import javax.persistence.Column;
import javax.persistence.MappedSuperclass;
import javaee.module.backend.entities.entity.AbstractEntityHelper;
@MappedSuperclass
abstract class AbstractPreferenceHelperParent_1 extends AbstractEntityHelper {
@Column( name = "PREFERENCE_KEY", length = 100, nullable = false )
protected String preferenceKey;
@Column( name = "PREFERENCE_VALUE", length = 200, nullable = false )
protected String preferenceValue;
}