BetriebStammdaten.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaInteger, cast_java_lang_Integer } from '../../../java/lang/JavaInteger';
  3. import { JavaLong, cast_java_lang_Long } from '../../../java/lang/JavaLong';
  4. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  5. import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
  6. import { Vector, cast_java_util_Vector } from '../../../java/util/Vector';
  7. import { BetriebAnsprechpartner, cast_de_nrw_schule_svws_core_data_betrieb_BetriebAnsprechpartner } from '../../../core/data/betrieb/BetriebAnsprechpartner';
  8. export class BetriebStammdaten extends JavaObject {
  9. public id : Number | null = null;
  10. public adressArt : Number | null = null;
  11. public name1 : String | null = null;
  12. public name2 : String | null = null;
  13. public strassenname : String | null = null;
  14. public hausnr : String | null = null;
  15. public hausnrzusatz : String | null = null;
  16. public ort_id : Number | null = null;
  17. public plz : String | null = null;
  18. public telefon1 : String | null = null;
  19. public telefon2 : String | null = null;
  20. public fax : String | null = null;
  21. public email : String | null = null;
  22. public bemerkungen : String | null = null;
  23. public sortierung : Number | null = null;
  24. public ausbildungsbetrieb : Boolean | null = null;
  25. public bietetPraktika : Boolean | null = null;
  26. public branche : String | null = null;
  27. public zusatz1 : String | null = null;
  28. public zusatz2 : String | null = null;
  29. public Sichtbar : Boolean | null = null;
  30. public Aenderbar : Boolean | null = null;
  31. public Massnahmentraeger : Boolean | null = null;
  32. public BelehrungISG : Boolean | null = null;
  33. public GU_ID : String | null = null;
  34. public ErwFuehrungszeugnis : Boolean | null = null;
  35. public ExtID : String | null = null;
  36. public ansprechpartner : Vector<BetriebAnsprechpartner> = new Vector();
  37. public constructor() {
  38. super();
  39. }
  40. isTranspiledInstanceOf(name : string): boolean {
  41. return ['de.nrw.schule.svws.core.data.betrieb.BetriebStammdaten'].includes(name);
  42. }
  43. public static transpilerFromJSON(json : string): BetriebStammdaten {
  44. const obj = JSON.parse(json);
  45. const result = new BetriebStammdaten();
  46. result.id = typeof obj.id === "undefined" ? null : obj.id;
  47. result.adressArt = typeof obj.adressArt === "undefined" ? null : obj.adressArt;
  48. result.name1 = typeof obj.name1 === "undefined" ? null : obj.name1;
  49. result.name2 = typeof obj.name2 === "undefined" ? null : obj.name2;
  50. result.strassenname = typeof obj.strassenname === "undefined" ? null : obj.strassenname;
  51. result.hausnr = typeof obj.hausnr === "undefined" ? null : obj.hausnr;
  52. result.hausnrzusatz = typeof obj.hausnrzusatz === "undefined" ? null : obj.hausnrzusatz;
  53. result.ort_id = typeof obj.ort_id === "undefined" ? null : obj.ort_id;
  54. result.plz = typeof obj.plz === "undefined" ? null : obj.plz;
  55. result.telefon1 = typeof obj.telefon1 === "undefined" ? null : obj.telefon1;
  56. result.telefon2 = typeof obj.telefon2 === "undefined" ? null : obj.telefon2;
  57. result.fax = typeof obj.fax === "undefined" ? null : obj.fax;
  58. result.email = typeof obj.email === "undefined" ? null : obj.email;
  59. result.bemerkungen = typeof obj.bemerkungen === "undefined" ? null : obj.bemerkungen;
  60. result.sortierung = typeof obj.sortierung === "undefined" ? null : obj.sortierung;
  61. result.ausbildungsbetrieb = typeof obj.ausbildungsbetrieb === "undefined" ? null : obj.ausbildungsbetrieb;
  62. result.bietetPraktika = typeof obj.bietetPraktika === "undefined" ? null : obj.bietetPraktika;
  63. result.branche = typeof obj.branche === "undefined" ? null : obj.branche;
  64. result.zusatz1 = typeof obj.zusatz1 === "undefined" ? null : obj.zusatz1;
  65. result.zusatz2 = typeof obj.zusatz2 === "undefined" ? null : obj.zusatz2;
  66. result.Sichtbar = typeof obj.Sichtbar === "undefined" ? null : obj.Sichtbar;
  67. result.Aenderbar = typeof obj.Aenderbar === "undefined" ? null : obj.Aenderbar;
  68. result.Massnahmentraeger = typeof obj.Massnahmentraeger === "undefined" ? null : obj.Massnahmentraeger;
  69. result.BelehrungISG = typeof obj.BelehrungISG === "undefined" ? null : obj.BelehrungISG;
  70. result.GU_ID = typeof obj.GU_ID === "undefined" ? null : obj.GU_ID;
  71. result.ErwFuehrungszeugnis = typeof obj.ErwFuehrungszeugnis === "undefined" ? null : obj.ErwFuehrungszeugnis;
  72. result.ExtID = typeof obj.ExtID === "undefined" ? null : obj.ExtID;
  73. if (!!obj.ansprechpartner) {
  74. for (let elem of obj.ansprechpartner) {
  75. result.ansprechpartner?.add(BetriebAnsprechpartner.transpilerFromJSON(JSON.stringify(elem)));
  76. }
  77. }
  78. return result;
  79. }
  80. public static transpilerToJSON(obj : BetriebStammdaten) : string {
  81. let result = '{';
  82. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  83. result += '"adressArt" : ' + ((!obj.adressArt) ? 'null' : obj.adressArt.valueOf()) + ',';
  84. result += '"name1" : ' + ((!obj.name1) ? 'null' : '"' + obj.name1.valueOf() + '"') + ',';
  85. result += '"name2" : ' + ((!obj.name2) ? 'null' : '"' + obj.name2.valueOf() + '"') + ',';
  86. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  87. result += '"hausnr" : ' + ((!obj.hausnr) ? 'null' : '"' + obj.hausnr.valueOf() + '"') + ',';
  88. result += '"hausnrzusatz" : ' + ((!obj.hausnrzusatz) ? 'null' : '"' + obj.hausnrzusatz.valueOf() + '"') + ',';
  89. result += '"ort_id" : ' + ((!obj.ort_id) ? 'null' : obj.ort_id.valueOf()) + ',';
  90. result += '"plz" : ' + ((!obj.plz) ? 'null' : '"' + obj.plz.valueOf() + '"') + ',';
  91. result += '"telefon1" : ' + ((!obj.telefon1) ? 'null' : '"' + obj.telefon1.valueOf() + '"') + ',';
  92. result += '"telefon2" : ' + ((!obj.telefon2) ? 'null' : '"' + obj.telefon2.valueOf() + '"') + ',';
  93. result += '"fax" : ' + ((!obj.fax) ? 'null' : '"' + obj.fax.valueOf() + '"') + ',';
  94. result += '"email" : ' + ((!obj.email) ? 'null' : '"' + obj.email.valueOf() + '"') + ',';
  95. result += '"bemerkungen" : ' + ((!obj.bemerkungen) ? 'null' : '"' + obj.bemerkungen.valueOf() + '"') + ',';
  96. result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ',';
  97. result += '"ausbildungsbetrieb" : ' + ((!obj.ausbildungsbetrieb) ? 'null' : obj.ausbildungsbetrieb.valueOf()) + ',';
  98. result += '"bietetPraktika" : ' + ((!obj.bietetPraktika) ? 'null' : obj.bietetPraktika.valueOf()) + ',';
  99. result += '"branche" : ' + ((!obj.branche) ? 'null' : '"' + obj.branche.valueOf() + '"') + ',';
  100. result += '"zusatz1" : ' + ((!obj.zusatz1) ? 'null' : '"' + obj.zusatz1.valueOf() + '"') + ',';
  101. result += '"zusatz2" : ' + ((!obj.zusatz2) ? 'null' : '"' + obj.zusatz2.valueOf() + '"') + ',';
  102. result += '"Sichtbar" : ' + ((!obj.Sichtbar) ? 'null' : obj.Sichtbar.valueOf()) + ',';
  103. result += '"Aenderbar" : ' + ((!obj.Aenderbar) ? 'null' : obj.Aenderbar.valueOf()) + ',';
  104. result += '"Massnahmentraeger" : ' + ((!obj.Massnahmentraeger) ? 'null' : obj.Massnahmentraeger.valueOf()) + ',';
  105. result += '"BelehrungISG" : ' + ((!obj.BelehrungISG) ? 'null' : obj.BelehrungISG.valueOf()) + ',';
  106. result += '"GU_ID" : ' + ((!obj.GU_ID) ? 'null' : '"' + obj.GU_ID.valueOf() + '"') + ',';
  107. result += '"ErwFuehrungszeugnis" : ' + ((!obj.ErwFuehrungszeugnis) ? 'null' : obj.ErwFuehrungszeugnis.valueOf()) + ',';
  108. result += '"ExtID" : ' + ((!obj.ExtID) ? 'null' : '"' + obj.ExtID.valueOf() + '"') + ',';
  109. if (!obj.ansprechpartner) {
  110. result += '[]';
  111. } else {
  112. result += '[ ';
  113. for (let i : number = 0; i < obj.ansprechpartner.size(); i++) {
  114. let elem = obj.ansprechpartner.get(i);
  115. result += BetriebAnsprechpartner.transpilerToJSON(elem);
  116. if (i < obj.ansprechpartner.size() - 1)
  117. result += ',';
  118. }
  119. result += ' ]' + ',';
  120. }
  121. result = result.slice(0, -1);
  122. result += '}';
  123. return result;
  124. }
  125. public static transpilerToJSONPatch(obj : Partial<BetriebStammdaten>) : string {
  126. let result = '{';
  127. if (typeof obj.id !== "undefined") {
  128. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  129. }
  130. if (typeof obj.adressArt !== "undefined") {
  131. result += '"adressArt" : ' + ((!obj.adressArt) ? 'null' : obj.adressArt.valueOf()) + ',';
  132. }
  133. if (typeof obj.name1 !== "undefined") {
  134. result += '"name1" : ' + ((!obj.name1) ? 'null' : '"' + obj.name1.valueOf() + '"') + ',';
  135. }
  136. if (typeof obj.name2 !== "undefined") {
  137. result += '"name2" : ' + ((!obj.name2) ? 'null' : '"' + obj.name2.valueOf() + '"') + ',';
  138. }
  139. if (typeof obj.strassenname !== "undefined") {
  140. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  141. }
  142. if (typeof obj.hausnr !== "undefined") {
  143. result += '"hausnr" : ' + ((!obj.hausnr) ? 'null' : '"' + obj.hausnr.valueOf() + '"') + ',';
  144. }
  145. if (typeof obj.hausnrzusatz !== "undefined") {
  146. result += '"hausnrzusatz" : ' + ((!obj.hausnrzusatz) ? 'null' : '"' + obj.hausnrzusatz.valueOf() + '"') + ',';
  147. }
  148. if (typeof obj.ort_id !== "undefined") {
  149. result += '"ort_id" : ' + ((!obj.ort_id) ? 'null' : obj.ort_id.valueOf()) + ',';
  150. }
  151. if (typeof obj.plz !== "undefined") {
  152. result += '"plz" : ' + ((!obj.plz) ? 'null' : '"' + obj.plz.valueOf() + '"') + ',';
  153. }
  154. if (typeof obj.telefon1 !== "undefined") {
  155. result += '"telefon1" : ' + ((!obj.telefon1) ? 'null' : '"' + obj.telefon1.valueOf() + '"') + ',';
  156. }
  157. if (typeof obj.telefon2 !== "undefined") {
  158. result += '"telefon2" : ' + ((!obj.telefon2) ? 'null' : '"' + obj.telefon2.valueOf() + '"') + ',';
  159. }
  160. if (typeof obj.fax !== "undefined") {
  161. result += '"fax" : ' + ((!obj.fax) ? 'null' : '"' + obj.fax.valueOf() + '"') + ',';
  162. }
  163. if (typeof obj.email !== "undefined") {
  164. result += '"email" : ' + ((!obj.email) ? 'null' : '"' + obj.email.valueOf() + '"') + ',';
  165. }
  166. if (typeof obj.bemerkungen !== "undefined") {
  167. result += '"bemerkungen" : ' + ((!obj.bemerkungen) ? 'null' : '"' + obj.bemerkungen.valueOf() + '"') + ',';
  168. }
  169. if (typeof obj.sortierung !== "undefined") {
  170. result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ',';
  171. }
  172. if (typeof obj.ausbildungsbetrieb !== "undefined") {
  173. result += '"ausbildungsbetrieb" : ' + ((!obj.ausbildungsbetrieb) ? 'null' : obj.ausbildungsbetrieb.valueOf()) + ',';
  174. }
  175. if (typeof obj.bietetPraktika !== "undefined") {
  176. result += '"bietetPraktika" : ' + ((!obj.bietetPraktika) ? 'null' : obj.bietetPraktika.valueOf()) + ',';
  177. }
  178. if (typeof obj.branche !== "undefined") {
  179. result += '"branche" : ' + ((!obj.branche) ? 'null' : '"' + obj.branche.valueOf() + '"') + ',';
  180. }
  181. if (typeof obj.zusatz1 !== "undefined") {
  182. result += '"zusatz1" : ' + ((!obj.zusatz1) ? 'null' : '"' + obj.zusatz1.valueOf() + '"') + ',';
  183. }
  184. if (typeof obj.zusatz2 !== "undefined") {
  185. result += '"zusatz2" : ' + ((!obj.zusatz2) ? 'null' : '"' + obj.zusatz2.valueOf() + '"') + ',';
  186. }
  187. if (typeof obj.Sichtbar !== "undefined") {
  188. result += '"Sichtbar" : ' + ((!obj.Sichtbar) ? 'null' : obj.Sichtbar.valueOf()) + ',';
  189. }
  190. if (typeof obj.Aenderbar !== "undefined") {
  191. result += '"Aenderbar" : ' + ((!obj.Aenderbar) ? 'null' : obj.Aenderbar.valueOf()) + ',';
  192. }
  193. if (typeof obj.Massnahmentraeger !== "undefined") {
  194. result += '"Massnahmentraeger" : ' + ((!obj.Massnahmentraeger) ? 'null' : obj.Massnahmentraeger.valueOf()) + ',';
  195. }
  196. if (typeof obj.BelehrungISG !== "undefined") {
  197. result += '"BelehrungISG" : ' + ((!obj.BelehrungISG) ? 'null' : obj.BelehrungISG.valueOf()) + ',';
  198. }
  199. if (typeof obj.GU_ID !== "undefined") {
  200. result += '"GU_ID" : ' + ((!obj.GU_ID) ? 'null' : '"' + obj.GU_ID.valueOf() + '"') + ',';
  201. }
  202. if (typeof obj.ErwFuehrungszeugnis !== "undefined") {
  203. result += '"ErwFuehrungszeugnis" : ' + ((!obj.ErwFuehrungszeugnis) ? 'null' : obj.ErwFuehrungszeugnis.valueOf()) + ',';
  204. }
  205. if (typeof obj.ExtID !== "undefined") {
  206. result += '"ExtID" : ' + ((!obj.ExtID) ? 'null' : '"' + obj.ExtID.valueOf() + '"') + ',';
  207. }
  208. if (typeof obj.ansprechpartner !== "undefined") {
  209. if (!obj.ansprechpartner) {
  210. result += '[]';
  211. } else {
  212. result += '[ ';
  213. for (let i : number = 0; i < obj.ansprechpartner.size(); i++) {
  214. let elem = obj.ansprechpartner.get(i);
  215. result += BetriebAnsprechpartner.transpilerToJSON(elem);
  216. if (i < obj.ansprechpartner.size() - 1)
  217. result += ',';
  218. }
  219. result += ' ]' + ',';
  220. }
  221. }
  222. result = result.slice(0, -1);
  223. result += '}';
  224. return result;
  225. }
  226. }
  227. export function cast_de_nrw_schule_svws_core_data_betrieb_BetriebStammdaten(obj : unknown) : BetriebStammdaten {
  228. return obj as BetriebStammdaten;
  229. }