Skip to content
Snippets Groups Projects
Commit 82af0fb9 authored by Krzysztof Witukiewicz's avatar Krzysztof Witukiewicz
Browse files

OZG-7608 OZG-7729 Add list of ignored target fields

parent 723caac7
Branches
Tags
1 merge request!17OZG-7608 OZG-7729 gRPC endpoint for deleted Vorgaenge
......@@ -27,10 +27,8 @@ import java.util.Optional;
import org.mapstruct.Mapper;
import org.mapstruct.Mapping;
import org.mapstruct.NullValueCheckStrategy;
import org.mapstruct.NullValuePropertyMappingStrategy;
@Mapper(nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE, nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
@Mapper
interface VorgangStubMapper {
@Mapping(target = "deletedAt", ignore = true)
......@@ -62,5 +60,10 @@ interface VorgangStubMapper {
}
}
@Mapping(target = "aktenzeichen", ignore = true)
@Mapping(target = "assignedTo", ignore = true)
@Mapping(target = "nummer", ignore = true)
@Mapping(target = "clientAttributesList", ignore = true)
@Mapping(target = "formEngineName", ignore = true)
GrpcVorgangHeader toGrpcVorgangHeader(VorgangStub vorgangStub);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment