LocationResponse.java

  1. package no.nav.data.team.location.dto;

  2. import lombok.Builder;
  3. import lombok.Data;
  4. import no.nav.data.team.location.domain.Location;
  5. import no.nav.data.team.location.domain.LocationType;

  6. import java.util.List;

  7. @Data
  8. @Builder
  9. public class LocationResponse {
  10.     String code;
  11.     String description;
  12.     String displayName;
  13.     LocationType type;
  14.     List<LocationResponse> subLocations;

  15.     public static LocationResponse convert(Location location){
  16.         return LocationResponse.builder()
  17.                 .code(location.getCode())
  18.                 .description(location.getDescription())
  19.                 .displayName(location.getDisplayName())
  20.                 .type(location.getType())
  21.                 .subLocations(location.getSubLocations().stream().map(LocationResponse::convert).toList())
  22.                 .build();
  23.     }
  24. }