@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,525 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Namespace: trace</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="$.trace.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Namespace: trace</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a>.</span>
23
+ trace
24
+ </h2>
25
+ </header>
26
+ <article>
27
+ <div class="container-overview">
28
+ <div class="description">Namespace: trace</div>
29
+ <dl class="details">
30
+ </dl>
31
+ </div>
32
+ <h3 class="subsection-title">Methods</h3>
33
+ <dl>
34
+ <dt>
35
+ <h4 class="name" id="debug"><span class="type-signature">&lt;static> </span>debug<span
36
+ class="signature">(message)</span><span class="type-signature"></span></h4>
37
+ </dt>
38
+ <dd>
39
+ <div class="description">
40
+ Writes the given message with the trace-level <b>debug</b> to the application trace file
41
+ </div>
42
+ <h5>Parameters:</h5>
43
+ <table class="params">
44
+ <thead>
45
+ <tr>
46
+ <th>Name</th>
47
+ <th>Type</th>
48
+ <th class="last">Description</th>
49
+ </tr>
50
+ </thead>
51
+ <tbody>
52
+ <tr>
53
+ <td class="name"><code>message</code></td>
54
+ <td class="type">
55
+ <span class="param-type">string</span>
56
+ </td>
57
+ <td class="description last">The message to be written to trace</td>
58
+ </tr>
59
+ </tbody>
60
+ </table>
61
+ <dl class="details">
62
+ </dl>
63
+ <h5>Throws:</h5>
64
+ <div class="param-desc">
65
+ Throws an error if message is missing.
66
+ </div>
67
+ </dd>
68
+ <dt>
69
+ <h4 class="name" id="error"><span class="type-signature">&lt;static> </span>error<span
70
+ class="signature">(message)</span><span class="type-signature"></span></h4>
71
+ </dt>
72
+ <dd>
73
+ <div class="description">
74
+ Writes the given message with the trace-level <b>error</b> to the application trace file
75
+ </div>
76
+ <h5>Parameters:</h5>
77
+ <table class="params">
78
+ <thead>
79
+ <tr>
80
+ <th>Name</th>
81
+ <th>Type</th>
82
+ <th class="last">Description</th>
83
+ </tr>
84
+ </thead>
85
+ <tbody>
86
+ <tr>
87
+ <td class="name"><code>message</code></td>
88
+ <td class="type">
89
+ <span class="param-type">string</span>
90
+ </td>
91
+ <td class="description last">The message to be written to trace</td>
92
+ </tr>
93
+ </tbody>
94
+ </table>
95
+ <dl class="details">
96
+ </dl>
97
+ <h5>Throws:</h5>
98
+ <div class="param-desc">
99
+ Throws an error if message is missing.
100
+ </div>
101
+ </dd>
102
+ <dt>
103
+ <h4 class="name" id="fatal"><span class="type-signature">&lt;static> </span>fatal<span
104
+ class="signature">(message)</span><span class="type-signature"></span></h4>
105
+ </dt>
106
+ <dd>
107
+ <div class="description">
108
+ Writes the given message with the trace-level <b>fatal</b> to the application trace file
109
+ </div>
110
+ <h5>Parameters:</h5>
111
+ <table class="params">
112
+ <thead>
113
+ <tr>
114
+ <th>Name</th>
115
+ <th>Type</th>
116
+ <th class="last">Description</th>
117
+ </tr>
118
+ </thead>
119
+ <tbody>
120
+ <tr>
121
+ <td class="name"><code>message</code></td>
122
+ <td class="type">
123
+ <span class="param-type">string</span>
124
+ </td>
125
+ <td class="description last">The message to be written to trace</td>
126
+ </tr>
127
+ </tbody>
128
+ </table>
129
+ <dl class="details">
130
+ </dl>
131
+ <h5>Throws:</h5>
132
+ <div class="param-desc">
133
+ Throws an error if message is missing.
134
+ </div>
135
+ </dd>
136
+ <dt>
137
+ <h4 class="name" id="info"><span class="type-signature">&lt;static> </span>info<span
138
+ class="signature">(message)</span><span class="type-signature"></span></h4>
139
+ </dt>
140
+ <dd>
141
+ <div class="description">
142
+ Writes the given message with the trace-level <b>info</b> to the application trace file
143
+ </div>
144
+ <h5>Parameters:</h5>
145
+ <table class="params">
146
+ <thead>
147
+ <tr>
148
+ <th>Name</th>
149
+ <th>Type</th>
150
+ <th class="last">Description</th>
151
+ </tr>
152
+ </thead>
153
+ <tbody>
154
+ <tr>
155
+ <td class="name"><code>message</code></td>
156
+ <td class="type">
157
+ <span class="param-type">string</span>
158
+ </td>
159
+ <td class="description last">The message to be written to trace</td>
160
+ </tr>
161
+ </tbody>
162
+ </table>
163
+ <dl class="details">
164
+ </dl>
165
+ <h5>Throws:</h5>
166
+ <div class="param-desc">
167
+ Throws an error if message is missing.
168
+ </div>
169
+ </dd>
170
+ <dt>
171
+ <h4 class="name" id="isDebugEnabled"><span
172
+ class="type-signature">&lt;static> </span>isDebugEnabled<span
173
+ class="signature">()</span><span class="type-signature"> &rarr; {Boolean}</span></h4>
174
+ </dt>
175
+ <dd>
176
+ <div class="description">
177
+ Returns if the tracer writes an entry in the application trace file for the trace-level
178
+ <b>debug</b>
179
+ </div>
180
+ <dl class="details">
181
+ </dl>
182
+ <h5>Returns:</h5>
183
+ <div class="param-desc">
184
+ True if the tracer writes an entry for debug level
185
+ </div>
186
+ <dl>
187
+ <dt>
188
+ Type
189
+ </dt>
190
+ <dd>
191
+ <span class="param-type">Boolean</span>
192
+ </dd>
193
+ </dl>
194
+ </dd>
195
+ <dt>
196
+ <h4 class="name" id="isErrorEnabled"><span
197
+ class="type-signature">&lt;static> </span>isErrorEnabled<span
198
+ class="signature">()</span><span class="type-signature"> &rarr; {Boolean}</span></h4>
199
+ </dt>
200
+ <dd>
201
+ <div class="description">
202
+ Returns if the tracer writes an entry in the application trace file for the trace-level
203
+ <b>error</b>
204
+ </div>
205
+ <dl class="details">
206
+ </dl>
207
+ <h5>Returns:</h5>
208
+ <div class="param-desc">
209
+ True if the tracer writes an entry for error level
210
+ </div>
211
+ <dl>
212
+ <dt>
213
+ Type
214
+ </dt>
215
+ <dd>
216
+ <span class="param-type">Boolean</span>
217
+ </dd>
218
+ </dl>
219
+ </dd>
220
+ <dt>
221
+ <h4 class="name" id="isFatalEnabled"><span
222
+ class="type-signature">&lt;static> </span>isFatalEnabled<span
223
+ class="signature">()</span><span class="type-signature"> &rarr; {Boolean}</span></h4>
224
+ </dt>
225
+ <dd>
226
+ <div class="description">
227
+ Returns if the tracer writes an entry in the application trace file for the trace-level
228
+ <b>fatal</b>
229
+ </div>
230
+ <dl class="details">
231
+ </dl>
232
+ <h5>Returns:</h5>
233
+ <div class="param-desc">
234
+ True if the tracer writes an entry for fatal level
235
+ </div>
236
+ <dl>
237
+ <dt>
238
+ Type
239
+ </dt>
240
+ <dd>
241
+ <span class="param-type">Boolean</span>
242
+ </dd>
243
+ </dl>
244
+ </dd>
245
+ <dt>
246
+ <h4 class="name" id="isInfoEnabled"><span
247
+ class="type-signature">&lt;static> </span>isInfoEnabled<span
248
+ class="signature">()</span><span class="type-signature"> &rarr; {Boolean}</span></h4>
249
+ </dt>
250
+ <dd>
251
+ <div class="description">
252
+ Returns if the tracer writes an entry in the application trace file for the trace-level
253
+ <b>info</b>
254
+ </div>
255
+ <dl class="details">
256
+ </dl>
257
+ <h5>Returns:</h5>
258
+ <div class="param-desc">
259
+ True if the tracer writes an entry for info level
260
+ </div>
261
+ <dl>
262
+ <dt>
263
+ Type
264
+ </dt>
265
+ <dd>
266
+ <span class="param-type">Boolean</span>
267
+ </dd>
268
+ </dl>
269
+ </dd>
270
+ <dt>
271
+ <h4 class="name" id="isWarningEnabled"><span class="type-signature">&lt;static> </span>isWarningEnabled<span
272
+ class="signature">()</span><span class="type-signature"> &rarr; {Boolean}</span></h4>
273
+ </dt>
274
+ <dd>
275
+ <div class="description">
276
+ Returns if the tracer writes an entry in the application trace file for the trace-level <b>warning</b>
277
+ </div>
278
+ <dl class="details">
279
+ </dl>
280
+ <h5>Returns:</h5>
281
+ <div class="param-desc">
282
+ True if the tracer writes an entry for warning level
283
+ </div>
284
+ <dl>
285
+ <dt>
286
+ Type
287
+ </dt>
288
+ <dd>
289
+ <span class="param-type">Boolean</span>
290
+ </dd>
291
+ </dl>
292
+ </dd>
293
+ <dt>
294
+ <h4 class="name" id="warning"><span class="type-signature">&lt;static> </span>warning<span
295
+ class="signature">(message)</span><span class="type-signature"></span></h4>
296
+ </dt>
297
+ <dd>
298
+ <div class="description">
299
+ Writes the given message with the trace-level <b>warning</b> to the application trace file
300
+ </div>
301
+ <h5>Parameters:</h5>
302
+ <table class="params">
303
+ <thead>
304
+ <tr>
305
+ <th>Name</th>
306
+ <th>Type</th>
307
+ <th class="last">Description</th>
308
+ </tr>
309
+ </thead>
310
+ <tbody>
311
+ <tr>
312
+ <td class="name"><code>message</code></td>
313
+ <td class="type">
314
+ <span class="param-type">string</span>
315
+ </td>
316
+ <td class="description last">The message to be written to trace</td>
317
+ </tr>
318
+ </tbody>
319
+ </table>
320
+ <dl class="details">
321
+ </dl>
322
+ <h5>Throws:</h5>
323
+ <div class="param-desc">
324
+ Throws an error if message is missing.
325
+ </div>
326
+ </dd>
327
+ </dl>
328
+ </article>
329
+ </section>
330
+ </div>
331
+ <nav>
332
+ <h2><a href="index.html">Index</a></h2>
333
+ <h3>Classes</h3>
334
+ <table>
335
+ <tr>
336
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
337
+ <td class="oblique">$.security</td>
338
+ </tr>
339
+ <tr>
340
+ <td><a href="$.Application.html">Application</a></td>
341
+ <td class="oblique">$</td>
342
+ </tr>
343
+ <tr>
344
+ <td><a href="$.web.Body.html">Body</a></td>
345
+ <td class="oblique">$.web</td>
346
+ </tr>
347
+ <tr>
348
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
349
+ <td class="oblique">$.db</td>
350
+ </tr>
351
+ <tr>
352
+ <td><a href="$.net.http.Client.html">Client</a></td>
353
+ <td class="oblique">$.net.http</td>
354
+ </tr>
355
+ <tr>
356
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
357
+ <td class="oblique">$.hdb</td>
358
+ </tr>
359
+ <tr>
360
+ <td><a href="$.db.Connection.html">Connection</a></td>
361
+ <td class="oblique">$.db</td>
362
+ </tr>
363
+ <tr>
364
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
365
+ <td class="oblique">$.hdb</td>
366
+ </tr>
367
+ <tr>
368
+ <td><a href="$.net.Destination.html">Destination</a></td>
369
+ <td class="oblique">$.net</td>
370
+ </tr>
371
+ <tr>
372
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
373
+ <td class="oblique">$.net.http</td>
374
+ </tr>
375
+ <tr>
376
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
377
+ <td class="oblique">$.web</td>
378
+ </tr>
379
+ <tr>
380
+ <td><a href="$.jobs.Job.html">Job</a></td>
381
+ <td class="oblique">$.jobs</td>
382
+ </tr>
383
+ <tr>
384
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
385
+ <td class="oblique">$.jobs</td>
386
+ </tr>
387
+ <tr>
388
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
389
+ <td class="oblique">$.jobs</td>
390
+ </tr>
391
+ <tr>
392
+ <td><a href="$.net.Mail.html">Mail</a></td>
393
+ <td class="oblique">$.net</td>
394
+ </tr>
395
+ <tr>
396
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
397
+ <td class="oblique">$.db</td>
398
+ </tr>
399
+ <tr>
400
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
401
+ <td class="oblique">$.net.Mail</td>
402
+ </tr>
403
+ <tr>
404
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
405
+ <td class="oblique">$.db</td>
406
+ </tr>
407
+ <tr>
408
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
409
+ <td class="oblique">$.hdb</td>
410
+ </tr>
411
+ <tr>
412
+ <td><a href="$.net.http.Request.html">Request</a></td>
413
+ <td class="oblique">$.net.http</td>
414
+ </tr>
415
+ <tr>
416
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
417
+ <td class="oblique">$.db</td>
418
+ </tr>
419
+ <tr>
420
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
421
+ <td class="oblique">$.hdb</td>
422
+ </tr>
423
+ <tr>
424
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
425
+ <td class="oblique">$.hdb</td>
426
+ </tr>
427
+ <tr>
428
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
429
+ <td class="oblique">$.db</td>
430
+ </tr>
431
+ <tr>
432
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
433
+ <td class="oblique">$.hdb</td>
434
+ </tr>
435
+ <tr>
436
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
437
+ <td class="oblique">$.util</td>
438
+ </tr>
439
+ <tr>
440
+ <td><a href="$.Session.html">Session</a></td>
441
+ <td class="oblique">$</td>
442
+ </tr>
443
+ <tr>
444
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
445
+ <td class="oblique">$.text.analysis</td>
446
+ </tr>
447
+ <tr>
448
+ <td><a href="$.text.mining.Session.html">Session</a></td>
449
+ <td class="oblique">$.text.mining</td>
450
+ </tr>
451
+ <tr>
452
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
453
+ <td class="oblique">$.net</td>
454
+ </tr>
455
+ <tr>
456
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
457
+ <td class="oblique">$.db</td>
458
+ </tr>
459
+ <tr>
460
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
461
+ <td class="oblique">$.hdb</td>
462
+ </tr>
463
+ <tr>
464
+ <td><a href="$.security.Store.html">Store</a></td>
465
+ <td class="oblique">$.security</td>
466
+ </tr>
467
+ <tr>
468
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
469
+ <td class="oblique">$.web</td>
470
+ </tr>
471
+ <tr>
472
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
473
+ <td class="oblique">$.web</td>
474
+ </tr>
475
+ <tr>
476
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
477
+ <td class="oblique">$.web</td>
478
+ </tr>
479
+ <tr>
480
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
481
+ <td class="oblique">$.web</td>
482
+ </tr>
483
+ <tr>
484
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
485
+ <td class="oblique">$.web</td>
486
+ </tr>
487
+ <tr>
488
+ <td><a href="$.util.Zip.html">Zip</a></td>
489
+ <td class="oblique">$.util</td>
490
+ </tr>
491
+ </table>
492
+ <h3>Namespaces</h3>
493
+ <ul>
494
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
495
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
496
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
497
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
498
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
499
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
500
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
501
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
502
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
503
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
504
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
505
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
506
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
507
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
508
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
509
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
510
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
511
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
512
+ </ul>
513
+ </nav>
514
+ <br clear="both">
515
+ <footer>
516
+ <a href="Copyright-SAP.html">Copyright</a>
517
+ &
518
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
519
+ </footer>
520
+ <script>prettyPrint();</script>
521
+ <script src="scripts/linenumber.js"></script>
522
+
523
+ </body>
524
+
525
+ </html>