PersonSearchDto.java

  1. package no.nav.nom.graphql.model;

  2. import java.util.StringJoiner;

  3. @javax.annotation.processing.Generated(
  4.     value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
  5.     date = "2025-01-10T14:34:08+0000"
  6. )
  7. public class PersonSearchDto implements java.io.Serializable {

  8.     private static final long serialVersionUID = 1L;

  9.     @Deprecated
  10.     private String personIdent;
  11.     private String personident;

  12.     public PersonSearchDto() {
  13.     }

  14.     public PersonSearchDto(String personIdent, String personident) {
  15.         this.personIdent = personIdent;
  16.         this.personident = personident;
  17.     }

  18.     @Deprecated
  19.     public String getPersonIdent() {
  20.         return personIdent;
  21.     }
  22.     @Deprecated
  23.     public void setPersonIdent(String personIdent) {
  24.         this.personIdent = personIdent;
  25.     }

  26.     public String getPersonident() {
  27.         return personident;
  28.     }
  29.     public void setPersonident(String personident) {
  30.         this.personident = personident;
  31.     }


  32.     @Override
  33.     public String toString() {
  34.         StringJoiner joiner = new StringJoiner(", ", "{ ", " }");
  35.         if (personIdent != null) {
  36.             joiner.add("personIdent: \"" + personIdent + "\"");
  37.         }
  38.         if (personident != null) {
  39.             joiner.add("personident: \"" + personident + "\"");
  40.         }
  41.         return joiner.toString();
  42.     }

  43.     public static PersonSearchDto.Builder builder() {
  44.         return new PersonSearchDto.Builder();
  45.     }

  46.     @javax.annotation.processing.Generated(
  47.         value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
  48.         date = "2025-01-10T14:34:08+0000"
  49.     )
  50.     public static class Builder {

  51.         private String personIdent;
  52.         private String personident;

  53.         public Builder() {
  54.         }

  55.         @Deprecated
  56.         public Builder setPersonIdent(String personIdent) {
  57.             this.personIdent = personIdent;
  58.             return this;
  59.         }

  60.         public Builder setPersonident(String personident) {
  61.             this.personident = personident;
  62.             return this;
  63.         }


  64.         public PersonSearchDto build() {
  65.             return new PersonSearchDto(personIdent, personident);
  66.         }

  67.     }
  68. }