@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,414 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Namespace: crypto</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="$.security.crypto.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Namespace: crypto</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a><a href="$.security.html">.security</a>.</span>
23
+ crypto
24
+ </h2>
25
+ </header>
26
+ <article>
27
+ <div class="container-overview">
28
+ <div class="description">Namespace: crypto</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="md5"><span class="type-signature"></span>md5<span
36
+ class="signature">(data, <span class="optional">key</span>)</span><span
37
+ class="type-signature"> &rarr; {ArrayBuffer}</span></h4>
38
+ </dt>
39
+ <dd>
40
+ <div class="description">
41
+ Computes MD5 hash or HMAC-MD5
42
+ </div>
43
+ <h5>Parameters:</h5>
44
+ <table class="params">
45
+ <thead>
46
+ <tr>
47
+ <th>Name</th>
48
+ <th>Type</th>
49
+ <th>Argument</th>
50
+ <th class="last">Description</th>
51
+ </tr>
52
+ </thead>
53
+ <tbody>
54
+ <tr>
55
+ <td class="name"><code>data</code></td>
56
+ <td class="type">
57
+ <span class="param-type">String</span>
58
+ |
59
+ <span class="param-type">ArrayBuffer</span>
60
+ </td>
61
+ <td class="attributes">
62
+ </td>
63
+ <td class="description last">String or binary data to produce the hash from. If the
64
+ parameter is of type String, its UTF-8 representation will be considered
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="name"><code>key</code></td>
69
+ <td class="type">
70
+ <span class="param-type">String</span>
71
+ </td>
72
+ <td class="attributes">
73
+ &lt;optional><br>
74
+ </td>
75
+ <td class="description last">Key used for HMAC-MD5 generation</td>
76
+ </tr>
77
+ </tbody>
78
+ </table>
79
+ <dl class="details">
80
+ </dl>
81
+ <h5>Throws:</h5>
82
+ <div class="param-desc">
83
+ Throws an error if the input parameters are invalid
84
+ </div>
85
+ <h5>Returns:</h5>
86
+ <dl>
87
+ <dt>
88
+ Type
89
+ </dt>
90
+ <dd>
91
+ <span class="param-type">ArrayBuffer</span>
92
+ </dd>
93
+ </dl>
94
+ </dd>
95
+ <dt>
96
+ <h4 class="name" id="sha1"><span class="type-signature"></span>sha1<span
97
+ class="signature">(data, <span class="optional">key</span>)</span><span
98
+ class="type-signature"> &rarr; {ArrayBuffer}</span></h4>
99
+ </dt>
100
+ <dd>
101
+ <div class="description">
102
+ Computes SHA1 or HMAC-SHA1
103
+ </div>
104
+ <h5>Parameters:</h5>
105
+ <table class="params">
106
+ <thead>
107
+ <tr>
108
+ <th>Name</th>
109
+ <th>Type</th>
110
+ <th>Argument</th>
111
+ <th class="last">Description</th>
112
+ </tr>
113
+ </thead>
114
+ <tbody>
115
+ <tr>
116
+ <td class="name"><code>data</code></td>
117
+ <td class="type">
118
+ <span class="param-type">String</span>
119
+ |
120
+ <span class="param-type">ArrayBuffer</span>
121
+ </td>
122
+ <td class="attributes">
123
+ </td>
124
+ <td class="description last">String or binary data to produce the hash from. If the
125
+ parameter is of type String, its UTF-8 representation will be considered
126
+ </td>
127
+ </tr>
128
+ <tr>
129
+ <td class="name"><code>key</code></td>
130
+ <td class="type">
131
+ <span class="param-type">String</span>
132
+ </td>
133
+ <td class="attributes">
134
+ &lt;optional><br>
135
+ </td>
136
+ <td class="description last">Key used for HMAC-SHA1 generation</td>
137
+ </tr>
138
+ </tbody>
139
+ </table>
140
+ <dl class="details">
141
+ </dl>
142
+ <h5>Throws:</h5>
143
+ <div class="param-desc">
144
+ Throws an error if the input parameters are invalid
145
+ </div>
146
+ <h5>Returns:</h5>
147
+ <dl>
148
+ <dt>
149
+ Type
150
+ </dt>
151
+ <dd>
152
+ <span class="param-type">ArrayBuffer</span>
153
+ </dd>
154
+ </dl>
155
+ </dd>
156
+ <dt>
157
+ <h4 class="name" id="sha256"><span class="type-signature"></span>sha256<span class="signature">(data, <span
158
+ class="optional">key</span>)</span><span class="type-signature"> &rarr; {ArrayBuffer}</span>
159
+ </h4>
160
+ </dt>
161
+ <dd>
162
+ <div class="description">
163
+ Computes SHA256 or HMAC-SHA256
164
+ </div>
165
+ <h5>Parameters:</h5>
166
+ <table class="params">
167
+ <thead>
168
+ <tr>
169
+ <th>Name</th>
170
+ <th>Type</th>
171
+ <th>Argument</th>
172
+ <th class="last">Description</th>
173
+ </tr>
174
+ </thead>
175
+ <tbody>
176
+ <tr>
177
+ <td class="name"><code>data</code></td>
178
+ <td class="type">
179
+ <span class="param-type">String</span>
180
+ |
181
+ <span class="param-type">ArrayBuffer</span>
182
+ </td>
183
+ <td class="attributes">
184
+ </td>
185
+ <td class="description last">String or binary data to produce the hash from. If the
186
+ parameter is of type String, its UTF-8 representation will be considered
187
+ </td>
188
+ </tr>
189
+ <tr>
190
+ <td class="name"><code>key</code></td>
191
+ <td class="type">
192
+ <span class="param-type">String</span>
193
+ </td>
194
+ <td class="attributes">
195
+ &lt;optional><br>
196
+ </td>
197
+ <td class="description last">Key used for HMAC-SHA256 generation</td>
198
+ </tr>
199
+ </tbody>
200
+ </table>
201
+ <dl class="details">
202
+ </dl>
203
+ <h5>Throws:</h5>
204
+ <div class="param-desc">
205
+ Throws an error if the input parameters are invalid
206
+ </div>
207
+ <h5>Returns:</h5>
208
+ <dl>
209
+ <dt>
210
+ Type
211
+ </dt>
212
+ <dd>
213
+ <span class="param-type">ArrayBuffer</span>
214
+ </dd>
215
+ </dl>
216
+ </dd>
217
+ </dl>
218
+ </article>
219
+ </section>
220
+ </div>
221
+ <nav>
222
+ <h2><a href="index.html">Index</a></h2>
223
+ <h3>Classes</h3>
224
+ <table>
225
+ <tr>
226
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
227
+ <td class="oblique">$.security</td>
228
+ </tr>
229
+ <tr>
230
+ <td><a href="$.Application.html">Application</a></td>
231
+ <td class="oblique">$</td>
232
+ </tr>
233
+ <tr>
234
+ <td><a href="$.web.Body.html">Body</a></td>
235
+ <td class="oblique">$.web</td>
236
+ </tr>
237
+ <tr>
238
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
239
+ <td class="oblique">$.db</td>
240
+ </tr>
241
+ <tr>
242
+ <td><a href="$.net.http.Client.html">Client</a></td>
243
+ <td class="oblique">$.net.http</td>
244
+ </tr>
245
+ <tr>
246
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
247
+ <td class="oblique">$.hdb</td>
248
+ </tr>
249
+ <tr>
250
+ <td><a href="$.db.Connection.html">Connection</a></td>
251
+ <td class="oblique">$.db</td>
252
+ </tr>
253
+ <tr>
254
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
255
+ <td class="oblique">$.hdb</td>
256
+ </tr>
257
+ <tr>
258
+ <td><a href="$.net.Destination.html">Destination</a></td>
259
+ <td class="oblique">$.net</td>
260
+ </tr>
261
+ <tr>
262
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
263
+ <td class="oblique">$.net.http</td>
264
+ </tr>
265
+ <tr>
266
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
267
+ <td class="oblique">$.web</td>
268
+ </tr>
269
+ <tr>
270
+ <td><a href="$.jobs.Job.html">Job</a></td>
271
+ <td class="oblique">$.jobs</td>
272
+ </tr>
273
+ <tr>
274
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
275
+ <td class="oblique">$.jobs</td>
276
+ </tr>
277
+ <tr>
278
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
279
+ <td class="oblique">$.jobs</td>
280
+ </tr>
281
+ <tr>
282
+ <td><a href="$.net.Mail.html">Mail</a></td>
283
+ <td class="oblique">$.net</td>
284
+ </tr>
285
+ <tr>
286
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
287
+ <td class="oblique">$.db</td>
288
+ </tr>
289
+ <tr>
290
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
291
+ <td class="oblique">$.net.Mail</td>
292
+ </tr>
293
+ <tr>
294
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
295
+ <td class="oblique">$.db</td>
296
+ </tr>
297
+ <tr>
298
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
299
+ <td class="oblique">$.hdb</td>
300
+ </tr>
301
+ <tr>
302
+ <td><a href="$.net.http.Request.html">Request</a></td>
303
+ <td class="oblique">$.net.http</td>
304
+ </tr>
305
+ <tr>
306
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
307
+ <td class="oblique">$.db</td>
308
+ </tr>
309
+ <tr>
310
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
311
+ <td class="oblique">$.hdb</td>
312
+ </tr>
313
+ <tr>
314
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
315
+ <td class="oblique">$.hdb</td>
316
+ </tr>
317
+ <tr>
318
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
319
+ <td class="oblique">$.db</td>
320
+ </tr>
321
+ <tr>
322
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
323
+ <td class="oblique">$.hdb</td>
324
+ </tr>
325
+ <tr>
326
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
327
+ <td class="oblique">$.util</td>
328
+ </tr>
329
+ <tr>
330
+ <td><a href="$.Session.html">Session</a></td>
331
+ <td class="oblique">$</td>
332
+ </tr>
333
+ <tr>
334
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
335
+ <td class="oblique">$.text.analysis</td>
336
+ </tr>
337
+ <tr>
338
+ <td><a href="$.text.mining.Session.html">Session</a></td>
339
+ <td class="oblique">$.text.mining</td>
340
+ </tr>
341
+ <tr>
342
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
343
+ <td class="oblique">$.net</td>
344
+ </tr>
345
+ <tr>
346
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
347
+ <td class="oblique">$.db</td>
348
+ </tr>
349
+ <tr>
350
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
351
+ <td class="oblique">$.hdb</td>
352
+ </tr>
353
+ <tr>
354
+ <td><a href="$.security.Store.html">Store</a></td>
355
+ <td class="oblique">$.security</td>
356
+ </tr>
357
+ <tr>
358
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
359
+ <td class="oblique">$.web</td>
360
+ </tr>
361
+ <tr>
362
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
363
+ <td class="oblique">$.web</td>
364
+ </tr>
365
+ <tr>
366
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
367
+ <td class="oblique">$.web</td>
368
+ </tr>
369
+ <tr>
370
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
371
+ <td class="oblique">$.web</td>
372
+ </tr>
373
+ <tr>
374
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
375
+ <td class="oblique">$.web</td>
376
+ </tr>
377
+ <tr>
378
+ <td><a href="$.util.Zip.html">Zip</a></td>
379
+ <td class="oblique">$.util</td>
380
+ </tr>
381
+ </table>
382
+ <h3>Namespaces</h3>
383
+ <ul>
384
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
385
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
386
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
387
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
388
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
389
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
390
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
391
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
392
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
393
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
394
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
395
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
396
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
397
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
398
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
399
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
400
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
401
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
402
+ </ul>
403
+ </nav>
404
+ <br clear="both">
405
+ <footer>
406
+ <a href="Copyright-SAP.html">Copyright</a>
407
+ &
408
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
409
+ </footer>
410
+ <script>prettyPrint();</script>
411
+ <script src="scripts/linenumber.js"></script>
412
+ </body>
413
+
414
+ </html>
@@ -0,0 +1,247 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Namespace: security</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="$.security.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Namespace: security</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a>.</span>
23
+ security
24
+ </h2>
25
+ </header>
26
+ <article>
27
+ <div class="container-overview">
28
+ <div class="description">Namespace: security</div>
29
+ <dl class="details">
30
+ </dl>
31
+ </div>
32
+ <h3 class="subsection-title">Classes</h3>
33
+ <dl>
34
+ <dt><a href="$.security.AntiVirus.html">AntiVirus</a></dt>
35
+ <dd></dd>
36
+ <dt><a href="$.security.Store.html">Store</a></dt>
37
+ <dd></dd>
38
+ </dl>
39
+ <h3 class="subsection-title">Namespaces</h3>
40
+ <dl>
41
+ <dt>
42
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.security.crypto"><a
43
+ href="$.security.crypto.html">crypto</a></a></dt>
44
+ <dd></dd>
45
+ <dt>
46
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.security.x509"><a
47
+ href="$.security.x509.html">x509</a></a></dt>
48
+ <dd></dd>
49
+ </dl>
50
+ </article>
51
+ </section>
52
+ </div>
53
+ <nav>
54
+ <h2><a href="index.html">Index</a></h2>
55
+ <h3>Classes</h3>
56
+ <table>
57
+ <tr>
58
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
59
+ <td class="oblique">$.security</td>
60
+ </tr>
61
+ <tr>
62
+ <td><a href="$.Application.html">Application</a></td>
63
+ <td class="oblique">$</td>
64
+ </tr>
65
+ <tr>
66
+ <td><a href="$.web.Body.html">Body</a></td>
67
+ <td class="oblique">$.web</td>
68
+ </tr>
69
+ <tr>
70
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
71
+ <td class="oblique">$.db</td>
72
+ </tr>
73
+ <tr>
74
+ <td><a href="$.net.http.Client.html">Client</a></td>
75
+ <td class="oblique">$.net.http</td>
76
+ </tr>
77
+ <tr>
78
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
79
+ <td class="oblique">$.hdb</td>
80
+ </tr>
81
+ <tr>
82
+ <td><a href="$.db.Connection.html">Connection</a></td>
83
+ <td class="oblique">$.db</td>
84
+ </tr>
85
+ <tr>
86
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
87
+ <td class="oblique">$.hdb</td>
88
+ </tr>
89
+ <tr>
90
+ <td><a href="$.net.Destination.html">Destination</a></td>
91
+ <td class="oblique">$.net</td>
92
+ </tr>
93
+ <tr>
94
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
95
+ <td class="oblique">$.net.http</td>
96
+ </tr>
97
+ <tr>
98
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
99
+ <td class="oblique">$.web</td>
100
+ </tr>
101
+ <tr>
102
+ <td><a href="$.jobs.Job.html">Job</a></td>
103
+ <td class="oblique">$.jobs</td>
104
+ </tr>
105
+ <tr>
106
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
107
+ <td class="oblique">$.jobs</td>
108
+ </tr>
109
+ <tr>
110
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
111
+ <td class="oblique">$.jobs</td>
112
+ </tr>
113
+ <tr>
114
+ <td><a href="$.net.Mail.html">Mail</a></td>
115
+ <td class="oblique">$.net</td>
116
+ </tr>
117
+ <tr>
118
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
119
+ <td class="oblique">$.db</td>
120
+ </tr>
121
+ <tr>
122
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
123
+ <td class="oblique">$.net.Mail</td>
124
+ </tr>
125
+ <tr>
126
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
127
+ <td class="oblique">$.db</td>
128
+ </tr>
129
+ <tr>
130
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
131
+ <td class="oblique">$.hdb</td>
132
+ </tr>
133
+ <tr>
134
+ <td><a href="$.net.http.Request.html">Request</a></td>
135
+ <td class="oblique">$.net.http</td>
136
+ </tr>
137
+ <tr>
138
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
139
+ <td class="oblique">$.db</td>
140
+ </tr>
141
+ <tr>
142
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
143
+ <td class="oblique">$.hdb</td>
144
+ </tr>
145
+ <tr>
146
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
147
+ <td class="oblique">$.hdb</td>
148
+ </tr>
149
+ <tr>
150
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
151
+ <td class="oblique">$.db</td>
152
+ </tr>
153
+ <tr>
154
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
155
+ <td class="oblique">$.hdb</td>
156
+ </tr>
157
+ <tr>
158
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
159
+ <td class="oblique">$.util</td>
160
+ </tr>
161
+ <tr>
162
+ <td><a href="$.Session.html">Session</a></td>
163
+ <td class="oblique">$</td>
164
+ </tr>
165
+ <tr>
166
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
167
+ <td class="oblique">$.text.analysis</td>
168
+ </tr>
169
+ <tr>
170
+ <td><a href="$.text.mining.Session.html">Session</a></td>
171
+ <td class="oblique">$.text.mining</td>
172
+ </tr>
173
+ <tr>
174
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
175
+ <td class="oblique">$.net</td>
176
+ </tr>
177
+ <tr>
178
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
179
+ <td class="oblique">$.db</td>
180
+ </tr>
181
+ <tr>
182
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
183
+ <td class="oblique">$.hdb</td>
184
+ </tr>
185
+ <tr>
186
+ <td><a href="$.security.Store.html">Store</a></td>
187
+ <td class="oblique">$.security</td>
188
+ </tr>
189
+ <tr>
190
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
191
+ <td class="oblique">$.web</td>
192
+ </tr>
193
+ <tr>
194
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
195
+ <td class="oblique">$.web</td>
196
+ </tr>
197
+ <tr>
198
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
199
+ <td class="oblique">$.web</td>
200
+ </tr>
201
+ <tr>
202
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
203
+ <td class="oblique">$.web</td>
204
+ </tr>
205
+ <tr>
206
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
207
+ <td class="oblique">$.web</td>
208
+ </tr>
209
+ <tr>
210
+ <td><a href="$.util.Zip.html">Zip</a></td>
211
+ <td class="oblique">$.util</td>
212
+ </tr>
213
+ </table>
214
+ <h3>Namespaces</h3>
215
+ <ul>
216
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
217
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
218
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
219
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
220
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
221
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
222
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
223
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
224
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
225
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
226
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
227
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
228
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
229
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
230
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
231
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
232
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
233
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
234
+ </ul>
235
+ </nav>
236
+ <br clear="both">
237
+ <footer>
238
+ <a href="Copyright-SAP.html">Copyright</a>
239
+ &
240
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
241
+ </footer>
242
+ <script>prettyPrint();</script>
243
+ <script src="scripts/linenumber.js"></script>
244
+
245
+ </body>
246
+
247
+ </html>