LehrerStammdaten.ts 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaLong, cast_java_lang_Long } from '../../../java/lang/JavaLong';
  3. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  4. export class LehrerStammdaten extends JavaObject {
  5. public id : number = 0;
  6. public kuerzel : String = "";
  7. public personalTyp : String = "";
  8. public anrede : String | null = null;
  9. public titel : String | null = null;
  10. public amtsbezeichnung : String | null = null;
  11. public nachname : String = "";
  12. public vorname : String = "";
  13. public geschlecht : number = 0;
  14. public geburtsdatum : String | null = null;
  15. public staatsangehoerigkeitID : String | null = null;
  16. public strassenname : String | null = null;
  17. public hausnummer : String | null = null;
  18. public hausnummerZusatz : String | null = null;
  19. public wohnortID : Number | null = null;
  20. public ortsteilID : Number | null = null;
  21. public telefon : String | null = null;
  22. public telefonMobil : String | null = null;
  23. public emailPrivat : String | null = null;
  24. public emailDienstlich : String | null = null;
  25. public foto : String | null = null;
  26. public constructor() {
  27. super();
  28. }
  29. isTranspiledInstanceOf(name : string): boolean {
  30. return ['de.nrw.schule.svws.core.data.lehrer.LehrerStammdaten'].includes(name);
  31. }
  32. public static transpilerFromJSON(json : string): LehrerStammdaten {
  33. const obj = JSON.parse(json);
  34. const result = new LehrerStammdaten();
  35. if (typeof obj.id === "undefined")
  36. throw new Error('invalid json format, missing attribute id');
  37. result.id = obj.id;
  38. if (typeof obj.kuerzel === "undefined")
  39. throw new Error('invalid json format, missing attribute kuerzel');
  40. result.kuerzel = obj.kuerzel;
  41. if (typeof obj.personalTyp === "undefined")
  42. throw new Error('invalid json format, missing attribute personalTyp');
  43. result.personalTyp = obj.personalTyp;
  44. result.anrede = typeof obj.anrede === "undefined" ? null : obj.anrede;
  45. result.titel = typeof obj.titel === "undefined" ? null : obj.titel;
  46. result.amtsbezeichnung = typeof obj.amtsbezeichnung === "undefined" ? null : obj.amtsbezeichnung;
  47. if (typeof obj.nachname === "undefined")
  48. throw new Error('invalid json format, missing attribute nachname');
  49. result.nachname = obj.nachname;
  50. if (typeof obj.vorname === "undefined")
  51. throw new Error('invalid json format, missing attribute vorname');
  52. result.vorname = obj.vorname;
  53. if (typeof obj.geschlecht === "undefined")
  54. throw new Error('invalid json format, missing attribute geschlecht');
  55. result.geschlecht = obj.geschlecht;
  56. result.geburtsdatum = typeof obj.geburtsdatum === "undefined" ? null : obj.geburtsdatum;
  57. result.staatsangehoerigkeitID = typeof obj.staatsangehoerigkeitID === "undefined" ? null : obj.staatsangehoerigkeitID;
  58. result.strassenname = typeof obj.strassenname === "undefined" ? null : obj.strassenname;
  59. result.hausnummer = typeof obj.hausnummer === "undefined" ? null : obj.hausnummer;
  60. result.hausnummerZusatz = typeof obj.hausnummerZusatz === "undefined" ? null : obj.hausnummerZusatz;
  61. result.wohnortID = typeof obj.wohnortID === "undefined" ? null : obj.wohnortID;
  62. result.ortsteilID = typeof obj.ortsteilID === "undefined" ? null : obj.ortsteilID;
  63. result.telefon = typeof obj.telefon === "undefined" ? null : obj.telefon;
  64. result.telefonMobil = typeof obj.telefonMobil === "undefined" ? null : obj.telefonMobil;
  65. result.emailPrivat = typeof obj.emailPrivat === "undefined" ? null : obj.emailPrivat;
  66. result.emailDienstlich = typeof obj.emailDienstlich === "undefined" ? null : obj.emailDienstlich;
  67. result.foto = typeof obj.foto === "undefined" ? null : obj.foto;
  68. return result;
  69. }
  70. public static transpilerToJSON(obj : LehrerStammdaten) : string {
  71. let result = '{';
  72. result += '"id" : ' + obj.id + ',';
  73. result += '"kuerzel" : ' + '"' + obj.kuerzel.valueOf() + '"' + ',';
  74. result += '"personalTyp" : ' + '"' + obj.personalTyp.valueOf() + '"' + ',';
  75. result += '"anrede" : ' + ((!obj.anrede) ? 'null' : '"' + obj.anrede.valueOf() + '"') + ',';
  76. result += '"titel" : ' + ((!obj.titel) ? 'null' : '"' + obj.titel.valueOf() + '"') + ',';
  77. result += '"amtsbezeichnung" : ' + ((!obj.amtsbezeichnung) ? 'null' : '"' + obj.amtsbezeichnung.valueOf() + '"') + ',';
  78. result += '"nachname" : ' + '"' + obj.nachname.valueOf() + '"' + ',';
  79. result += '"vorname" : ' + '"' + obj.vorname.valueOf() + '"' + ',';
  80. result += '"geschlecht" : ' + obj.geschlecht + ',';
  81. result += '"geburtsdatum" : ' + ((!obj.geburtsdatum) ? 'null' : '"' + obj.geburtsdatum.valueOf() + '"') + ',';
  82. result += '"staatsangehoerigkeitID" : ' + ((!obj.staatsangehoerigkeitID) ? 'null' : '"' + obj.staatsangehoerigkeitID.valueOf() + '"') + ',';
  83. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  84. result += '"hausnummer" : ' + ((!obj.hausnummer) ? 'null' : '"' + obj.hausnummer.valueOf() + '"') + ',';
  85. result += '"hausnummerZusatz" : ' + ((!obj.hausnummerZusatz) ? 'null' : '"' + obj.hausnummerZusatz.valueOf() + '"') + ',';
  86. result += '"wohnortID" : ' + ((!obj.wohnortID) ? 'null' : obj.wohnortID.valueOf()) + ',';
  87. result += '"ortsteilID" : ' + ((!obj.ortsteilID) ? 'null' : obj.ortsteilID.valueOf()) + ',';
  88. result += '"telefon" : ' + ((!obj.telefon) ? 'null' : '"' + obj.telefon.valueOf() + '"') + ',';
  89. result += '"telefonMobil" : ' + ((!obj.telefonMobil) ? 'null' : '"' + obj.telefonMobil.valueOf() + '"') + ',';
  90. result += '"emailPrivat" : ' + ((!obj.emailPrivat) ? 'null' : '"' + obj.emailPrivat.valueOf() + '"') + ',';
  91. result += '"emailDienstlich" : ' + ((!obj.emailDienstlich) ? 'null' : '"' + obj.emailDienstlich.valueOf() + '"') + ',';
  92. result += '"foto" : ' + ((!obj.foto) ? 'null' : '"' + obj.foto.valueOf() + '"') + ',';
  93. result = result.slice(0, -1);
  94. result += '}';
  95. return result;
  96. }
  97. public static transpilerToJSONPatch(obj : Partial<LehrerStammdaten>) : string {
  98. let result = '{';
  99. if (typeof obj.id !== "undefined") {
  100. result += '"id" : ' + obj.id + ',';
  101. }
  102. if (typeof obj.kuerzel !== "undefined") {
  103. result += '"kuerzel" : ' + '"' + obj.kuerzel.valueOf() + '"' + ',';
  104. }
  105. if (typeof obj.personalTyp !== "undefined") {
  106. result += '"personalTyp" : ' + '"' + obj.personalTyp.valueOf() + '"' + ',';
  107. }
  108. if (typeof obj.anrede !== "undefined") {
  109. result += '"anrede" : ' + ((!obj.anrede) ? 'null' : '"' + obj.anrede.valueOf() + '"') + ',';
  110. }
  111. if (typeof obj.titel !== "undefined") {
  112. result += '"titel" : ' + ((!obj.titel) ? 'null' : '"' + obj.titel.valueOf() + '"') + ',';
  113. }
  114. if (typeof obj.amtsbezeichnung !== "undefined") {
  115. result += '"amtsbezeichnung" : ' + ((!obj.amtsbezeichnung) ? 'null' : '"' + obj.amtsbezeichnung.valueOf() + '"') + ',';
  116. }
  117. if (typeof obj.nachname !== "undefined") {
  118. result += '"nachname" : ' + '"' + obj.nachname.valueOf() + '"' + ',';
  119. }
  120. if (typeof obj.vorname !== "undefined") {
  121. result += '"vorname" : ' + '"' + obj.vorname.valueOf() + '"' + ',';
  122. }
  123. if (typeof obj.geschlecht !== "undefined") {
  124. result += '"geschlecht" : ' + obj.geschlecht + ',';
  125. }
  126. if (typeof obj.geburtsdatum !== "undefined") {
  127. result += '"geburtsdatum" : ' + ((!obj.geburtsdatum) ? 'null' : '"' + obj.geburtsdatum.valueOf() + '"') + ',';
  128. }
  129. if (typeof obj.staatsangehoerigkeitID !== "undefined") {
  130. result += '"staatsangehoerigkeitID" : ' + ((!obj.staatsangehoerigkeitID) ? 'null' : '"' + obj.staatsangehoerigkeitID.valueOf() + '"') + ',';
  131. }
  132. if (typeof obj.strassenname !== "undefined") {
  133. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  134. }
  135. if (typeof obj.hausnummer !== "undefined") {
  136. result += '"hausnummer" : ' + ((!obj.hausnummer) ? 'null' : '"' + obj.hausnummer.valueOf() + '"') + ',';
  137. }
  138. if (typeof obj.hausnummerZusatz !== "undefined") {
  139. result += '"hausnummerZusatz" : ' + ((!obj.hausnummerZusatz) ? 'null' : '"' + obj.hausnummerZusatz.valueOf() + '"') + ',';
  140. }
  141. if (typeof obj.wohnortID !== "undefined") {
  142. result += '"wohnortID" : ' + ((!obj.wohnortID) ? 'null' : obj.wohnortID.valueOf()) + ',';
  143. }
  144. if (typeof obj.ortsteilID !== "undefined") {
  145. result += '"ortsteilID" : ' + ((!obj.ortsteilID) ? 'null' : obj.ortsteilID.valueOf()) + ',';
  146. }
  147. if (typeof obj.telefon !== "undefined") {
  148. result += '"telefon" : ' + ((!obj.telefon) ? 'null' : '"' + obj.telefon.valueOf() + '"') + ',';
  149. }
  150. if (typeof obj.telefonMobil !== "undefined") {
  151. result += '"telefonMobil" : ' + ((!obj.telefonMobil) ? 'null' : '"' + obj.telefonMobil.valueOf() + '"') + ',';
  152. }
  153. if (typeof obj.emailPrivat !== "undefined") {
  154. result += '"emailPrivat" : ' + ((!obj.emailPrivat) ? 'null' : '"' + obj.emailPrivat.valueOf() + '"') + ',';
  155. }
  156. if (typeof obj.emailDienstlich !== "undefined") {
  157. result += '"emailDienstlich" : ' + ((!obj.emailDienstlich) ? 'null' : '"' + obj.emailDienstlich.valueOf() + '"') + ',';
  158. }
  159. if (typeof obj.foto !== "undefined") {
  160. result += '"foto" : ' + ((!obj.foto) ? 'null' : '"' + obj.foto.valueOf() + '"') + ',';
  161. }
  162. result = result.slice(0, -1);
  163. result += '}';
  164. return result;
  165. }
  166. }
  167. export function cast_de_nrw_schule_svws_core_data_lehrer_LehrerStammdaten(obj : unknown) : LehrerStammdaten {
  168. return obj as LehrerStammdaten;
  169. }