@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,560 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Class: WebRequest</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.WebRequest.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Class: WebRequest</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a><a href="$.web.html">.web</a>.</span>
23
+ WebRequest
24
+ </h2>
25
+ <div class="class-description">$.web.WebRequest</div>
26
+ </header>
27
+ <article>
28
+ <div class="container-overview">
29
+ <dt>
30
+ <h4 class="name" id="WebRequest"><span class="type-signature"></span>new WebRequest<span
31
+ class="signature">()</span><span class="type-signature"></span></h4>
32
+ </dt>
33
+ <dd>
34
+ <div class="description">
35
+ Represents the client HTTP request currently being processed.
36
+ </div>
37
+ <dl class="details">
38
+ <dt class="tag-see">See:</dt>
39
+ <dd class="tag-see">
40
+ <ul>
41
+ <li>$.response represents the corresponding response 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.WebEntityRequest.html">$.web.WebEntityRequest</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 request.
76
+ The value is undefined when there is no body.
77
+ <i>Only</i> available on <a href="$.html#request">$.request</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.WebEntityRequest.html#body">$.web.WebEntityRequest#body</a>
93
+ </li>
94
+ </dd>
95
+ </dl>
96
+ </dd>
97
+ <dt>
98
+ <h4 class="name" id="contentType"><span class="type-signature"></span>contentType<span
99
+ class="type-signature"> :string</span></h4>
100
+ </dt>
101
+ <dd>
102
+ <div class="description">
103
+ The content type 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
+ <dt class="inherited-from">Inherited From:</dt>
113
+ <dd class="inherited-from">
114
+ <ul class="dummy">
115
+ <li>
116
+ <a href="$.web.WebEntityRequest.html#contentType">$.web.WebEntityRequest#contentType</a>
117
+ </li>
118
+ </dd>
119
+ </dl>
120
+ </dd>
121
+ <dt>
122
+ <h4 class="name" id="cookies"><span class="type-signature"></span>cookies<span
123
+ class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
124
+ </dt>
125
+ <dd>
126
+ <div class="description">
127
+ The cookies associated with the entity
128
+ </div>
129
+ <h5>Type:</h5>
130
+ <ul>
131
+ <li>
132
+ <span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
133
+ </li>
134
+ </ul>
135
+ <dl class="details">
136
+ </dl>
137
+ </dd>
138
+ <dt>
139
+ <h4 class="name" id="entities"><span class="type-signature"></span>entities<span
140
+ class="type-signature"> :<a href="$.web.EntityList.html">$.web.EntityList</a></span></h4>
141
+ </dt>
142
+ <dd>
143
+ <div class="description">
144
+ The sub-entities of the entity
145
+ </div>
146
+ <h5>Type:</h5>
147
+ <ul>
148
+ <li>
149
+ <span class="param-type"><a href="$.web.EntityList.html">$.web.EntityList</a></span>
150
+ </li>
151
+ </ul>
152
+ <dl class="details">
153
+ <dt class="inherited-from">Inherited From:</dt>
154
+ <dd class="inherited-from">
155
+ <ul class="dummy">
156
+ <li>
157
+ <a href="$.web.WebEntityRequest.html#entities">$.web.WebEntityRequest#entities</a>
158
+ </li>
159
+ </dd>
160
+ </dl>
161
+ </dd>
162
+ <dt>
163
+ <h4 class="name" id="headers"><span class="type-signature"></span>headers<span
164
+ class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
165
+ </dt>
166
+ <dd>
167
+ <div class="description">
168
+ The headers of the entity
169
+ </div>
170
+ <h5>Type:</h5>
171
+ <ul>
172
+ <li>
173
+ <span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
174
+ </li>
175
+ </ul>
176
+ <dl class="details">
177
+ <dt class="inherited-from">Inherited From:</dt>
178
+ <dd class="inherited-from">
179
+ <ul class="dummy">
180
+ <li>
181
+ <a href="$.web.WebEntityRequest.html#headers">$.web.WebEntityRequest#headers</a>
182
+ </li>
183
+ </dd>
184
+ </dl>
185
+ </dd>
186
+ <dt>
187
+ <h4 class="name" id="language"><span class="type-signature">&lt;readonly> </span>language<span
188
+ class="type-signature"> :string</span></h4>
189
+ </dt>
190
+ <dd>
191
+ <div class="description">
192
+ Language of the request in IETF (BCP 47) format.
193
+ This property contains the language that is used for the request.
194
+ Application code should rely on this property only.
195
+ The value is a string in the format specified by the IETF (BCP 47)
196
+ standard.
197
+ <p>
198
+ The value of the property is determined by checking the following sources in descending
199
+ precedence:
200
+ <ul>
201
+ <li>Custom x-sap-request-language HTTP header</li>
202
+ <li><a href="$.Application.html#language">$.application.language</a></li>
203
+ <li><a href="$.Session.html#language">$.session.language</a></li>
204
+ <li>Accept-Language HTTP header</li>
205
+ </ul>
206
+ </div>
207
+ <h5>Type:</h5>
208
+ <ul>
209
+ <li>
210
+ <span class="param-type">string</span>
211
+ </li>
212
+ </ul>
213
+ <dl class="details">
214
+ </dl>
215
+ </dd>
216
+ <dt>
217
+ <h4 class="name" id="method"><span class="type-signature"></span>method<span class="type-signature"> :<a
218
+ href="$.net.http.html">$.net.http</a></span></h4>
219
+ </dt>
220
+ <dd>
221
+ <div class="description">
222
+ The HTTP method of the incoming HTTP request
223
+ </div>
224
+ <h5>Type:</h5>
225
+ <ul>
226
+ <li>
227
+ <span class="param-type"><a href="$.net.http.html">$.net.http</a></span>
228
+ </li>
229
+ </ul>
230
+ <dl class="details">
231
+ </dl>
232
+ </dd>
233
+ <dt>
234
+ <h4 class="name" id="parameters"><span class="type-signature"></span>parameters<span
235
+ class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
236
+ </dt>
237
+ <dd>
238
+ <div class="description">
239
+ The parameters of the entity
240
+ </div>
241
+ <h5>Type:</h5>
242
+ <ul>
243
+ <li>
244
+ <span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
245
+ </li>
246
+ </ul>
247
+ <dl class="details">
248
+ <dt class="inherited-from">Inherited From:</dt>
249
+ <dd class="inherited-from">
250
+ <ul class="dummy">
251
+ <li>
252
+ <a href="$.web.WebEntityRequest.html#parameters">$.web.WebEntityRequest#parameters</a>
253
+ </li>
254
+ </dd>
255
+ </dl>
256
+ </dd>
257
+ <dt>
258
+ <h4 class="name" id="path"><span class="type-signature"></span>path<span class="type-signature"> :string</span>
259
+ </h4>
260
+ </dt>
261
+ <dd>
262
+ <div class="description">
263
+ The URL path specified in the request
264
+ </div>
265
+ <h5>Type:</h5>
266
+ <ul>
267
+ <li>
268
+ <span class="param-type">string</span>
269
+ </li>
270
+ </ul>
271
+ <dl class="details">
272
+ </dl>
273
+ <h5>Example</h5>
274
+ <pre class="prettyprint"><code>// http://myhost:8000/exampleapp/path/to/requested/resource.xsjs
275
+ // ^ ^
276
+ // | |
277
+ // ---- request URL path ----</code></pre>
278
+ </dd>
279
+ <dt>
280
+ <h4 class="name" id="queryPath"><span class="type-signature"></span>queryPath<span
281
+ class="type-signature"> :string</span></h4>
282
+ </dt>
283
+ <dd>
284
+ <div class="description">
285
+ The URL query path specified in the request
286
+ </div>
287
+ <h5>Type:</h5>
288
+ <ul>
289
+ <li>
290
+ <span class="param-type">string</span>
291
+ </li>
292
+ </ul>
293
+ <dl class="details">
294
+ </dl>
295
+ <h5>Example</h5>
296
+ <pre class="prettyprint"><code>// http://myhost:8000/exampleapp/resource.xsjs/some/more/options?param=value
297
+ // ^ ^
298
+ // | |
299
+ // -- query path --</code></pre>
300
+ </dd>
301
+ </dl>
302
+ <h3 class="subsection-title">Methods</h3>
303
+ <dl>
304
+ <dt>
305
+ <h4 class="name" id="setBody"><span class="type-signature"></span>setBody<span class="signature">(body, <span
306
+ class="optional">index</span>)</span><span class="type-signature"></span></h4>
307
+ </dt>
308
+ <dd>
309
+ <div class="description">
310
+ Sets the body of the entity;
311
+ the method supports all elemental JavaScript types and ArrayBuffers.
312
+ </div>
313
+ <h5>Parameters:</h5>
314
+ <table class="params">
315
+ <thead>
316
+ <tr>
317
+ <th>Name</th>
318
+ <th>Type</th>
319
+ <th>Argument</th>
320
+ <th class="last">Description</th>
321
+ </tr>
322
+ </thead>
323
+ <tbody>
324
+ <tr>
325
+ <td class="name"><code>body</code></td>
326
+ <td class="type">
327
+ <span class="param-type">any</span>
328
+ |
329
+ <span class="param-type">ArrayBuffer</span>
330
+ </td>
331
+ <td class="attributes">
332
+ </td>
333
+ <td class="description last">Can be any elemental JavaScript type or an ArrayBuffer</td>
334
+ </tr>
335
+ <tr>
336
+ <td class="name"><code>index</code></td>
337
+ <td class="type">
338
+ <span class="param-type">Number</span>
339
+ </td>
340
+ <td class="attributes">
341
+ &lt;optional><br>
342
+ </td>
343
+ <td class="description last">If the first argument is ResultSet, the number specifies the
344
+ index of a Blob column
345
+ </td>
346
+ </tr>
347
+ </tbody>
348
+ </table>
349
+ <dl class="details">
350
+ <dt class="inherited-from">Inherited From:</dt>
351
+ <dd class="inherited-from">
352
+ <ul class="dummy">
353
+ <li>
354
+ <a href="$.web.WebEntityRequest.html#setBody">$.web.WebEntityRequest#setBody</a>
355
+ </li>
356
+ </dd>
357
+ </dl>
358
+ <h5>Throws:</h5>
359
+ <div class="param-desc">
360
+ Throws an error if the parameters are invalid
361
+ </div>
362
+ </dd>
363
+ </dl>
364
+ </article>
365
+ </section>
366
+ </div>
367
+ <nav>
368
+ <h2><a href="index.html">Index</a></h2>
369
+ <h3>Classes</h3>
370
+ <table>
371
+ <tr>
372
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
373
+ <td class="oblique">$.security</td>
374
+ </tr>
375
+ <tr>
376
+ <td><a href="$.Application.html">Application</a></td>
377
+ <td class="oblique">$</td>
378
+ </tr>
379
+ <tr>
380
+ <td><a href="$.web.Body.html">Body</a></td>
381
+ <td class="oblique">$.web</td>
382
+ </tr>
383
+ <tr>
384
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
385
+ <td class="oblique">$.db</td>
386
+ </tr>
387
+ <tr>
388
+ <td><a href="$.net.http.Client.html">Client</a></td>
389
+ <td class="oblique">$.net.http</td>
390
+ </tr>
391
+ <tr>
392
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
393
+ <td class="oblique">$.hdb</td>
394
+ </tr>
395
+ <tr>
396
+ <td><a href="$.db.Connection.html">Connection</a></td>
397
+ <td class="oblique">$.db</td>
398
+ </tr>
399
+ <tr>
400
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
401
+ <td class="oblique">$.hdb</td>
402
+ </tr>
403
+ <tr>
404
+ <td><a href="$.net.Destination.html">Destination</a></td>
405
+ <td class="oblique">$.net</td>
406
+ </tr>
407
+ <tr>
408
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
409
+ <td class="oblique">$.net.http</td>
410
+ </tr>
411
+ <tr>
412
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
413
+ <td class="oblique">$.web</td>
414
+ </tr>
415
+ <tr>
416
+ <td><a href="$.jobs.Job.html">Job</a></td>
417
+ <td class="oblique">$.jobs</td>
418
+ </tr>
419
+ <tr>
420
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
421
+ <td class="oblique">$.jobs</td>
422
+ </tr>
423
+ <tr>
424
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
425
+ <td class="oblique">$.jobs</td>
426
+ </tr>
427
+ <tr>
428
+ <td><a href="$.net.Mail.html">Mail</a></td>
429
+ <td class="oblique">$.net</td>
430
+ </tr>
431
+ <tr>
432
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
433
+ <td class="oblique">$.db</td>
434
+ </tr>
435
+ <tr>
436
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
437
+ <td class="oblique">$.net.Mail</td>
438
+ </tr>
439
+ <tr>
440
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
441
+ <td class="oblique">$.db</td>
442
+ </tr>
443
+ <tr>
444
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
445
+ <td class="oblique">$.hdb</td>
446
+ </tr>
447
+ <tr>
448
+ <td><a href="$.net.http.Request.html">Request</a></td>
449
+ <td class="oblique">$.net.http</td>
450
+ </tr>
451
+ <tr>
452
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
453
+ <td class="oblique">$.db</td>
454
+ </tr>
455
+ <tr>
456
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
457
+ <td class="oblique">$.hdb</td>
458
+ </tr>
459
+ <tr>
460
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
461
+ <td class="oblique">$.hdb</td>
462
+ </tr>
463
+ <tr>
464
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
465
+ <td class="oblique">$.db</td>
466
+ </tr>
467
+ <tr>
468
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
469
+ <td class="oblique">$.hdb</td>
470
+ </tr>
471
+ <tr>
472
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
473
+ <td class="oblique">$.util</td>
474
+ </tr>
475
+ <tr>
476
+ <td><a href="$.Session.html">Session</a></td>
477
+ <td class="oblique">$</td>
478
+ </tr>
479
+ <tr>
480
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
481
+ <td class="oblique">$.text.analysis</td>
482
+ </tr>
483
+ <tr>
484
+ <td><a href="$.text.mining.Session.html">Session</a></td>
485
+ <td class="oblique">$.text.mining</td>
486
+ </tr>
487
+ <tr>
488
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
489
+ <td class="oblique">$.net</td>
490
+ </tr>
491
+ <tr>
492
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
493
+ <td class="oblique">$.db</td>
494
+ </tr>
495
+ <tr>
496
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
497
+ <td class="oblique">$.hdb</td>
498
+ </tr>
499
+ <tr>
500
+ <td><a href="$.security.Store.html">Store</a></td>
501
+ <td class="oblique">$.security</td>
502
+ </tr>
503
+ <tr>
504
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
505
+ <td class="oblique">$.web</td>
506
+ </tr>
507
+ <tr>
508
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
509
+ <td class="oblique">$.web</td>
510
+ </tr>
511
+ <tr>
512
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
513
+ <td class="oblique">$.web</td>
514
+ </tr>
515
+ <tr>
516
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
517
+ <td class="oblique">$.web</td>
518
+ </tr>
519
+ <tr>
520
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
521
+ <td class="oblique">$.web</td>
522
+ </tr>
523
+ <tr>
524
+ <td><a href="$.util.Zip.html">Zip</a></td>
525
+ <td class="oblique">$.util</td>
526
+ </tr>
527
+ </table>
528
+ <h3>Namespaces</h3>
529
+ <ul>
530
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
531
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
532
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
533
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
534
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
535
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
536
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
537
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
538
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
539
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
540
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
541
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
542
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
543
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
544
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
545
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
546
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
547
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
548
+ </ul>
549
+ </nav>
550
+ <br clear="both">
551
+ <footer>
552
+ <a href="Copyright-SAP.html">Copyright</a>
553
+ &
554
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
555
+ </footer>
556
+ <script>prettyPrint();</script>
557
+ <script src="scripts/linenumber.js"></script>
558
+ </body>
559
+
560
+ </html>