com.cleverpine.cpspringdatacrud.mapper.PresentationLayerMapper 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.Mapping;
import java.util.List;
public interface PresentationLayerMapper {
@Mapping(target = "id", ignore = true)
BusinessLayerDTO presentationLayerDTOToBusinessLayerDTO(PresentationLayerDTO presentationLayerDTO);
PresentationLayerDTO businessLayerDTOToPresentationLayerDTO(BusinessLayerDTO businessLayerDTO);
List businessLayerDTOListToPresentationLayerDTOList(List businessLayerDTOList);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy