File tree 1 file changed +3
-1
lines changed
integrasjon/rest-klient/src/main/java/no/nav/vedtak/felles/integrasjon/rest
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public enum FpApplication {
22
22
FPWSPROXY ,
23
23
FPOVERSIKT ,
24
24
FPTILGANG ,
25
+ FPINNTEKTSMELDING ,
25
26
NONFP ;
26
27
27
28
private static final Environment ENV = Environment .current ();
@@ -45,11 +46,12 @@ private static Integer lokalPort(FpApplication application) {
45
46
case FPDOKGEN -> 8291 ;
46
47
case FPWSPROXY -> 8292 ;
47
48
case FPOVERSIKT -> 8889 ;
49
+ case FPINNTEKTSMELDING -> 8293 ;
48
50
case NONFP -> throw new IllegalArgumentException ("Utviklerfeil: angitt app er ikke i fp-familien" );
49
51
};
50
52
}
51
53
52
- private static final Set <FpApplication > GCP_APPS = Set .of (FPOVERSIKT );
54
+ private static final Set <FpApplication > GCP_APPS = Set .of (FPOVERSIKT , FPINNTEKTSMELDING );
53
55
54
56
public boolean specified () {
55
57
return !NONFP .equals (this );
You can’t perform that action at this time.
0 commit comments