@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.
- package/CHANGELOG.md +26 -0
- package/LICENSE +37 -0
- package/README.md +445 -0
- package/differences.md +162 -0
- package/docs/$.Application.html +262 -0
- package/docs/$.Session.html +674 -0
- package/docs/$.db.CallableStatement.html +2524 -0
- package/docs/$.db.Connection.html +511 -0
- package/docs/$.db.ParameterMetaData.html +805 -0
- package/docs/$.db.PreparedStatement.html +1796 -0
- package/docs/$.db.ResultSet.html +1308 -0
- package/docs/$.db.ResultSetMetaData.html +800 -0
- package/docs/$.db.SQLException.html +259 -0
- package/docs/$.db.html +773 -0
- package/docs/$.hdb.ColumnMetadata.html +438 -0
- package/docs/$.hdb.Connection.html +663 -0
- package/docs/$.hdb.ProcedureResult.html +280 -0
- package/docs/$.hdb.ResultSet.html +324 -0
- package/docs/$.hdb.ResultSetIterator.html +315 -0
- package/docs/$.hdb.ResultSetMetaData.html +259 -0
- package/docs/$.hdb.SQLException.html +259 -0
- package/docs/$.hdb.html +557 -0
- package/docs/$.html +471 -0
- package/docs/$.jobs.Job.html +783 -0
- package/docs/$.jobs.JobLog.html +380 -0
- package/docs/$.jobs.JobSchedules.html +852 -0
- package/docs/$.jobs.html +238 -0
- package/docs/$.net.Destination.html +304 -0
- package/docs/$.net.Mail.Part.html +510 -0
- package/docs/$.net.Mail.html +504 -0
- package/docs/$.net.SMTPConnection.html +347 -0
- package/docs/$.net.html +749 -0
- package/docs/$.net.http.Client.html +562 -0
- package/docs/$.net.http.Destination.html +237 -0
- package/docs/$.net.http.Request.html +567 -0
- package/docs/$.net.http.html +292 -0
- package/docs/$.security.AntiVirus.html +361 -0
- package/docs/$.security.Store.html +636 -0
- package/docs/$.security.crypto.html +414 -0
- package/docs/$.security.html +247 -0
- package/docs/$.security.x509.html +373 -0
- package/docs/$.text.analysis.Session.html +983 -0
- package/docs/$.text.analysis.html +242 -0
- package/docs/$.text.html +246 -0
- package/docs/$.text.mining.Session.html +2018 -0
- package/docs/$.text.mining.html +242 -0
- package/docs/$.trace.html +525 -0
- package/docs/$.util.SAXParser.html +955 -0
- package/docs/$.util.Zip.html +474 -0
- package/docs/$.util.codec.html +414 -0
- package/docs/$.util.compression.html +357 -0
- package/docs/$.util.html +325 -0
- package/docs/$.util.sql.html +290 -0
- package/docs/$.web.Body.html +333 -0
- package/docs/$.web.EntityList.html +296 -0
- package/docs/$.web.TupelList.html +496 -0
- package/docs/$.web.WebEntityRequest.html +393 -0
- package/docs/$.web.WebEntityResponse.html +392 -0
- package/docs/$.web.WebRequest.html +560 -0
- package/docs/$.web.WebResponse.html +609 -0
- package/docs/$.web.html +246 -0
- package/docs/Copyright-SAP.html +39 -0
- package/docs/Disclaimer-SAP.html +55 -0
- package/docs/index.html +232 -0
- package/docs/styles/jsdoc-default.css +382 -0
- package/lib/AppConfig.js +36 -0
- package/lib/AuditLogger.js +41 -0
- package/lib/cacert.js +26 -0
- package/lib/ctypes.js +153 -0
- package/lib/destinations/dest-provider.js +57 -0
- package/lib/index.js +235 -0
- package/lib/jobs/Action.js +40 -0
- package/lib/jobs/Job.js +100 -0
- package/lib/jobs/JobManager.js +150 -0
- package/lib/jobs/JobsRuntime.js +133 -0
- package/lib/jobs/SqlScriptJobRunner.js +36 -0
- package/lib/jobs/XsjsJobRunner.js +78 -0
- package/lib/jobs/index.js +11 -0
- package/lib/logging.js +16 -0
- package/lib/middleware.js +125 -0
- package/lib/odata/ODataService.js +125 -0
- package/lib/odata/index.js +7 -0
- package/lib/odata/service-factory.js +26 -0
- package/lib/passport-noauth.js +17 -0
- package/lib/routes.js +115 -0
- package/lib/runtime.js +740 -0
- package/lib/sandbox.js +40 -0
- package/lib/utils/XsJsFunctionRunner.js +57 -0
- package/lib/utils/XsJsLibFunctionRunner.js +57 -0
- package/lib/utils/buffer-utils.js +77 -0
- package/lib/utils/compression-utils.js +14 -0
- package/lib/utils/date-utils.js +104 -0
- package/lib/utils/errors/HttpError.js +20 -0
- package/lib/utils/errors/wrap-app-error.js +18 -0
- package/lib/utils/index.js +17 -0
- package/lib/utils/xs-function-runner.js +51 -0
- package/lib/utils/xs-types.js +21 -0
- package/lib/utils/xspath.js +36 -0
- package/lib/utils/xsstack.js +28 -0
- package/lib/views/error.html +28 -0
- package/lib/xsjs/Application.js +28 -0
- package/lib/xsjs/Locale.js +53 -0
- package/lib/xsjs/Session.js +31 -0
- package/lib/xsjs/constants.js +71 -0
- package/lib/xsjs/db/common/DbBase.js +85 -0
- package/lib/xsjs/db/common/DbOptions.js +163 -0
- package/lib/xsjs/db/common/arguments-validation.js +102 -0
- package/lib/xsjs/db/common/connection.js +12 -0
- package/lib/xsjs/db/common/enums.js +93 -0
- package/lib/xsjs/db/common/execute-batch.js +38 -0
- package/lib/xsjs/db/common/parse-time.js +139 -0
- package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
- package/lib/xsjs/db/dbapi/Connection.js +78 -0
- package/lib/xsjs/db/dbapi/DB.js +39 -0
- package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
- package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
- package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
- package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
- package/lib/xsjs/db/dbapi/Statement.js +514 -0
- package/lib/xsjs/db/dbapi/conversions.js +113 -0
- package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
- package/lib/xsjs/db/hdbapi/Connection.js +525 -0
- package/lib/xsjs/db/hdbapi/HDB.js +32 -0
- package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
- package/lib/xsjs/db/hdbapi/convert.js +77 -0
- package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
- package/lib/xsjs/db/index.js +4 -0
- package/lib/xsjs/index.js +13 -0
- package/lib/xsjs/jobs/Job.js +228 -0
- package/lib/xsjs/jobs/Jobs.js +11 -0
- package/lib/xsjs/jobs/Logs.js +127 -0
- package/lib/xsjs/jobs/Schedule.js +110 -0
- package/lib/xsjs/jobs/Schedules.js +108 -0
- package/lib/xsjs/net/Destination.js +43 -0
- package/lib/xsjs/net/http/Client.js +220 -0
- package/lib/xsjs/net/http/HTTP.js +72 -0
- package/lib/xsjs/net/index.js +5 -0
- package/lib/xsjs/net/smtp/Mail.js +38 -0
- package/lib/xsjs/net/smtp/Part.js +30 -0
- package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
- package/lib/xsjs/net/smtp/index.js +18 -0
- package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
- package/lib/xsjs/require.js +39 -0
- package/lib/xsjs/security/AntiVirus.js +31 -0
- package/lib/xsjs/security/Store.js +119 -0
- package/lib/xsjs/security/crypto.js +23 -0
- package/lib/xsjs/security/index.js +5 -0
- package/lib/xsjs/security/x509.js +12 -0
- package/lib/xsjs/text/analysis/Session.js +128 -0
- package/lib/xsjs/text/index.js +30 -0
- package/lib/xsjs/text/mining/Session.js +82 -0
- package/lib/xsjs/trace/trace.js +41 -0
- package/lib/xsjs/util/SAXParser.js +174 -0
- package/lib/xsjs/util/Zip.js +220 -0
- package/lib/xsjs/util/codec.js +33 -0
- package/lib/xsjs/util/compression.js +24 -0
- package/lib/xsjs/util/index.js +22 -0
- package/lib/xsjs/web/BasicWebEntity.js +41 -0
- package/lib/xsjs/web/EntityList.js +11 -0
- package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
- package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
- package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
- package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
- package/lib/xsjs/web/WebBody.js +135 -0
- package/lib/xsjs/web/WebEntityRequest.js +40 -0
- package/lib/xsjs/web/WebEntityResponse.js +26 -0
- package/lib/xsjs/web/WebRequest.js +209 -0
- package/lib/xsjs/web/WebResponse.js +183 -0
- package/lib/xsjs/web/index.js +4 -0
- package/lib/xsjs/web/utils/HeadersParser.js +53 -0
- package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
- package/lib/xsjs/web/utils/MultipartParser.js +163 -0
- package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
- package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
- package/lib/xsjslib/TextBundleWrapper.js +46 -0
- package/lib/xsjslib/index.js +11 -0
- package/npm-shrinkwrap.json +11540 -0
- package/package.json +84 -0
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: WebEntityRequest</title>
|
|
7
|
+
<script src="scripts/prettify/prettify.js"></script>
|
|
8
|
+
<script src="scripts/prettify/lang-css.js"></script>
|
|
9
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
13
|
+
<script src="scripts/highlight.js"></script>
|
|
14
|
+
<link rel="canonical" href="$.web.WebEntityRequest.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: WebEntityRequest</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.web.html">.web</a>.</span>
|
|
23
|
+
WebEntityRequest
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">$.web.WebEntityRequest represents an HTTP request entity.</div>
|
|
26
|
+
</header>
|
|
27
|
+
<article>
|
|
28
|
+
<div class="container-overview">
|
|
29
|
+
<dt>
|
|
30
|
+
<h4 class="name" id="WebEntityRequest"><span class="type-signature"></span>new WebEntityRequest<span
|
|
31
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
32
|
+
</dt>
|
|
33
|
+
<dd>
|
|
34
|
+
<div class="description">
|
|
35
|
+
Provides access to the entity's metadata and to the content (body) of the entity.
|
|
36
|
+
</div>
|
|
37
|
+
<dl class="details">
|
|
38
|
+
<dt class="tag-see">See:</dt>
|
|
39
|
+
<dd class="tag-see">
|
|
40
|
+
<ul>
|
|
41
|
+
<li>$.web.WebEntityResponse represents the HTTP request's corresponding response
|
|
42
|
+
entity.
|
|
43
|
+
</li>
|
|
44
|
+
</ul>
|
|
45
|
+
</dd>
|
|
46
|
+
</dl>
|
|
47
|
+
</dd>
|
|
48
|
+
</div>
|
|
49
|
+
<h3 class="subsection-title">Members</h3>
|
|
50
|
+
<dl>
|
|
51
|
+
<dt>
|
|
52
|
+
<h4 class="name" id="body"><span class="type-signature"></span>body<span class="type-signature"> :<a
|
|
53
|
+
href="$.web.Body.html">$.web.Body</a>|undefined</span></h4>
|
|
54
|
+
</dt>
|
|
55
|
+
<dd>
|
|
56
|
+
<div class="description">
|
|
57
|
+
The body of the request.
|
|
58
|
+
The value is undefined when there is no body.
|
|
59
|
+
<i>Only</i> available on <a href="$.html#request">$.request</a>.
|
|
60
|
+
</div>
|
|
61
|
+
<h5>Type:</h5>
|
|
62
|
+
<ul>
|
|
63
|
+
<li>
|
|
64
|
+
<span class="param-type"><a href="$.web.Body.html">$.web.Body</a></span>
|
|
65
|
+
|
|
|
66
|
+
<span class="param-type">undefined</span>
|
|
67
|
+
</li>
|
|
68
|
+
</ul>
|
|
69
|
+
<dl class="details">
|
|
70
|
+
</dl>
|
|
71
|
+
</dd>
|
|
72
|
+
<dt>
|
|
73
|
+
<h4 class="name" id="contentType"><span class="type-signature"></span>contentType<span
|
|
74
|
+
class="type-signature"> :string</span></h4>
|
|
75
|
+
</dt>
|
|
76
|
+
<dd>
|
|
77
|
+
<div class="description">
|
|
78
|
+
The content type of the entity
|
|
79
|
+
</div>
|
|
80
|
+
<h5>Type:</h5>
|
|
81
|
+
<ul>
|
|
82
|
+
<li>
|
|
83
|
+
<span class="param-type">string</span>
|
|
84
|
+
</li>
|
|
85
|
+
</ul>
|
|
86
|
+
<dl class="details">
|
|
87
|
+
</dl>
|
|
88
|
+
</dd>
|
|
89
|
+
<dt>
|
|
90
|
+
<h4 class="name" id="entities"><span class="type-signature"></span>entities<span
|
|
91
|
+
class="type-signature"> :<a href="$.web.EntityList.html">$.web.EntityList</a></span></h4>
|
|
92
|
+
</dt>
|
|
93
|
+
<dd>
|
|
94
|
+
<div class="description">
|
|
95
|
+
The sub-entities of the entity
|
|
96
|
+
</div>
|
|
97
|
+
<h5>Type:</h5>
|
|
98
|
+
<ul>
|
|
99
|
+
<li>
|
|
100
|
+
<span class="param-type"><a href="$.web.EntityList.html">$.web.EntityList</a></span>
|
|
101
|
+
</li>
|
|
102
|
+
</ul>
|
|
103
|
+
<dl class="details">
|
|
104
|
+
</dl>
|
|
105
|
+
</dd>
|
|
106
|
+
<dt>
|
|
107
|
+
<h4 class="name" id="headers"><span class="type-signature"></span>headers<span
|
|
108
|
+
class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
|
|
109
|
+
</dt>
|
|
110
|
+
<dd>
|
|
111
|
+
<div class="description">
|
|
112
|
+
The headers of the entity
|
|
113
|
+
</div>
|
|
114
|
+
<h5>Type:</h5>
|
|
115
|
+
<ul>
|
|
116
|
+
<li>
|
|
117
|
+
<span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
|
|
118
|
+
</li>
|
|
119
|
+
</ul>
|
|
120
|
+
<dl class="details">
|
|
121
|
+
</dl>
|
|
122
|
+
</dd>
|
|
123
|
+
<dt>
|
|
124
|
+
<h4 class="name" id="parameters"><span class="type-signature"></span>parameters<span
|
|
125
|
+
class="type-signature"> :<a href="$.web.TupelList.html">$.web.TupelList</a></span></h4>
|
|
126
|
+
</dt>
|
|
127
|
+
<dd>
|
|
128
|
+
<div class="description">
|
|
129
|
+
The parameters of the entity
|
|
130
|
+
</div>
|
|
131
|
+
<h5>Type:</h5>
|
|
132
|
+
<ul>
|
|
133
|
+
<li>
|
|
134
|
+
<span class="param-type"><a href="$.web.TupelList.html">$.web.TupelList</a></span>
|
|
135
|
+
</li>
|
|
136
|
+
</ul>
|
|
137
|
+
<dl class="details">
|
|
138
|
+
</dl>
|
|
139
|
+
</dd>
|
|
140
|
+
</dl>
|
|
141
|
+
<h3 class="subsection-title">Methods</h3>
|
|
142
|
+
<dl>
|
|
143
|
+
<dt>
|
|
144
|
+
<h4 class="name" id="setBody"><span class="type-signature">async </span>setBody<span class="signature">(body, <span
|
|
145
|
+
class="optional">index</span>)</span><span class="type-signature"></span></h4>
|
|
146
|
+
</dt>
|
|
147
|
+
<dd>
|
|
148
|
+
<div class="description">
|
|
149
|
+
Sets the body of the entity;
|
|
150
|
+
the method supports all elemental JavaScript types and ArrayBuffers.
|
|
151
|
+
</div>
|
|
152
|
+
<h5>Parameters:</h5>
|
|
153
|
+
<table class="params">
|
|
154
|
+
<thead>
|
|
155
|
+
<tr>
|
|
156
|
+
<th>Name</th>
|
|
157
|
+
<th>Type</th>
|
|
158
|
+
<th>Argument</th>
|
|
159
|
+
<th class="last">Description</th>
|
|
160
|
+
</tr>
|
|
161
|
+
</thead>
|
|
162
|
+
<tbody>
|
|
163
|
+
<tr>
|
|
164
|
+
<td class="name"><code>body</code></td>
|
|
165
|
+
<td class="type">
|
|
166
|
+
<span class="param-type">any</span>
|
|
167
|
+
|
|
|
168
|
+
<span class="param-type">ArrayBuffer</span>
|
|
169
|
+
</td>
|
|
170
|
+
<td class="attributes">
|
|
171
|
+
</td>
|
|
172
|
+
<td class="description last">Can be any elemental JavaScript type or an ArrayBuffer</td>
|
|
173
|
+
</tr>
|
|
174
|
+
<tr>
|
|
175
|
+
<td class="name"><code>index</code></td>
|
|
176
|
+
<td class="type">
|
|
177
|
+
<span class="param-type">Number</span>
|
|
178
|
+
</td>
|
|
179
|
+
<td class="attributes">
|
|
180
|
+
<optional><br>
|
|
181
|
+
</td>
|
|
182
|
+
<td class="description last">If the first argument is ResultSet, the number specifies the
|
|
183
|
+
index of a Blob column
|
|
184
|
+
</td>
|
|
185
|
+
</tr>
|
|
186
|
+
</tbody>
|
|
187
|
+
</table>
|
|
188
|
+
<dl class="details">
|
|
189
|
+
</dl>
|
|
190
|
+
<h5>Throws:</h5>
|
|
191
|
+
<div class="param-desc">
|
|
192
|
+
Throws an error if the parameters are invalid
|
|
193
|
+
</div>
|
|
194
|
+
</dd>
|
|
195
|
+
</dl>
|
|
196
|
+
</article>
|
|
197
|
+
</section>
|
|
198
|
+
</div>
|
|
199
|
+
<nav>
|
|
200
|
+
<h2><a href="index.html">Index</a></h2>
|
|
201
|
+
<h3>Classes</h3>
|
|
202
|
+
<table>
|
|
203
|
+
<tr>
|
|
204
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
205
|
+
<td class="oblique">$.security</td>
|
|
206
|
+
</tr>
|
|
207
|
+
<tr>
|
|
208
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
209
|
+
<td class="oblique">$</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
213
|
+
<td class="oblique">$.web</td>
|
|
214
|
+
</tr>
|
|
215
|
+
<tr>
|
|
216
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
217
|
+
<td class="oblique">$.db</td>
|
|
218
|
+
</tr>
|
|
219
|
+
<tr>
|
|
220
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
221
|
+
<td class="oblique">$.net.http</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
225
|
+
<td class="oblique">$.hdb</td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
229
|
+
<td class="oblique">$.db</td>
|
|
230
|
+
</tr>
|
|
231
|
+
<tr>
|
|
232
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
233
|
+
<td class="oblique">$.hdb</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
237
|
+
<td class="oblique">$.net</td>
|
|
238
|
+
</tr>
|
|
239
|
+
<tr>
|
|
240
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
241
|
+
<td class="oblique">$.net.http</td>
|
|
242
|
+
</tr>
|
|
243
|
+
<tr>
|
|
244
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
245
|
+
<td class="oblique">$.web</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
249
|
+
<td class="oblique">$.jobs</td>
|
|
250
|
+
</tr>
|
|
251
|
+
<tr>
|
|
252
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
253
|
+
<td class="oblique">$.jobs</td>
|
|
254
|
+
</tr>
|
|
255
|
+
<tr>
|
|
256
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
257
|
+
<td class="oblique">$.jobs</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
261
|
+
<td class="oblique">$.net</td>
|
|
262
|
+
</tr>
|
|
263
|
+
<tr>
|
|
264
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
265
|
+
<td class="oblique">$.db</td>
|
|
266
|
+
</tr>
|
|
267
|
+
<tr>
|
|
268
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
269
|
+
<td class="oblique">$.net.Mail</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
273
|
+
<td class="oblique">$.db</td>
|
|
274
|
+
</tr>
|
|
275
|
+
<tr>
|
|
276
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
277
|
+
<td class="oblique">$.hdb</td>
|
|
278
|
+
</tr>
|
|
279
|
+
<tr>
|
|
280
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
281
|
+
<td class="oblique">$.net.http</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
285
|
+
<td class="oblique">$.db</td>
|
|
286
|
+
</tr>
|
|
287
|
+
<tr>
|
|
288
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
289
|
+
<td class="oblique">$.hdb</td>
|
|
290
|
+
</tr>
|
|
291
|
+
<tr>
|
|
292
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
293
|
+
<td class="oblique">$.hdb</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
297
|
+
<td class="oblique">$.db</td>
|
|
298
|
+
</tr>
|
|
299
|
+
<tr>
|
|
300
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
301
|
+
<td class="oblique">$.hdb</td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr>
|
|
304
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
305
|
+
<td class="oblique">$.util</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
309
|
+
<td class="oblique">$</td>
|
|
310
|
+
</tr>
|
|
311
|
+
<tr>
|
|
312
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
313
|
+
<td class="oblique">$.text.analysis</td>
|
|
314
|
+
</tr>
|
|
315
|
+
<tr>
|
|
316
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
317
|
+
<td class="oblique">$.text.mining</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
321
|
+
<td class="oblique">$.net</td>
|
|
322
|
+
</tr>
|
|
323
|
+
<tr>
|
|
324
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
325
|
+
<td class="oblique">$.db</td>
|
|
326
|
+
</tr>
|
|
327
|
+
<tr>
|
|
328
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
329
|
+
<td class="oblique">$.hdb</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
333
|
+
<td class="oblique">$.security</td>
|
|
334
|
+
</tr>
|
|
335
|
+
<tr>
|
|
336
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
337
|
+
<td class="oblique">$.web</td>
|
|
338
|
+
</tr>
|
|
339
|
+
<tr>
|
|
340
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
341
|
+
<td class="oblique">$.web</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
345
|
+
<td class="oblique">$.web</td>
|
|
346
|
+
</tr>
|
|
347
|
+
<tr>
|
|
348
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
349
|
+
<td class="oblique">$.web</td>
|
|
350
|
+
</tr>
|
|
351
|
+
<tr>
|
|
352
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
353
|
+
<td class="oblique">$.web</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
357
|
+
<td class="oblique">$.util</td>
|
|
358
|
+
</tr>
|
|
359
|
+
</table>
|
|
360
|
+
<h3>Namespaces</h3>
|
|
361
|
+
<ul>
|
|
362
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
363
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
364
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
365
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
366
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
367
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
368
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
369
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
370
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
371
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
372
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
373
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
374
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
375
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
376
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
377
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
378
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
379
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
380
|
+
</ul>
|
|
381
|
+
</nav>
|
|
382
|
+
<br clear="both">
|
|
383
|
+
<footer>
|
|
384
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
385
|
+
&
|
|
386
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
387
|
+
</footer>
|
|
388
|
+
<script>prettyPrint();</script>
|
|
389
|
+
<script src="scripts/linenumber.js"></script>
|
|
390
|
+
|
|
391
|
+
</body>
|
|
392
|
+
|
|
393
|
+
</html>
|