Advertisement
Rozboris

WSDL2JS example

Sep 24th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function AX26_ComponentInfoVO () {
  2.     this.typeMarker = 'AX26_ComponentInfoVO';
  3.     this._componentId = null;
  4.     this._controlHost = null;
  5.     this._controlPort = null;
  6.     this._description = null;
  7.     this._lastRefreshed = null;
  8.     this._name = null;
  9.     this._required = null;
  10.     this._status = null;
  11.     this._statusChgTime = null;
  12.     this._type = null;
  13.     this._url = null;
  14. }
  15.  
  16. //
  17. // accessor is AX26_ComponentInfoVO.prototype.getComponentId
  18. // element get for componentId
  19. // - element type is {http://www.w3.org/2001/XMLSchema}int
  20. // - optional element
  21. // - nillable
  22. //
  23. // element set for componentId
  24. // setter function is is AX26_ComponentInfoVO.prototype.setComponentId
  25. //
  26. function AX26_ComponentInfoVO_getComponentId() { return this._componentId;}
  27.  
  28. AX26_ComponentInfoVO.prototype.getComponentId = AX26_ComponentInfoVO_getComponentId;
  29.  
  30. function AX26_ComponentInfoVO_setComponentId(value) { this._componentId = value;}
  31.  
  32. AX26_ComponentInfoVO.prototype.setComponentId = AX26_ComponentInfoVO_setComponentId;
  33. //
  34. // accessor is AX26_ComponentInfoVO.prototype.getControlHost
  35. // element get for controlHost
  36. // - element type is {http://www.w3.org/2001/XMLSchema}string
  37. // - optional element
  38. // - nillable
  39. //
  40. // element set for controlHost
  41. // setter function is is AX26_ComponentInfoVO.prototype.setControlHost
  42. //
  43. function AX26_ComponentInfoVO_getControlHost() { return this._controlHost;}
  44.  
  45. AX26_ComponentInfoVO.prototype.getControlHost = AX26_ComponentInfoVO_getControlHost;
  46.  
  47. function AX26_ComponentInfoVO_setControlHost(value) { this._controlHost = value;}
  48.  
  49. AX26_ComponentInfoVO.prototype.setControlHost = AX26_ComponentInfoVO_setControlHost;
  50. //
  51. // accessor is AX26_ComponentInfoVO.prototype.getControlPort
  52. // element get for controlPort
  53. // - element type is {http://www.w3.org/2001/XMLSchema}int
  54. // - optional element
  55. //
  56. // element set for controlPort
  57. // setter function is is AX26_ComponentInfoVO.prototype.setControlPort
  58. //
  59. function AX26_ComponentInfoVO_getControlPort() { return this._controlPort;}
  60.  
  61. AX26_ComponentInfoVO.prototype.getControlPort = AX26_ComponentInfoVO_getControlPort;
  62.  
  63. function AX26_ComponentInfoVO_setControlPort(value) { this._controlPort = value;}
  64.  
  65. AX26_ComponentInfoVO.prototype.setControlPort = AX26_ComponentInfoVO_setControlPort;
  66.  
  67. ....
  68.  
  69.  
  70.  
  71. //
  72. // accessor is AX24_BaseFleetBean.prototype.getGssi
  73. // element get for gssi
  74. // - element type is {http://www.w3.org/2001/XMLSchema}string
  75. // - optional element
  76. // - nillable
  77. //
  78. // element set for gssi
  79. // setter function is is AX24_BaseFleetBean.prototype.setGssi
  80. //
  81. function AX24_BaseFleetBean_getGssi() { return this._gssi;}
  82.  
  83. AX24_BaseFleetBean.prototype.getGssi = AX24_BaseFleetBean_getGssi;
  84.  
  85. function AX24_BaseFleetBean_setGssi(value) { this._gssi = value;}
  86.  
  87. AX24_BaseFleetBean.prototype.setGssi = AX24_BaseFleetBean_setGssi;
  88. //
  89. // accessor is AX24_BaseFleetBean.prototype.getModified
  90. // element get for modified
  91. // - element type is {http://www.w3.org/2001/XMLSchema}boolean
  92. // - optional element
  93. //
  94. // element set for modified
  95. // setter function is is AX24_BaseFleetBean.prototype.setModified
  96. //
  97. function AX24_BaseFleetBean_getModified() { return this._modified;}
  98.  
  99. AX24_BaseFleetBean.prototype.getModified = AX24_BaseFleetBean_getModified;
  100.  
  101.  
  102.  
  103. ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement