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

no.ks.fiks.innsyn.schema.ekstern.domain.barnevern.LenkeV1 Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version

package no.ks.fiks.innsyn.schema.ekstern.domain.barnevern;

import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Barnevern Lenke V1
 * 

* Lenke * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "navn", "url" }) @Generated("jsonschema2pojo") public class LenkeV1 { /** * 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; /** * String Not Blank *

* Streng som ikke består av kun whitespace characters * (Required) * */ @JsonProperty("url") @JsonPropertyDescription("Streng som ikke best\u00e5r av kun whitespace characters") private String url; /** * 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 LenkeV1 withNavn(String navn) { this.navn = navn; return this; } /** * String Not Blank *

* Streng som ikke består av kun whitespace characters * (Required) * */ @JsonProperty("url") public String getUrl() { return url; } /** * String Not Blank *

* Streng som ikke består av kun whitespace characters * (Required) * */ @JsonProperty("url") public void setUrl(String url) { this.url = url; } public LenkeV1 withUrl(String url) { this.url = url; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(LenkeV1 .class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("navn"); sb.append('='); sb.append(((this.navn == null)?"":this.navn)); sb.append(','); sb.append("url"); sb.append('='); sb.append(((this.url == null)?"":this.url)); 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.navn == null)? 0 :this.navn.hashCode())); result = ((result* 31)+((this.url == null)? 0 :this.url.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof LenkeV1) == false) { return false; } LenkeV1 rhs = ((LenkeV1) other); return (((this.navn == rhs.navn)||((this.navn!= null)&&this.navn.equals(rhs.navn)))&&((this.url == rhs.url)||((this.url!= null)&&this.url.equals(rhs.url)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy