DomainObjectStatus.java

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

  2. import no.nav.data.common.exceptions.ValidationException;

  3. import java.util.Arrays;
  4. import java.util.List;

  5. public enum DomainObjectStatus {
  6.     ACTIVE, PLANNED, INACTIVE;

  7.     public static List<DomainObjectStatus> fromQueryParameter(String statusQueryParameter) {
  8.         var strList = statusQueryParameter.split(",");

  9.         if (strList.length > 3) {
  10.             throw new ValidationException("Status list too long, max is 3");
  11.         }

  12.         var procesedStrList = Arrays.stream(strList).map(String::trim).map(String::toUpperCase).toList();
  13.         procesedStrList.forEach(it -> {
  14.             if (!List.of("ACTIVE", "PLANNED", "INACTIVE").contains(it)) {
  15.                 throw new ValidationException("Invalid status parameter: " + it);
  16.             }
  17.         });


  18.         return procesedStrList.stream().map(DomainObjectStatus::valueOf).toList();
  19.     }

  20.     public boolean isActive() {
  21.         return this == ACTIVE;
  22.     }
  23. }