Simplest Mapper
interface SimplestMapper<I : Serializable, E : SimplestEntity<I>> : CRUDMapper<I, E, E, E, E> , CRUDDTOMapper<I, E, E, E, E, E, E> (source)
The simplest variant of CRUDMapper where the only data model is the entity, which is also a CRUDDTOMapper
Parameters
I
Id type of the data
E
Entity type of the data which is a SimplestEntity
Functions
Link copied to clipboard
Mapper to convert given create DTO to a create model
Link copied to clipboard
Mapper to convert given model into an entity to be created
Link copied to clipboard
Mapper to convert from given entity to model
Link copied to clipboard
Mapper to convert from model to DTO
Link copied to clipboard
Mapper to convert given update DTO to a update model