LehrerStammdaten.js 9.6 KB

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