Skip to content

Commit

Permalink
Update DGC-Lib to 0.4.2 (#56)
Browse files Browse the repository at this point in the history
Rename TrustListMapper
  • Loading branch information
f11h authored May 10, 2021
1 parent c6a7d17 commit ac6d8cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<dependency>
<groupId>eu.europa.ec.dgc</groupId>
<artifactId>dgc-lib</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.4.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import eu.europa.ec.dgc.gateway.restapi.dto.ProblemReportDto;
import eu.europa.ec.dgc.gateway.restapi.dto.TrustListDto;
import eu.europa.ec.dgc.gateway.restapi.filter.CertificateAuthenticationRequired;
import eu.europa.ec.dgc.gateway.restapi.mapper.TrustListMapper;
import eu.europa.ec.dgc.gateway.restapi.mapper.GwTrustListMapper;
import eu.europa.ec.dgc.gateway.service.TrustListService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
Expand Down Expand Up @@ -55,7 +55,7 @@ public class TrustListController {

private final TrustListService trustListService;

private final TrustListMapper trustListMapper;
private final GwTrustListMapper trustListMapper;

/**
* TrustList Download Controller.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.mapstruct.Mapper;

@Mapper(componentModel = "spring")
public interface TrustListMapper {
public interface GwTrustListMapper {

TrustListDto trustListToTrustListDto(TrustList trustList);

Expand Down

0 comments on commit ac6d8cf

Please sign in to comment.