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

no.nav.sbl.soknadsosialhjelp.soknad.bosituasjon.JsonBosituasjon Maven / Gradle / Ivy

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

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

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.JsonKildeBruker;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;


/**
 * Bosituasjon
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "kilde", "botype", "antallPersoner" }) public class JsonBosituasjon { /** * Alltid bruker eller utdatert. *

* * (Required) * */ @JsonProperty("kilde") private JsonKildeBruker kilde = JsonKildeBruker.fromValue("bruker"); @JsonProperty("botype") private JsonBosituasjon.Botype botype; @JsonProperty("antallPersoner") private Integer antallPersoner; @JsonIgnore private Map additionalProperties = new HashMap(); /** * Alltid bruker eller utdatert. *

* * (Required) * */ @JsonProperty("kilde") public JsonKildeBruker getKilde() { return kilde; } /** * Alltid bruker eller utdatert. *

* * (Required) * */ @JsonProperty("kilde") public void setKilde(JsonKildeBruker kilde) { this.kilde = kilde; } public JsonBosituasjon withKilde(JsonKildeBruker kilde) { this.kilde = kilde; return this; } @JsonProperty("botype") public JsonBosituasjon.Botype getBotype() { return botype; } @JsonProperty("botype") public void setBotype(JsonBosituasjon.Botype botype) { this.botype = botype; } public JsonBosituasjon withBotype(JsonBosituasjon.Botype botype) { this.botype = botype; return this; } @JsonProperty("antallPersoner") public Integer getAntallPersoner() { return antallPersoner; } @JsonProperty("antallPersoner") public void setAntallPersoner(Integer antallPersoner) { this.antallPersoner = antallPersoner; } public JsonBosituasjon withAntallPersoner(Integer antallPersoner) { this.antallPersoner = antallPersoner; return this; } @JsonAnyGetter public Map getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } public JsonBosituasjon withAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); return this; } @Override public String toString() { return new ToStringBuilder(this).append("kilde", kilde).append("botype", botype).append("antallPersoner", antallPersoner).append("additionalProperties", additionalProperties).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(kilde).append(botype).append(additionalProperties).append(antallPersoner).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof JsonBosituasjon) == false) { return false; } JsonBosituasjon rhs = ((JsonBosituasjon) other); return new EqualsBuilder().append(kilde, rhs.kilde).append(botype, rhs.botype).append(additionalProperties, rhs.additionalProperties).append(antallPersoner, rhs.antallPersoner).isEquals(); } public enum Botype { EIER("eier"), LEIER("leier"), KOMMUNAL("kommunal"), INGEN("ingen"), INSTITUSJON("institusjon"), KRISESENTER("krisesenter"), FENGSEL("fengsel"), VENNER("venner"), FORELDRE("foreldre"), FAMILIE("familie"), ANNET("annet"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (JsonBosituasjon.Botype c: values()) { CONSTANTS.put(c.value, c); } } private Botype(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static JsonBosituasjon.Botype fromValue(String value) { JsonBosituasjon.Botype constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy