javaee.module.backend.models.profile.AbstractProfileHelperDto 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.profile;
public abstract class AbstractProfileHelperDto< UserDto > extends AbstractProfileHelperDtoParent_2< UserDto > {
public void setName( String name ) {
this.name = name;
}
public void setDescription( String description ) {
this.description = description;
}
}