@sap/async-xsjs 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +37 -0
  3. package/README.md +445 -0
  4. package/differences.md +162 -0
  5. package/docs/$.Application.html +262 -0
  6. package/docs/$.Session.html +674 -0
  7. package/docs/$.db.CallableStatement.html +2524 -0
  8. package/docs/$.db.Connection.html +511 -0
  9. package/docs/$.db.ParameterMetaData.html +805 -0
  10. package/docs/$.db.PreparedStatement.html +1796 -0
  11. package/docs/$.db.ResultSet.html +1308 -0
  12. package/docs/$.db.ResultSetMetaData.html +800 -0
  13. package/docs/$.db.SQLException.html +259 -0
  14. package/docs/$.db.html +773 -0
  15. package/docs/$.hdb.ColumnMetadata.html +438 -0
  16. package/docs/$.hdb.Connection.html +663 -0
  17. package/docs/$.hdb.ProcedureResult.html +280 -0
  18. package/docs/$.hdb.ResultSet.html +324 -0
  19. package/docs/$.hdb.ResultSetIterator.html +315 -0
  20. package/docs/$.hdb.ResultSetMetaData.html +259 -0
  21. package/docs/$.hdb.SQLException.html +259 -0
  22. package/docs/$.hdb.html +557 -0
  23. package/docs/$.html +471 -0
  24. package/docs/$.jobs.Job.html +783 -0
  25. package/docs/$.jobs.JobLog.html +380 -0
  26. package/docs/$.jobs.JobSchedules.html +852 -0
  27. package/docs/$.jobs.html +238 -0
  28. package/docs/$.net.Destination.html +304 -0
  29. package/docs/$.net.Mail.Part.html +510 -0
  30. package/docs/$.net.Mail.html +504 -0
  31. package/docs/$.net.SMTPConnection.html +347 -0
  32. package/docs/$.net.html +749 -0
  33. package/docs/$.net.http.Client.html +562 -0
  34. package/docs/$.net.http.Destination.html +237 -0
  35. package/docs/$.net.http.Request.html +567 -0
  36. package/docs/$.net.http.html +292 -0
  37. package/docs/$.security.AntiVirus.html +361 -0
  38. package/docs/$.security.Store.html +636 -0
  39. package/docs/$.security.crypto.html +414 -0
  40. package/docs/$.security.html +247 -0
  41. package/docs/$.security.x509.html +373 -0
  42. package/docs/$.text.analysis.Session.html +983 -0
  43. package/docs/$.text.analysis.html +242 -0
  44. package/docs/$.text.html +246 -0
  45. package/docs/$.text.mining.Session.html +2018 -0
  46. package/docs/$.text.mining.html +242 -0
  47. package/docs/$.trace.html +525 -0
  48. package/docs/$.util.SAXParser.html +955 -0
  49. package/docs/$.util.Zip.html +474 -0
  50. package/docs/$.util.codec.html +414 -0
  51. package/docs/$.util.compression.html +357 -0
  52. package/docs/$.util.html +325 -0
  53. package/docs/$.util.sql.html +290 -0
  54. package/docs/$.web.Body.html +333 -0
  55. package/docs/$.web.EntityList.html +296 -0
  56. package/docs/$.web.TupelList.html +496 -0
  57. package/docs/$.web.WebEntityRequest.html +393 -0
  58. package/docs/$.web.WebEntityResponse.html +392 -0
  59. package/docs/$.web.WebRequest.html +560 -0
  60. package/docs/$.web.WebResponse.html +609 -0
  61. package/docs/$.web.html +246 -0
  62. package/docs/Copyright-SAP.html +39 -0
  63. package/docs/Disclaimer-SAP.html +55 -0
  64. package/docs/index.html +232 -0
  65. package/docs/styles/jsdoc-default.css +382 -0
  66. package/lib/AppConfig.js +36 -0
  67. package/lib/AuditLogger.js +41 -0
  68. package/lib/cacert.js +26 -0
  69. package/lib/ctypes.js +153 -0
  70. package/lib/destinations/dest-provider.js +57 -0
  71. package/lib/index.js +235 -0
  72. package/lib/jobs/Action.js +40 -0
  73. package/lib/jobs/Job.js +100 -0
  74. package/lib/jobs/JobManager.js +150 -0
  75. package/lib/jobs/JobsRuntime.js +133 -0
  76. package/lib/jobs/SqlScriptJobRunner.js +36 -0
  77. package/lib/jobs/XsjsJobRunner.js +78 -0
  78. package/lib/jobs/index.js +11 -0
  79. package/lib/logging.js +16 -0
  80. package/lib/middleware.js +125 -0
  81. package/lib/odata/ODataService.js +125 -0
  82. package/lib/odata/index.js +7 -0
  83. package/lib/odata/service-factory.js +26 -0
  84. package/lib/passport-noauth.js +17 -0
  85. package/lib/routes.js +115 -0
  86. package/lib/runtime.js +740 -0
  87. package/lib/sandbox.js +40 -0
  88. package/lib/utils/XsJsFunctionRunner.js +57 -0
  89. package/lib/utils/XsJsLibFunctionRunner.js +57 -0
  90. package/lib/utils/buffer-utils.js +77 -0
  91. package/lib/utils/compression-utils.js +14 -0
  92. package/lib/utils/date-utils.js +104 -0
  93. package/lib/utils/errors/HttpError.js +20 -0
  94. package/lib/utils/errors/wrap-app-error.js +18 -0
  95. package/lib/utils/index.js +17 -0
  96. package/lib/utils/xs-function-runner.js +51 -0
  97. package/lib/utils/xs-types.js +21 -0
  98. package/lib/utils/xspath.js +36 -0
  99. package/lib/utils/xsstack.js +28 -0
  100. package/lib/views/error.html +28 -0
  101. package/lib/xsjs/Application.js +28 -0
  102. package/lib/xsjs/Locale.js +53 -0
  103. package/lib/xsjs/Session.js +31 -0
  104. package/lib/xsjs/constants.js +71 -0
  105. package/lib/xsjs/db/common/DbBase.js +85 -0
  106. package/lib/xsjs/db/common/DbOptions.js +163 -0
  107. package/lib/xsjs/db/common/arguments-validation.js +102 -0
  108. package/lib/xsjs/db/common/connection.js +12 -0
  109. package/lib/xsjs/db/common/enums.js +93 -0
  110. package/lib/xsjs/db/common/execute-batch.js +38 -0
  111. package/lib/xsjs/db/common/parse-time.js +139 -0
  112. package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
  113. package/lib/xsjs/db/dbapi/Connection.js +78 -0
  114. package/lib/xsjs/db/dbapi/DB.js +39 -0
  115. package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
  116. package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
  117. package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
  118. package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
  119. package/lib/xsjs/db/dbapi/Statement.js +514 -0
  120. package/lib/xsjs/db/dbapi/conversions.js +113 -0
  121. package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
  122. package/lib/xsjs/db/hdbapi/Connection.js +525 -0
  123. package/lib/xsjs/db/hdbapi/HDB.js +32 -0
  124. package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
  125. package/lib/xsjs/db/hdbapi/convert.js +77 -0
  126. package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
  127. package/lib/xsjs/db/index.js +4 -0
  128. package/lib/xsjs/index.js +13 -0
  129. package/lib/xsjs/jobs/Job.js +228 -0
  130. package/lib/xsjs/jobs/Jobs.js +11 -0
  131. package/lib/xsjs/jobs/Logs.js +127 -0
  132. package/lib/xsjs/jobs/Schedule.js +110 -0
  133. package/lib/xsjs/jobs/Schedules.js +108 -0
  134. package/lib/xsjs/net/Destination.js +43 -0
  135. package/lib/xsjs/net/http/Client.js +220 -0
  136. package/lib/xsjs/net/http/HTTP.js +72 -0
  137. package/lib/xsjs/net/index.js +5 -0
  138. package/lib/xsjs/net/smtp/Mail.js +38 -0
  139. package/lib/xsjs/net/smtp/Part.js +30 -0
  140. package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
  141. package/lib/xsjs/net/smtp/index.js +18 -0
  142. package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
  143. package/lib/xsjs/require.js +39 -0
  144. package/lib/xsjs/security/AntiVirus.js +31 -0
  145. package/lib/xsjs/security/Store.js +119 -0
  146. package/lib/xsjs/security/crypto.js +23 -0
  147. package/lib/xsjs/security/index.js +5 -0
  148. package/lib/xsjs/security/x509.js +12 -0
  149. package/lib/xsjs/text/analysis/Session.js +128 -0
  150. package/lib/xsjs/text/index.js +30 -0
  151. package/lib/xsjs/text/mining/Session.js +82 -0
  152. package/lib/xsjs/trace/trace.js +41 -0
  153. package/lib/xsjs/util/SAXParser.js +174 -0
  154. package/lib/xsjs/util/Zip.js +220 -0
  155. package/lib/xsjs/util/codec.js +33 -0
  156. package/lib/xsjs/util/compression.js +24 -0
  157. package/lib/xsjs/util/index.js +22 -0
  158. package/lib/xsjs/web/BasicWebEntity.js +41 -0
  159. package/lib/xsjs/web/EntityList.js +11 -0
  160. package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
  161. package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
  162. package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
  163. package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
  164. package/lib/xsjs/web/WebBody.js +135 -0
  165. package/lib/xsjs/web/WebEntityRequest.js +40 -0
  166. package/lib/xsjs/web/WebEntityResponse.js +26 -0
  167. package/lib/xsjs/web/WebRequest.js +209 -0
  168. package/lib/xsjs/web/WebResponse.js +183 -0
  169. package/lib/xsjs/web/index.js +4 -0
  170. package/lib/xsjs/web/utils/HeadersParser.js +53 -0
  171. package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
  172. package/lib/xsjs/web/utils/MultipartParser.js +163 -0
  173. package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
  174. package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
  175. package/lib/xsjslib/TextBundleWrapper.js +46 -0
  176. package/lib/xsjslib/index.js +11 -0
  177. package/npm-shrinkwrap.json +11540 -0
  178. package/package.json +84 -0
@@ -0,0 +1,609 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Class: WebResponse</title>
7
+ <script src="scripts/prettify/prettify.js"></script>
8
+ <script src="scripts/prettify/lang-css.js"></script>
9
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
10
+
11
+
12
+ <script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
13
+ <script src="scripts/highlight.js"></script>
14
+ <link rel="canonical" href="$.web.WebResponse.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Class: WebResponse</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a><a href="$.web.html">.web</a>.</span>
23
+ WebResponse
24
+ </h2>
25
+ <div class="class-description">$.web.WebResponse</div>
26
+ </header>
27
+ <article>
28
+ <div class="container-overview">
29
+ <dt>
30
+ <h4 class="name" id="WebResponse"><span class="type-signature"></span>new WebResponse<span
31
+ class="signature">()</span><span class="type-signature"></span></h4>
32
+ </dt>
33
+ <dd>
34
+ <div class="description">
35
+ Represents the HTTP response currently being populated.
36
+ </div>
37
+ <dl class="details">
38
+ <dt class="tag-see">See:</dt>
39
+ <dd class="tag-see">
40
+ <ul>
41
+ <li>$.request represents the corresponding request object.</li>
42
+ </ul>
43
+ </dd>
44
+ </dl>
45
+ <h5>Example</h5>
46
+ <pre class="prettyprint"><code>if($.request.method === $.net.http.GET) {
47
+ // get query parameter named id
48
+ var qpId = $.request.parameters.get("id");
49
+
50
+ // handle request for the given id parameter...
51
+ var result = handleRequest(qpId);
52
+
53
+ // send response
54
+ $.response.contentType = "plain/test";
55
+ <b>await </b>$.response.setBody("result: " + result);
56
+ $.response.status = $.net.http.OK;
57
+ } else {
58
+ // unsupported method
59
+ $.response.status = $.net.http.INTERNAL_SERVER_ERROR;
60
+ }</code></pre>
61
+ </dd>
62
+ </div>
63
+ <h3 class="subsection-title">Extends</h3>
64
+ <ul>
65
+ <li><a href="$.web.WebEntityResponse.html">$.web.WebEntityResponse</a></li>
66
+ </ul>
67
+ <h3 class="subsection-title">Members</h3>
68
+ <dl>
69
+ <dt>
70
+ <h4 class="name" id="body"><span class="type-signature"></span>body<span class="type-signature"> :<a
71
+ href="$.web.Body.html">$.web.Body</a>|undefined</span></h4>
72
+ </dt>
73
+ <dd>
74
+ <div class="description">
75
+ The body of the response.
76
+ The value is undefined when there is no body.
77
+ <i>Not</i> available on <a href="$.html#response">$.response</a>.
78
+ </div>
79
+ <h5>Type:</h5>
80
+ <ul>
81
+ <li>
82
+ <span class="param-type"><a href="$.web.Body.html">$.web.Body</a></span>
83
+ |
84
+ <span class="param-type">undefined</span>
85
+ </li>
86
+ </ul>
87
+ <dl class="details">
88
+ <dt class="inherited-from">Inherited From:</dt>
89
+ <dd class="inherited-from">
90
+ <ul class="dummy">
91
+ <li>
92
+ <a href="$.web.WebEntityResponse.html#body">$.web.WebEntityResponse#body</a>
93
+ </li>
94
+ </dd>
95
+ </dl>
96
+ </dd>
97
+ <dt>
98
+ <h4 class="name" id="cacheControl"><span class="type-signature"></span>cacheControl<span
99
+ class="type-signature"> :string</span></h4>
100
+ </dt>
101
+ <dd>
102
+ <div class="description">
103
+ Easy access to the cache control header of the entity
104
+ </div>
105
+ <h5>Type:</h5>
106
+ <ul>
107
+ <li>
108
+ <span class="param-type">string</span>
109
+ </li>
110
+ </ul>
111
+ <dl class="details">
112
+ </dl>
113
+ </dd>
114
+ <dt>
115
+ <h4 class="name" id="contentType"><span class="type-signature"></span>contentType<span
116
+ class="type-signature"> :string</span></h4>
117
+ </dt>
118
+ <dd>
119
+ <div class="description">
120
+ The content type of the entity
121
+ </div>
122
+ <h5>Type:</h5>
123
+ <ul>
124
+ <li>
125
+ <span class="param-type">string</span>
126
+ </li>
127
+ </ul>
128
+ <dl class="details">
129
+ <dt class="inherited-from">Inherited From:</dt>
130
+ <dd class="inherited-from">
131
+ <ul class="dummy">
132
+ <li>
133
+ <a href="$.web.WebEntityResponse.html#contentType">$.web.WebEntityResponse#contentType</a>
134
+ </li>
135
+ </dd>
136
+ </dl>
137
+ </dd>
138
+ <dt>
139
+ <h4 class="name" id="cookies"><span class="type-signature"></span>cookies<span
140
+ class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
141
+ </dt>
142
+ <dd>
143
+ <div class="description">
144
+ The cookies associated with the entity
145
+ </div>
146
+ <h5>Type:</h5>
147
+ <ul>
148
+ <li>
149
+ <span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
150
+ </li>
151
+ </ul>
152
+ <dl class="details">
153
+ </dl>
154
+ </dd>
155
+ <dt>
156
+ <h4 class="name" id="entities"><span class="type-signature"></span>entities<span
157
+ class="type-signature"> :<a href="$.web.EntityList.html">$.web.EntityList</a></span></h4>
158
+ </dt>
159
+ <dd>
160
+ <div class="description">
161
+ The sub-entities of the entity
162
+ </div>
163
+ <h5>Type:</h5>
164
+ <ul>
165
+ <li>
166
+ <span class="param-type"><a href="$.web.EntityList.html">$.web.EntityList</a></span>
167
+ </li>
168
+ </ul>
169
+ <dl class="details">
170
+ <dt class="inherited-from">Inherited From:</dt>
171
+ <dd class="inherited-from">
172
+ <ul class="dummy">
173
+ <li>
174
+ <a href="$.web.WebEntityResponse.html#entities">$.web.WebEntityResponse#entities</a>
175
+ </li>
176
+ </dd>
177
+ </dl>
178
+ </dd>
179
+ <dt>
180
+ <h4 class="name" id="headers"><span class="type-signature"></span>headers<span
181
+ class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
182
+ </dt>
183
+ <dd>
184
+ <div class="description">
185
+ The headers of the entity
186
+ </div>
187
+ <h5>Type:</h5>
188
+ <ul>
189
+ <li>
190
+ <span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
191
+ </li>
192
+ </ul>
193
+ <dl class="details">
194
+ <dt class="inherited-from">Inherited From:</dt>
195
+ <dd class="inherited-from">
196
+ <ul class="dummy">
197
+ <li>
198
+ <a href="$.web.WebEntityResponse.html#headers">$.web.WebEntityResponse#headers</a>
199
+ </li>
200
+ </dd>
201
+ </dl>
202
+ </dd>
203
+ <dt>
204
+ <h4 class="name" id="status"><span class="type-signature"></span>status<span class="type-signature"> :<a
205
+ href="$.net.http.html">$.net.http</a></span></h4>
206
+ </dt>
207
+ <dd>
208
+ <div class="description">
209
+ The HTTP status code of the outgoing HTTP response
210
+ </div>
211
+ <h5>Type:</h5>
212
+ <ul>
213
+ <li>
214
+ <span class="param-type"><a href="$.net.http.html">$.net.http</a></span>
215
+ </li>
216
+ </ul>
217
+ <dl class="details">
218
+ </dl>
219
+ </dd>
220
+ </dl>
221
+ <h3 class="subsection-title">Methods</h3>
222
+ <dl>
223
+ <dt>
224
+ <h4 class="name" id="followUp"><span class="type-signature"></span>followUp<span class="signature">(object)</span><span
225
+ class="type-signature"></span></h4>
226
+ </dt>
227
+ <dd>
228
+ <div class="description">
229
+ Enable running a follow up job that executes in the background.
230
+ </div>
231
+ <h5>Parameters:</h5>
232
+ <table class="params">
233
+ <thead>
234
+ <tr>
235
+ <th>Name</th>
236
+ <th>Type</th>
237
+ <th class="last">Description</th>
238
+ </tr>
239
+ </thead>
240
+ <tbody>
241
+ <tr>
242
+ <td class="name"><code>object</code></td>
243
+ <td class="type">
244
+ <span class="param-type"><a href="$.web.WebResponse.html#followUpObject">$.web.WebResponse~followUpObject</a></span>
245
+ </td>
246
+ <td class="description last">Object specifies script, function and optionally parameter of
247
+ the follow up job.
248
+ </td>
249
+ </tr>
250
+ </tbody>
251
+ </table>
252
+ <dl class="details">
253
+ </dl>
254
+ <h5>Throws:</h5>
255
+ <div class="param-desc">
256
+ Throws an error if the follow up job could not be accepted for execution.
257
+ </div>
258
+ <h5>Example</h5>
259
+ <pre class="prettyprint"><code>$.response.followUp({
260
+ uri : "package:script.xsjs",
261
+ functionName : "func",
262
+ parameter : {
263
+ a : "b"
264
+ }
265
+ });</code></pre>
266
+ </dd>
267
+ <dt>
268
+ <h4 class="name" id="setBody"><span class="type-signature">async </span>setBody<span class="signature">(body, <span
269
+ class="optional">index</span>)</span><span class="type-signature"></span></h4>
270
+ </dt>
271
+ <dd>
272
+ <div class="description">
273
+ Sets the body of the entity;
274
+ The method supports all elemental JavaScript types, ArrayBuffers, WebResponses and
275
+ WebEntityResponses.
276
+ When using WebResponse or WebEntityResponse as arguments, the headers identifying that the body
277
+ is a WebResponse/WebEntityResponse
278
+ (Content-Type: application/http, content-transfer-encoding: binary) are automatically added to
279
+ the parent WebEntityResponse.
280
+ </div>
281
+ <h5>Parameters:</h5>
282
+ <table class="params">
283
+ <thead>
284
+ <tr>
285
+ <th>Name</th>
286
+ <th>Type</th>
287
+ <th>Argument</th>
288
+ <th class="last">Description</th>
289
+ </tr>
290
+ </thead>
291
+ <tbody>
292
+ <tr>
293
+ <td class="name"><code>body</code></td>
294
+ <td class="type">
295
+ <span class="param-type">any</span>
296
+ |
297
+ <span class="param-type">ArrayBuffer</span>
298
+ |
299
+ <span class="param-type"><a href="$.web.WebResponse.html">$.web.WebResponse</a></span>
300
+ |
301
+ <span class="param-type"><a
302
+ href="$.web.WebEntityResponse.html">$.web.WebEntityResponse</a></span>
303
+ </td>
304
+ <td class="attributes">
305
+ </td>
306
+ <td class="description last">Can be any elemental JavaScript type, an ArrayBuffer,
307
+ WebResponse or WebEntityResponse.
308
+ </td>
309
+ </tr>
310
+ <tr>
311
+ <td class="name"><code>index</code></td>
312
+ <td class="type">
313
+ <span class="param-type">Number</span>
314
+ </td>
315
+ <td class="attributes">
316
+ &lt;optional><br>
317
+ </td>
318
+ <td class="description last">If the first argument is of type ResultSet, the number
319
+ specifies the index of a Blob column.
320
+ </td>
321
+ </tr>
322
+ </tbody>
323
+ </table>
324
+ <dl class="details">
325
+ <dt class="inherited-from">Inherited From:</dt>
326
+ <dd class="inherited-from">
327
+ <ul class="dummy">
328
+ <li>
329
+ <a href="$.web.WebEntityResponse.html#setBody">$.web.WebEntityResponse#setBody</a>
330
+ </li>
331
+ </dd>
332
+ <dt class="tag-see">See:</dt>
333
+ <dd class="tag-see">
334
+ <ul>
335
+ <li>$.web.Body.asWebRequest for an example on reading WebRequest objects from multipart
336
+ request body and writing WebResponse objects to multipart response body.
337
+ </li>
338
+ </ul>
339
+ </dd>
340
+ </dl>
341
+ <h5>Throws:</h5>
342
+ <div class="param-desc">
343
+ Throws an error if the given parameters cannot be used as a body.
344
+ </div>
345
+ </dd>
346
+ </dl>
347
+ <h3 class="subsection-title">Type Definitions</h3>
348
+ <dl>
349
+ <dt>
350
+ <h4 class="name" id="followUpObject">followUpObject</h4>
351
+ </dt>
352
+ <dd>
353
+ <h5>Type:</h5>
354
+ <ul>
355
+ <li>
356
+ <span class="param-type">object</span>
357
+ </li>
358
+ </ul>
359
+ <dl class="details">
360
+ <h5 class="subsection-title">Properties:</h5>
361
+ <dl>
362
+ <table class="props">
363
+ <thead>
364
+ <tr>
365
+ <th>Name</th>
366
+ <th>Type</th>
367
+ <th>Argument</th>
368
+ <th class="last">Description</th>
369
+ </tr>
370
+ </thead>
371
+ <tbody>
372
+ <tr>
373
+ <td class="name"><code>uri</code></td>
374
+ <td class="type">
375
+ <span class="param-type">string</span>
376
+ </td>
377
+ <td class="attributes">
378
+ </td>
379
+ <td class="description last">uri absolute or relative path to the xsjs file to
380
+ execute in the follow up job
381
+ </td>
382
+ </tr>
383
+ <tr>
384
+ <td class="name"><code>functionName</code></td>
385
+ <td class="type">
386
+ <span class="param-type">string</span>
387
+ </td>
388
+ <td class="attributes">
389
+ </td>
390
+ <td class="description last">name of the function</td>
391
+ </tr>
392
+ <tr>
393
+ <td class="name"><code>parameter</code></td>
394
+ <td class="type">
395
+ <span class="param-type">object</span>
396
+ |
397
+ <span class="param-type">string</span>
398
+ </td>
399
+ <td class="attributes">
400
+ &lt;optional><br>
401
+ </td>
402
+ <td class="description last">parameter object or JSON string that will be passed to
403
+ the function specified
404
+ </td>
405
+ </tr>
406
+ </tbody>
407
+ </table>
408
+ </dl>
409
+ </dl>
410
+ </dd>
411
+ </dl>
412
+ </article>
413
+ </section>
414
+ </div>
415
+ <nav>
416
+ <h2><a href="index.html">Index</a></h2>
417
+ <h3>Classes</h3>
418
+ <table>
419
+ <tr>
420
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
421
+ <td class="oblique">$.security</td>
422
+ </tr>
423
+ <tr>
424
+ <td><a href="$.Application.html">Application</a></td>
425
+ <td class="oblique">$</td>
426
+ </tr>
427
+ <tr>
428
+ <td><a href="$.web.Body.html">Body</a></td>
429
+ <td class="oblique">$.web</td>
430
+ </tr>
431
+ <tr>
432
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
433
+ <td class="oblique">$.db</td>
434
+ </tr>
435
+ <tr>
436
+ <td><a href="$.net.http.Client.html">Client</a></td>
437
+ <td class="oblique">$.net.http</td>
438
+ </tr>
439
+ <tr>
440
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
441
+ <td class="oblique">$.hdb</td>
442
+ </tr>
443
+ <tr>
444
+ <td><a href="$.db.Connection.html">Connection</a></td>
445
+ <td class="oblique">$.db</td>
446
+ </tr>
447
+ <tr>
448
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
449
+ <td class="oblique">$.hdb</td>
450
+ </tr>
451
+ <tr>
452
+ <td><a href="$.net.Destination.html">Destination</a></td>
453
+ <td class="oblique">$.net</td>
454
+ </tr>
455
+ <tr>
456
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
457
+ <td class="oblique">$.net.http</td>
458
+ </tr>
459
+ <tr>
460
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
461
+ <td class="oblique">$.web</td>
462
+ </tr>
463
+ <tr>
464
+ <td><a href="$.jobs.Job.html">Job</a></td>
465
+ <td class="oblique">$.jobs</td>
466
+ </tr>
467
+ <tr>
468
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
469
+ <td class="oblique">$.jobs</td>
470
+ </tr>
471
+ <tr>
472
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
473
+ <td class="oblique">$.jobs</td>
474
+ </tr>
475
+ <tr>
476
+ <td><a href="$.net.Mail.html">Mail</a></td>
477
+ <td class="oblique">$.net</td>
478
+ </tr>
479
+ <tr>
480
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
481
+ <td class="oblique">$.db</td>
482
+ </tr>
483
+ <tr>
484
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
485
+ <td class="oblique">$.net.Mail</td>
486
+ </tr>
487
+ <tr>
488
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
489
+ <td class="oblique">$.db</td>
490
+ </tr>
491
+ <tr>
492
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
493
+ <td class="oblique">$.hdb</td>
494
+ </tr>
495
+ <tr>
496
+ <td><a href="$.net.http.Request.html">Request</a></td>
497
+ <td class="oblique">$.net.http</td>
498
+ </tr>
499
+ <tr>
500
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
501
+ <td class="oblique">$.db</td>
502
+ </tr>
503
+ <tr>
504
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
505
+ <td class="oblique">$.hdb</td>
506
+ </tr>
507
+ <tr>
508
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
509
+ <td class="oblique">$.hdb</td>
510
+ </tr>
511
+ <tr>
512
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
513
+ <td class="oblique">$.db</td>
514
+ </tr>
515
+ <tr>
516
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
517
+ <td class="oblique">$.hdb</td>
518
+ </tr>
519
+ <tr>
520
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
521
+ <td class="oblique">$.util</td>
522
+ </tr>
523
+ <tr>
524
+ <td><a href="$.Session.html">Session</a></td>
525
+ <td class="oblique">$</td>
526
+ </tr>
527
+ <tr>
528
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
529
+ <td class="oblique">$.text.analysis</td>
530
+ </tr>
531
+ <tr>
532
+ <td><a href="$.text.mining.Session.html">Session</a></td>
533
+ <td class="oblique">$.text.mining</td>
534
+ </tr>
535
+ <tr>
536
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
537
+ <td class="oblique">$.net</td>
538
+ </tr>
539
+ <tr>
540
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
541
+ <td class="oblique">$.db</td>
542
+ </tr>
543
+ <tr>
544
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
545
+ <td class="oblique">$.hdb</td>
546
+ </tr>
547
+ <tr>
548
+ <td><a href="$.security.Store.html">Store</a></td>
549
+ <td class="oblique">$.security</td>
550
+ </tr>
551
+ <tr>
552
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
553
+ <td class="oblique">$.web</td>
554
+ </tr>
555
+ <tr>
556
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
557
+ <td class="oblique">$.web</td>
558
+ </tr>
559
+ <tr>
560
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
561
+ <td class="oblique">$.web</td>
562
+ </tr>
563
+ <tr>
564
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
565
+ <td class="oblique">$.web</td>
566
+ </tr>
567
+ <tr>
568
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
569
+ <td class="oblique">$.web</td>
570
+ </tr>
571
+ <tr>
572
+ <td><a href="$.util.Zip.html">Zip</a></td>
573
+ <td class="oblique">$.util</td>
574
+ </tr>
575
+ </table>
576
+ <h3>Namespaces</h3>
577
+ <ul>
578
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
579
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
580
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
581
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
582
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
583
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
584
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
585
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
586
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
587
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
588
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
589
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
590
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
591
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
592
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
593
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
594
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
595
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
596
+ </ul>
597
+ </nav>
598
+ <br clear="both">
599
+ <footer>
600
+ <a href="Copyright-SAP.html">Copyright</a>
601
+ &
602
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
603
+ </footer>
604
+ <script>prettyPrint();</script>
605
+ <script src="scripts/linenumber.js"></script>
606
+
607
+ </body>
608
+
609
+ </html>