All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cleverpine.cpspringdatacrud.mapper.BusinessLayerMapper Maven / Gradle / Ivy

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