com.cleverpine.cpspringdatacrud.mapper.BusinessLayerMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-spring-data-crud Show documentation
Show all versions of cp-spring-data-crud Show documentation
Library providing generic classes and implementation for basic CRUD operations
The newest version!
package com.cleverpine.cpspringdatacrud.mapper;
import org.mapstruct.BeanMapping;
import org.mapstruct.MappingTarget;
import org.mapstruct.NullValuePropertyMappingStrategy;
public interface BusinessLayerMapper {
Entity businessLayerDTOToEntity(BusinessLayerDTO businessLayerDTO);
@BeanMapping(nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE)
Entity businessLayerDTOToEntity(@MappingTarget Entity entity, BusinessLayerDTO businessLayerDTO);
BusinessLayerDTO entityToBusinessLayerDTO(Entity entity);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy