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