Location.java

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

  2. import lombok.Getter;
  3. import lombok.val;

  4. import java.util.HashMap;
  5. import java.util.LinkedList;
  6. import java.util.List;
  7. import java.util.Map;

  8. @Getter
  9. public class Location {
  10.     private final String code;
  11.     private final String description;
  12.     private final String displayName;
  13.     private final LocationType type;
  14.     private final Location parent;
  15.     private final List<Location> subLocations = new LinkedList<>();

  16.     public Location(String code, String description, LocationType type){
  17.         this.code = code;
  18.         this.description = this.displayName = description;
  19.         this.type = type;
  20.         this.parent = null;
  21.     }

  22.     public Location(String code, String description, LocationType type, Location parent){
  23.         this.code = code;
  24.         this.description = description;
  25.         this.type = type;
  26.         this.parent = parent;
  27.         this.displayName = parent.getDisplayName()+", "+ description;
  28.     }

  29.     public Location newSubLocation(String locationCode, String locationDescription, LocationType locationType){
  30.         val subLocation = new Location(this.code+"-"+locationCode,
  31.                 locationDescription, locationType, this);
  32.         subLocations.add(subLocation);
  33.         return subLocation;
  34.     }

  35.     public Location build(){
  36.         return parent;
  37.     }

  38.     public Map<String, Location> flatMap(){
  39.         val map = new HashMap<String, Location>();
  40.         subLocations.forEach(l -> map.putAll(l.flatMap()));
  41.         map.put(code, this);
  42.         return map;
  43.     }
  44. }