LocationSimplePathResponse.java

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

  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import lombok.NoArgsConstructor;
  5. import lombok.experimental.SuperBuilder;
  6. import no.nav.data.team.location.domain.Location;

  7. @Data
  8. @SuperBuilder
  9. @NoArgsConstructor
  10. @AllArgsConstructor
  11. public class LocationSimplePathResponse extends LocationSimpleResponse {
  12.     LocationSimplePathResponse parent;

  13.     public static LocationSimplePathResponse convert(Location location){
  14.         return location != null ? LocationSimplePathResponse.builder()
  15.                 .code(location.getCode())
  16.                 .description(location.getDescription())
  17.                 .type(location.getType())
  18.                 .displayName(location.getDisplayName())
  19.                 .parent(convert(location.getParent()))
  20.                 .build() : null;
  21.     }
  22. }