javaee.module.backend.models.config.AbstractPreferenceHelperDto 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.models.config;
public abstract class AbstractPreferenceHelperDto extends AbstractPreferenceHelperDtoParent_2 {
public void setPreferenceKey( String preferenceKey ) {
this.preferenceKey = preferenceKey;
}
public void setPreferenceValue( String preferenceValue ) {
this.preferenceValue = preferenceValue;
}
}