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

no.nav.sbl.soknadsosialhjelp.soknad.personalia.JsonSokernavn Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version

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

import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import no.nav.sbl.soknadsosialhjelp.soknad.common.JsonNavn;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;


/**
 * Søkers navn.
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "kilde" }) public class JsonSokernavn extends JsonNavn { /** * Alltid system (og aldri utdatert). *

* * (Required) * */ @JsonProperty("kilde") private JsonSokernavn.Kilde kilde = JsonSokernavn.Kilde.fromValue("system"); @JsonIgnore private Map additionalProperties = new HashMap(); /** * Alltid system (og aldri utdatert). *

* * (Required) * */ @JsonProperty("kilde") public JsonSokernavn.Kilde getKilde() { return kilde; } /** * Alltid system (og aldri utdatert). *

* * (Required) * */ @JsonProperty("kilde") public void setKilde(JsonSokernavn.Kilde kilde) { this.kilde = kilde; } public JsonSokernavn withKilde(JsonSokernavn.Kilde kilde) { this.kilde = kilde; return this; } @Override public JsonSokernavn withFornavn(String fornavn) { super.withFornavn(fornavn); return this; } @Override public JsonSokernavn withMellomnavn(String mellomnavn) { super.withMellomnavn(mellomnavn); return this; } @Override public JsonSokernavn withEtternavn(String etternavn) { super.withEtternavn(etternavn); return this; } @JsonAnyGetter public Map getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } public JsonSokernavn withAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); return this; } @Override public String toString() { return new ToStringBuilder(this).appendSuper(super.toString()).append("kilde", kilde).append("additionalProperties", additionalProperties).toString(); } @Override public int hashCode() { return new HashCodeBuilder().appendSuper(super.hashCode()).append(kilde).append(additionalProperties).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof JsonSokernavn) == false) { return false; } JsonSokernavn rhs = ((JsonSokernavn) other); return new EqualsBuilder().appendSuper(super.equals(other)).append(kilde, rhs.kilde).append(additionalProperties, rhs.additionalProperties).isEquals(); } public enum Kilde { SYSTEM("system"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (JsonSokernavn.Kilde c: values()) { CONSTANTS.put(c.value, c); } } private Kilde(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static JsonSokernavn.Kilde fromValue(String value) { JsonSokernavn.Kilde constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy