Skip to content

Commit

Permalink
POFIM-23 Endrer navn til FPINNTEKTSMELDING
Browse files Browse the repository at this point in the history
  • Loading branch information
AnjaAalerud committed Jun 13, 2024
1 parent 2729094 commit ff8fc80
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public enum FpApplication {
FPWSPROXY,
FPOVERSIKT,
FPTILGANG,
FTINNTEKTSMELDING,
FPINNTEKTSMELDING,
NONFP;

private static final Environment ENV = Environment.current();
Expand All @@ -46,12 +46,12 @@ private static Integer lokalPort(FpApplication application) {
case FPDOKGEN -> 8291;
case FPWSPROXY -> 8292;
case FPOVERSIKT -> 8889;
case FTINNTEKTSMELDING -> 8293;
case FPINNTEKTSMELDING -> 8293;
case NONFP -> throw new IllegalArgumentException("Utviklerfeil: angitt app er ikke i fp-familien");
};
}

private static final Set<FpApplication> GCP_APPS = Set.of(FPOVERSIKT, FTINNTEKTSMELDING);
private static final Set<FpApplication> GCP_APPS = Set.of(FPOVERSIKT, FPINNTEKTSMELDING);

public boolean specified() {
return !NONFP.equals(this);
Expand Down

0 comments on commit ff8fc80

Please sign in to comment.