no.ks.fiks.innsyn.schema.ekstern.domain.mappe.PartV1 Maven / Gradle / Ivy
Show all versions of innsyn-json-schema Show documentation
package no.ks.fiks.innsyn.schema.ekstern.domain.mappe;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Part V1
*
* Part i en mappe
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"type",
"rolle",
"id",
"navn",
"adresse",
"epost",
"telefonnummer",
"kontaktperson"
})
@Generated("jsonschema2pojo")
public class PartV1 {
/**
* Partens type
* (Required)
*
*/
@JsonProperty("type")
@JsonPropertyDescription("Partens type")
private PartV1 .Type type;
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("rolle")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters")
private String rolle;
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("id")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters, men kan v\u00e6re null")
private String id;
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("navn")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters")
private String navn;
/**
* MappeAdresse V1
*
* En adresse
*
*/
@JsonProperty("adresse")
@JsonPropertyDescription("En adresse")
private MappeadresseV1 adresse;
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("epost")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters, men kan v\u00e6re null")
private String epost;
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("telefonnummer")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters, men kan v\u00e6re null")
private String telefonnummer;
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("kontaktperson")
@JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters, men kan v\u00e6re null")
private String kontaktperson;
/**
* Partens type
* (Required)
*
*/
@JsonProperty("type")
public PartV1 .Type getType() {
return type;
}
/**
* Partens type
* (Required)
*
*/
@JsonProperty("type")
public void setType(PartV1 .Type type) {
this.type = type;
}
public PartV1 withType(PartV1 .Type type) {
this.type = type;
return this;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("rolle")
public String getRolle() {
return rolle;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("rolle")
public void setRolle(String rolle) {
this.rolle = rolle;
}
public PartV1 withRolle(String rolle) {
this.rolle = rolle;
return this;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("id")
public String getId() {
return id;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("id")
public void setId(String id) {
this.id = id;
}
public PartV1 withId(String id) {
this.id = id;
return this;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("navn")
public String getNavn() {
return navn;
}
/**
* String Not Blank
*
* Streng som ikke består av kun whitespace characters
* (Required)
*
*/
@JsonProperty("navn")
public void setNavn(String navn) {
this.navn = navn;
}
public PartV1 withNavn(String navn) {
this.navn = navn;
return this;
}
/**
* MappeAdresse V1
*
* En adresse
*
*/
@JsonProperty("adresse")
public MappeadresseV1 getAdresse() {
return adresse;
}
/**
* MappeAdresse V1
*
* En adresse
*
*/
@JsonProperty("adresse")
public void setAdresse(MappeadresseV1 adresse) {
this.adresse = adresse;
}
public PartV1 withAdresse(MappeadresseV1 adresse) {
this.adresse = adresse;
return this;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("epost")
public String getEpost() {
return epost;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("epost")
public void setEpost(String epost) {
this.epost = epost;
}
public PartV1 withEpost(String epost) {
this.epost = epost;
return this;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("telefonnummer")
public String getTelefonnummer() {
return telefonnummer;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("telefonnummer")
public void setTelefonnummer(String telefonnummer) {
this.telefonnummer = telefonnummer;
}
public PartV1 withTelefonnummer(String telefonnummer) {
this.telefonnummer = telefonnummer;
return this;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("kontaktperson")
public String getKontaktperson() {
return kontaktperson;
}
/**
* String Nullable Not Blank
*
* Streng som ikke består av kun whitespace characters, men kan være null
*
*/
@JsonProperty("kontaktperson")
public void setKontaktperson(String kontaktperson) {
this.kontaktperson = kontaktperson;
}
public PartV1 withKontaktperson(String kontaktperson) {
this.kontaktperson = kontaktperson;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(PartV1 .class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("type");
sb.append('=');
sb.append(((this.type == null)?"":this.type));
sb.append(',');
sb.append("rolle");
sb.append('=');
sb.append(((this.rolle == null)?"":this.rolle));
sb.append(',');
sb.append("id");
sb.append('=');
sb.append(((this.id == null)?"":this.id));
sb.append(',');
sb.append("navn");
sb.append('=');
sb.append(((this.navn == null)?"":this.navn));
sb.append(',');
sb.append("adresse");
sb.append('=');
sb.append(((this.adresse == null)?"":this.adresse));
sb.append(',');
sb.append("epost");
sb.append('=');
sb.append(((this.epost == null)?"":this.epost));
sb.append(',');
sb.append("telefonnummer");
sb.append('=');
sb.append(((this.telefonnummer == null)?"":this.telefonnummer));
sb.append(',');
sb.append("kontaktperson");
sb.append('=');
sb.append(((this.kontaktperson == null)?"":this.kontaktperson));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.rolle == null)? 0 :this.rolle.hashCode()));
result = ((result* 31)+((this.epost == null)? 0 :this.epost.hashCode()));
result = ((result* 31)+((this.navn == null)? 0 :this.navn.hashCode()));
result = ((result* 31)+((this.adresse == null)? 0 :this.adresse.hashCode()));
result = ((result* 31)+((this.telefonnummer == null)? 0 :this.telefonnummer.hashCode()));
result = ((result* 31)+((this.id == null)? 0 :this.id.hashCode()));
result = ((result* 31)+((this.type == null)? 0 :this.type.hashCode()));
result = ((result* 31)+((this.kontaktperson == null)? 0 :this.kontaktperson.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof PartV1) == false) {
return false;
}
PartV1 rhs = ((PartV1) other);
return (((((((((this.rolle == rhs.rolle)||((this.rolle!= null)&&this.rolle.equals(rhs.rolle)))&&((this.epost == rhs.epost)||((this.epost!= null)&&this.epost.equals(rhs.epost))))&&((this.navn == rhs.navn)||((this.navn!= null)&&this.navn.equals(rhs.navn))))&&((this.adresse == rhs.adresse)||((this.adresse!= null)&&this.adresse.equals(rhs.adresse))))&&((this.telefonnummer == rhs.telefonnummer)||((this.telefonnummer!= null)&&this.telefonnummer.equals(rhs.telefonnummer))))&&((this.id == rhs.id)||((this.id!= null)&&this.id.equals(rhs.id))))&&((this.type == rhs.type)||((this.type!= null)&&this.type.equals(rhs.type))))&&((this.kontaktperson == rhs.kontaktperson)||((this.kontaktperson!= null)&&this.kontaktperson.equals(rhs.kontaktperson))));
}
/**
* Partens type
*
*/
@Generated("jsonschema2pojo")
public enum Type {
ORGANISASJON("ORGANISASJON"),
PERSON("PERSON");
private final String value;
private final static Map CONSTANTS = new HashMap();
static {
for (PartV1 .Type c: values()) {
CONSTANTS.put(c.value, c);
}
}
Type(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
@JsonValue
public String value() {
return this.value;
}
@JsonCreator
public static PartV1 .Type fromValue(String value) {
PartV1 .Type constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException(value);
} else {
return constant;
}
}
}
}