All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.nav.sbl.soknadsosialhjelp.soknad.common.JsonKildeSystem Maven / Gradle / Ivy

Go to download

Definisjon av filformater som skal brukes i forbindelse med søknad for økonomisk sosialhjelp

There is a newer version: 1.2024.07.05-15.40-e5d4649f35ad
Show newest version

package no.nav.sbl.soknadsosialhjelp.soknad.common;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;


/**
 * Alltid system eller utdatert.
 * 

* * */ @Generated("jsonschema2pojo") public enum JsonKildeSystem { SYSTEM("system"), UTDATERT("utdatert"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (JsonKildeSystem c: values()) { CONSTANTS.put(c.value, c); } } JsonKildeSystem(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static JsonKildeSystem fromValue(String value) { JsonKildeSystem constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy