javaee.module.backend.models.person.detail.AbstractPersonalDetailHelperDtoParent_2 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.person.detail;
import java.util.Date;
abstract class AbstractPersonalDetailHelperDtoParent_2< UserDto > extends AbstractPersonalDetailHelperDtoParent_1< UserDto > {
public String getGender( ) {
return gender;
}
public String getImagePath( ) {
return imagePath;
}
public Date getDateOfBirth( ) {
return dateOfBirth;
}
}