@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,380 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Class: JobLog</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="$.jobs.JobLog.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Class: JobLog</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a><a href="$.jobs.html">.jobs</a>.</span>
23
+ JobLog
24
+ </h2>
25
+ <div class="class-description">$.jobs.JobLog provide access to the log entries of a scheduled job.</div>
26
+ </header>
27
+ <article>
28
+ <div class="container-overview">
29
+ <dt>
30
+ <h4 class="name" id="JobLog"><span class="type-signature"></span>new JobLog<span class="signature">()</span><span
31
+ class="type-signature"> -> { Promise }</span></h4>
32
+ </dt>
33
+ <dd>
34
+ <div class="description">
35
+ A scheduled jobs entries in the logs.
36
+ </div>
37
+ <dl class="details">
38
+ </dl>
39
+ <h5>Example</h5>
40
+ <pre class="prettyprint"><code>var jobLogArray = myjob.schedules[i].logs.jobLog;
41
+ var newestLogEntry = myjob.schedules[i].logs.jobLog[0];
42
+ var newestStatus = myjob.schedules[i].logs.jobLog[0].status;</code></pre>
43
+ </dd>
44
+ </div>
45
+ <h3 class="subsection-title">Members</h3>
46
+ <dl>
47
+ <dt>
48
+ <h4 class="name" id="jobLogs"><span class="type-signature"></span>jobLogs<span
49
+ class="type-signature"> :Array.&lt;<a href="$.jobs.JobLog.html#JobLogObject">$.jobs.JobLog~JobLogObject</a>></span>
50
+ </h4>
51
+ </dt>
52
+ <dd>
53
+ <div class="description">
54
+ Exposes all entries in the job log as array of <a href="$.jobs.JobLog.html#JobLogObject">$.jobs.JobLog~JobLogObject</a>
55
+ objects. The array is ordered by planned_time in descending order.
56
+ </div>
57
+ <h5>Type:</h5>
58
+ <ul>
59
+ <li>
60
+ <span class="param-type">Array.&lt;<a href="$.jobs.JobLog.html#JobLogObject">$.jobs.JobLog~JobLogObject</a>></span>
61
+ </li>
62
+ </ul>
63
+ <dl class="details">
64
+ </dl>
65
+ </dd>
66
+ </dl>
67
+ <h3 class="subsection-title">Type Definitions</h3>
68
+ <dl>
69
+ <dt>
70
+ <h4 class="name" id="JobLogObject">JobLogObject</h4>
71
+ </dt>
72
+ <dd>
73
+ <h5>Type:</h5>
74
+ <ul>
75
+ <li>
76
+ <span class="param-type">object</span>
77
+ </li>
78
+ </ul>
79
+ <dl class="details">
80
+ <h5 class="subsection-title">Properties:</h5>
81
+ <dl>
82
+ <table class="props">
83
+ <thead>
84
+ <tr>
85
+ <th>Name</th>
86
+ <th>Type</th>
87
+ <th class="last">Description</th>
88
+ </tr>
89
+ </thead>
90
+ <tbody>
91
+ <tr>
92
+ <td class="name"><code>planned_time</code></td>
93
+ <td class="type">
94
+ <span class="param-type">Date</span>
95
+ </td>
96
+ <td class="description last">Planned point in time for execution of corresponding
97
+ schedule.
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td class="name"><code>status</code></td>
102
+ <td class="type">
103
+ <span class="param-type">String</span>
104
+ </td>
105
+ <td class="description last">Status during execution of corresponding schedule.</td>
106
+ </tr>
107
+ <tr>
108
+ <td class="name"><code>error_message</code></td>
109
+ <td class="type">
110
+ <span class="param-type">String</span>
111
+ </td>
112
+ <td class="description last">Error message of execution of corresponding schedule.
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="name"><code>started_at</code></td>
117
+ <td class="type">
118
+ <span class="param-type">Date</span>
119
+ </td>
120
+ <td class="description last">Point in time when execution of corresponding schedule
121
+ started.
122
+ </td>
123
+ </tr>
124
+ <tr>
125
+ <td class="name"><code>finished_at</code></td>
126
+ <td class="type">
127
+ <span class="param-type">Date</span>
128
+ </td>
129
+ <td class="description last">Point in time when execution of corresponding schedule
130
+ finished.
131
+ </td>
132
+ </tr>
133
+ <tr>
134
+ <td class="name"><code>host</code></td>
135
+ <td class="type">
136
+ <span class="param-type">String</span>
137
+ </td>
138
+ <td class="description last">Hostname.</td>
139
+ </tr>
140
+ <tr>
141
+ <td class="name"><code>port</code></td>
142
+ <td class="type">
143
+ <span class="param-type">String</span>
144
+ </td>
145
+ <td class="description last">Port.</td>
146
+ </tr>
147
+ <tr>
148
+ <td class="name"><code>action</code></td>
149
+ <td class="type">
150
+ <span class="param-type">String</span>
151
+ </td>
152
+ <td class="description last">Action executed with the corresponding schedule.</td>
153
+ </tr>
154
+ <tr>
155
+ <td class="name"><code>user</code></td>
156
+ <td class="type">
157
+ <span class="param-type">String</span>
158
+ </td>
159
+ <td class="description last">Username.</td>
160
+ </tr>
161
+ <tr>
162
+ <td class="name"><code>locale</code></td>
163
+ <td class="type">
164
+ <span class="param-type">String</span>
165
+ </td>
166
+ <td class="description last">Locale set for execution of the corresponding
167
+ schedule.
168
+ </td>
169
+ </tr>
170
+ <tr>
171
+ <td class="name"><code>thread_id</code></td>
172
+ <td class="type">
173
+ <span class="param-type">ctypes.Int64</span>
174
+ </td>
175
+ <td class="description last">Thread Id of thread that executed this XSJob.</td>
176
+ </tr>
177
+ </tbody>
178
+ </table>
179
+ </dl>
180
+ </dl>
181
+ </dd>
182
+ </dl>
183
+ </article>
184
+ </section>
185
+ </div>
186
+ <nav>
187
+ <h2><a href="index.html">Index</a></h2>
188
+ <h3>Classes</h3>
189
+ <table>
190
+ <tr>
191
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
192
+ <td class="oblique">$.security</td>
193
+ </tr>
194
+ <tr>
195
+ <td><a href="$.Application.html">Application</a></td>
196
+ <td class="oblique">$</td>
197
+ </tr>
198
+ <tr>
199
+ <td><a href="$.web.Body.html">Body</a></td>
200
+ <td class="oblique">$.web</td>
201
+ </tr>
202
+ <tr>
203
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
204
+ <td class="oblique">$.db</td>
205
+ </tr>
206
+ <tr>
207
+ <td><a href="$.net.http.Client.html">Client</a></td>
208
+ <td class="oblique">$.net.http</td>
209
+ </tr>
210
+ <tr>
211
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
212
+ <td class="oblique">$.hdb</td>
213
+ </tr>
214
+ <tr>
215
+ <td><a href="$.db.Connection.html">Connection</a></td>
216
+ <td class="oblique">$.db</td>
217
+ </tr>
218
+ <tr>
219
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
220
+ <td class="oblique">$.hdb</td>
221
+ </tr>
222
+ <tr>
223
+ <td><a href="$.net.Destination.html">Destination</a></td>
224
+ <td class="oblique">$.net</td>
225
+ </tr>
226
+ <tr>
227
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
228
+ <td class="oblique">$.net.http</td>
229
+ </tr>
230
+ <tr>
231
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
232
+ <td class="oblique">$.web</td>
233
+ </tr>
234
+ <tr>
235
+ <td><a href="$.jobs.Job.html">Job</a></td>
236
+ <td class="oblique">$.jobs</td>
237
+ </tr>
238
+ <tr>
239
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
240
+ <td class="oblique">$.jobs</td>
241
+ </tr>
242
+ <tr>
243
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
244
+ <td class="oblique">$.jobs</td>
245
+ </tr>
246
+ <tr>
247
+ <td><a href="$.net.Mail.html">Mail</a></td>
248
+ <td class="oblique">$.net</td>
249
+ </tr>
250
+ <tr>
251
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
252
+ <td class="oblique">$.db</td>
253
+ </tr>
254
+ <tr>
255
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
256
+ <td class="oblique">$.net.Mail</td>
257
+ </tr>
258
+ <tr>
259
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
260
+ <td class="oblique">$.db</td>
261
+ </tr>
262
+ <tr>
263
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
264
+ <td class="oblique">$.hdb</td>
265
+ </tr>
266
+ <tr>
267
+ <td><a href="$.net.http.Request.html">Request</a></td>
268
+ <td class="oblique">$.net.http</td>
269
+ </tr>
270
+ <tr>
271
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
272
+ <td class="oblique">$.db</td>
273
+ </tr>
274
+ <tr>
275
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
276
+ <td class="oblique">$.hdb</td>
277
+ </tr>
278
+ <tr>
279
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
280
+ <td class="oblique">$.hdb</td>
281
+ </tr>
282
+ <tr>
283
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
284
+ <td class="oblique">$.db</td>
285
+ </tr>
286
+ <tr>
287
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
288
+ <td class="oblique">$.hdb</td>
289
+ </tr>
290
+ <tr>
291
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
292
+ <td class="oblique">$.util</td>
293
+ </tr>
294
+ <tr>
295
+ <td><a href="$.Session.html">Session</a></td>
296
+ <td class="oblique">$</td>
297
+ </tr>
298
+ <tr>
299
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
300
+ <td class="oblique">$.text.analysis</td>
301
+ </tr>
302
+ <tr>
303
+ <td><a href="$.text.mining.Session.html">Session</a></td>
304
+ <td class="oblique">$.text.mining</td>
305
+ </tr>
306
+ <tr>
307
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
308
+ <td class="oblique">$.net</td>
309
+ </tr>
310
+ <tr>
311
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
312
+ <td class="oblique">$.db</td>
313
+ </tr>
314
+ <tr>
315
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
316
+ <td class="oblique">$.hdb</td>
317
+ </tr>
318
+ <tr>
319
+ <td><a href="$.security.Store.html">Store</a></td>
320
+ <td class="oblique">$.security</td>
321
+ </tr>
322
+ <tr>
323
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
324
+ <td class="oblique">$.web</td>
325
+ </tr>
326
+ <tr>
327
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
328
+ <td class="oblique">$.web</td>
329
+ </tr>
330
+ <tr>
331
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
332
+ <td class="oblique">$.web</td>
333
+ </tr>
334
+ <tr>
335
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
336
+ <td class="oblique">$.web</td>
337
+ </tr>
338
+ <tr>
339
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
340
+ <td class="oblique">$.web</td>
341
+ </tr>
342
+ <tr>
343
+ <td><a href="$.util.Zip.html">Zip</a></td>
344
+ <td class="oblique">$.util</td>
345
+ </tr>
346
+ </table>
347
+ <h3>Namespaces</h3>
348
+ <ul>
349
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
350
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
351
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
352
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
353
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
354
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
355
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
356
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
357
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
358
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
359
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
360
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
361
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
362
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
363
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
364
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
365
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
366
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
367
+ </ul>
368
+ </nav>
369
+ <br clear="both">
370
+ <footer>
371
+ <a href="Copyright-SAP.html">Copyright</a>
372
+ &
373
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
374
+ </footer>
375
+ <script>prettyPrint();</script>
376
+ <script src="scripts/linenumber.js"></script>
377
+
378
+ </body>
379
+
380
+ </html>