@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
package/docs/$.web.html
ADDED
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Namespace: web</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.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Namespace: web</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a>.</span>
|
|
23
|
+
web
|
|
24
|
+
</h2>
|
|
25
|
+
</header>
|
|
26
|
+
<article>
|
|
27
|
+
<div class="container-overview">
|
|
28
|
+
<div class="description">Namespace: web</div>
|
|
29
|
+
<dl class="details">
|
|
30
|
+
</dl>
|
|
31
|
+
</div>
|
|
32
|
+
<h3 class="subsection-title">Classes</h3>
|
|
33
|
+
<dl>
|
|
34
|
+
<dt><a href="$.web.Body.html">Body</a></dt>
|
|
35
|
+
<dd></dd>
|
|
36
|
+
<dt><a href="$.web.EntityList.html">EntityList</a></dt>
|
|
37
|
+
<dd></dd>
|
|
38
|
+
<dt><a href="$.web.TupelList.html">TupelList</a></dt>
|
|
39
|
+
<dd></dd>
|
|
40
|
+
<dt><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></dt>
|
|
41
|
+
<dd></dd>
|
|
42
|
+
<dt><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></dt>
|
|
43
|
+
<dd></dd>
|
|
44
|
+
<dt><a href="$.web.WebRequest.html">WebRequest</a></dt>
|
|
45
|
+
<dd></dd>
|
|
46
|
+
<dt><a href="$.web.WebResponse.html">WebResponse</a></dt>
|
|
47
|
+
<dd></dd>
|
|
48
|
+
</dl>
|
|
49
|
+
</article>
|
|
50
|
+
</section>
|
|
51
|
+
</div>
|
|
52
|
+
<nav>
|
|
53
|
+
<h2><a href="index.html">Index</a></h2>
|
|
54
|
+
<h3>Classes</h3>
|
|
55
|
+
<table>
|
|
56
|
+
<tr>
|
|
57
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
58
|
+
<td class="oblique">$.security</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
62
|
+
<td class="oblique">$</td>
|
|
63
|
+
</tr>
|
|
64
|
+
<tr>
|
|
65
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
66
|
+
<td class="oblique">$.web</td>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr>
|
|
69
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
70
|
+
<td class="oblique">$.db</td>
|
|
71
|
+
</tr>
|
|
72
|
+
<tr>
|
|
73
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
74
|
+
<td class="oblique">$.net.http</td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
78
|
+
<td class="oblique">$.hdb</td>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
82
|
+
<td class="oblique">$.db</td>
|
|
83
|
+
</tr>
|
|
84
|
+
<tr>
|
|
85
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
86
|
+
<td class="oblique">$.hdb</td>
|
|
87
|
+
</tr>
|
|
88
|
+
<tr>
|
|
89
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
90
|
+
<td class="oblique">$.net</td>
|
|
91
|
+
</tr>
|
|
92
|
+
<tr>
|
|
93
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
94
|
+
<td class="oblique">$.net.http</td>
|
|
95
|
+
</tr>
|
|
96
|
+
<tr>
|
|
97
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
98
|
+
<td class="oblique">$.web</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
102
|
+
<td class="oblique">$.jobs</td>
|
|
103
|
+
</tr>
|
|
104
|
+
<tr>
|
|
105
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
106
|
+
<td class="oblique">$.jobs</td>
|
|
107
|
+
</tr>
|
|
108
|
+
<tr>
|
|
109
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
110
|
+
<td class="oblique">$.jobs</td>
|
|
111
|
+
</tr>
|
|
112
|
+
<tr>
|
|
113
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
114
|
+
<td class="oblique">$.net</td>
|
|
115
|
+
</tr>
|
|
116
|
+
<tr>
|
|
117
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
118
|
+
<td class="oblique">$.db</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
122
|
+
<td class="oblique">$.net.Mail</td>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
125
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
126
|
+
<td class="oblique">$.db</td>
|
|
127
|
+
</tr>
|
|
128
|
+
<tr>
|
|
129
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
130
|
+
<td class="oblique">$.hdb</td>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
134
|
+
<td class="oblique">$.net.http</td>
|
|
135
|
+
</tr>
|
|
136
|
+
<tr>
|
|
137
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
138
|
+
<td class="oblique">$.db</td>
|
|
139
|
+
</tr>
|
|
140
|
+
<tr>
|
|
141
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
142
|
+
<td class="oblique">$.hdb</td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
146
|
+
<td class="oblique">$.hdb</td>
|
|
147
|
+
</tr>
|
|
148
|
+
<tr>
|
|
149
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
150
|
+
<td class="oblique">$.db</td>
|
|
151
|
+
</tr>
|
|
152
|
+
<tr>
|
|
153
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
154
|
+
<td class="oblique">$.hdb</td>
|
|
155
|
+
</tr>
|
|
156
|
+
<tr>
|
|
157
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
158
|
+
<td class="oblique">$.util</td>
|
|
159
|
+
</tr>
|
|
160
|
+
<tr>
|
|
161
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
162
|
+
<td class="oblique">$</td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
166
|
+
<td class="oblique">$.text.analysis</td>
|
|
167
|
+
</tr>
|
|
168
|
+
<tr>
|
|
169
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
170
|
+
<td class="oblique">$.text.mining</td>
|
|
171
|
+
</tr>
|
|
172
|
+
<tr>
|
|
173
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
174
|
+
<td class="oblique">$.net</td>
|
|
175
|
+
</tr>
|
|
176
|
+
<tr>
|
|
177
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
178
|
+
<td class="oblique">$.db</td>
|
|
179
|
+
</tr>
|
|
180
|
+
<tr>
|
|
181
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
182
|
+
<td class="oblique">$.hdb</td>
|
|
183
|
+
</tr>
|
|
184
|
+
<tr>
|
|
185
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
186
|
+
<td class="oblique">$.security</td>
|
|
187
|
+
</tr>
|
|
188
|
+
<tr>
|
|
189
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
190
|
+
<td class="oblique">$.web</td>
|
|
191
|
+
</tr>
|
|
192
|
+
<tr>
|
|
193
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
194
|
+
<td class="oblique">$.web</td>
|
|
195
|
+
</tr>
|
|
196
|
+
<tr>
|
|
197
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
198
|
+
<td class="oblique">$.web</td>
|
|
199
|
+
</tr>
|
|
200
|
+
<tr>
|
|
201
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
202
|
+
<td class="oblique">$.web</td>
|
|
203
|
+
</tr>
|
|
204
|
+
<tr>
|
|
205
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
206
|
+
<td class="oblique">$.web</td>
|
|
207
|
+
</tr>
|
|
208
|
+
<tr>
|
|
209
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
210
|
+
<td class="oblique">$.util</td>
|
|
211
|
+
</tr>
|
|
212
|
+
</table>
|
|
213
|
+
<h3>Namespaces</h3>
|
|
214
|
+
<ul>
|
|
215
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
216
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
217
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
218
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
219
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
220
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
221
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
222
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
223
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
224
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
225
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
226
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
227
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
228
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
229
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
230
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
231
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
232
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
233
|
+
</ul>
|
|
234
|
+
</nav>
|
|
235
|
+
<br clear="both">
|
|
236
|
+
<footer>
|
|
237
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
238
|
+
&
|
|
239
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
240
|
+
</footer>
|
|
241
|
+
<script>prettyPrint();</script>
|
|
242
|
+
<script src="scripts/linenumber.js"></script>
|
|
243
|
+
|
|
244
|
+
</body>
|
|
245
|
+
|
|
246
|
+
</html>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
7
|
+
<title>Copyright</title>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
11
|
+
<script src="scripts/highlight.js"></script>
|
|
12
|
+
<link rel="canonical" href="Copyright-SAP.html">
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<p>© 2017 SAP SE or an SAP affiliate company. All rights reserved.</p>
|
|
16
|
+
<p>No part of this publication may be reproduced or transmitted in any form
|
|
17
|
+
or for any purpose without the express permission of SAP SE or an SAP affiliate
|
|
18
|
+
company. The information contained herein may be changed without prior
|
|
19
|
+
notice.</p>
|
|
20
|
+
<p>Some software products marketed by SAP SE and its distributors contain
|
|
21
|
+
proprietary software components of other software vendors. National product
|
|
22
|
+
specifications may vary.</p>
|
|
23
|
+
<p>These materials are provided by SAP SE or an SAP affiliate company for
|
|
24
|
+
informational purposes only, without representation or warranty of any kind, and
|
|
25
|
+
SAP or its affiliated companies shall not be liable for errors or omissions with
|
|
26
|
+
respect to the materials. The only warranties for SAP or SAP affiliate company
|
|
27
|
+
products and services are those that are set forth in the express warranty
|
|
28
|
+
statements accompanying such products and services, if any. Nothing herein
|
|
29
|
+
should be construed as constituting an additional warranty.</p>
|
|
30
|
+
<p>SAP and other SAP products and services mentioned herein as well as their
|
|
31
|
+
respective logos are trademarks or registered trademarks of SAP SE (or an SAP
|
|
32
|
+
affiliate company) in Germany and other countries. All other product and service names mentioned are the trademarks
|
|
33
|
+
of their respective companies.</p>
|
|
34
|
+
<p>Please see <a href="http://www.sap.com/corporate-en/legal/copyright/index.epx" target="_blank">http://www.sap.com/corporate-en/legal/copyright/index.epx</a>
|
|
35
|
+
for additional trademark information and notices.</p>
|
|
36
|
+
|
|
37
|
+
</body>
|
|
38
|
+
|
|
39
|
+
</html>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<title>Important Disclaimers on Legal Aspects</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"/>
|
|
7
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
8
|
+
<script src="scripts/highlight.js"></script>
|
|
9
|
+
<link rel="canonical" href="Disclaimer-SAP.html">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<h1>Important Disclaimers on Legal Aspects</h1>
|
|
13
|
+
<p>This document is for informational purposes only. Its content is subject to change
|
|
14
|
+
without notice, and SAP does not warrant that it is error-free. SAP MAKES NO WARRANTIES,
|
|
15
|
+
EXPRESS OR IMPLIED, OR OF MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.</p>
|
|
16
|
+
<div><span>Coding Samples</span>
|
|
17
|
+
<p>Any software coding and/or code lines / strings
|
|
18
|
+
("Code") included in this documentation are only examples and are not intended to be
|
|
19
|
+
used in a productive system environment. The Code is only intended to better explain
|
|
20
|
+
and visualize the syntax and phrasing rules of certain coding. SAP does not warrant
|
|
21
|
+
the correctness and completeness of the Code given herein, and SAP shall not be
|
|
22
|
+
liable for errors or damages caused by the usage of the Code, unless damages were
|
|
23
|
+
caused by SAP intentionally or by SAP's gross negligence.</p>
|
|
24
|
+
</div>
|
|
25
|
+
<div><span>Accessibility</span>
|
|
26
|
+
<p>The information contained in the SAP documentation
|
|
27
|
+
represents SAP's current view of accessibility criteria as of the date of
|
|
28
|
+
publication; it is in no way intended to be a binding guideline on how to ensure
|
|
29
|
+
accessibility of software products. SAP specifically disclaims any liability with
|
|
30
|
+
respect to this document and no contractual obligations or commitments are formed
|
|
31
|
+
either directly or indirectly by this document. </p>
|
|
32
|
+
</div>
|
|
33
|
+
<div><span>Gender-Neutral Language</span>
|
|
34
|
+
<p>As far as possible, SAP documentation is
|
|
35
|
+
gender neutral. Depending on the context, the reader is addressed directly with
|
|
36
|
+
"you", or a gender-neutral noun (such as "sales person" or "working days") is used.
|
|
37
|
+
If when referring to members of both sexes, however, the third-person singular
|
|
38
|
+
cannot be avoided or a gender-neutral noun does not exist, SAP reserves the right to
|
|
39
|
+
use the masculine form of the noun and pronoun. This is to ensure that the
|
|
40
|
+
documentation remains comprehensible. </p>
|
|
41
|
+
</div>
|
|
42
|
+
<div><span>Internet Hyperlinks</span>
|
|
43
|
+
<p>The SAP documentation may contain hyperlinks
|
|
44
|
+
to the Internet. These hyperlinks are intended to serve as a hint about where to
|
|
45
|
+
find related information. SAP does not warrant the availability and correctness of
|
|
46
|
+
this related information or the ability of this information to serve a particular
|
|
47
|
+
purpose. SAP shall not be liable for any damages caused by the use of related
|
|
48
|
+
information unless damages have been caused by SAP's gross negligence or willful
|
|
49
|
+
misconduct. Regarding link classification, see: <a href="http://help.sap.com/disclaimer/" target="_blank">http://help.sap.com/disclaimer</a>
|
|
50
|
+
</p>
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
</body>
|
|
54
|
+
|
|
55
|
+
</html>
|
package/docs/index.html
ADDED
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Index</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="index.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Index</h1>
|
|
19
|
+
<h3></h3>
|
|
20
|
+
<section>
|
|
21
|
+
<article><h1>SAP HANA 2 - ASYNC XS JavaScript API Reference</h1>
|
|
22
|
+
<p>This API provides server-side JavaScript code running inside SAP HANA XS with access to request
|
|
23
|
+
processing-related data and operations.</p>
|
|
24
|
+
<ul>
|
|
25
|
+
<li><a href="$.hdb.html">Database API</a></li>
|
|
26
|
+
<li><a href="$.db.html">Legacy Database API</a></li>
|
|
27
|
+
<li><a href="$.net.http.html">HTTP Outbound API</a></li>
|
|
28
|
+
<li><a href="$.web.html">Request Processing API</a></li>
|
|
29
|
+
<li><a href="$.jobs.html">Job Scheduling API</a></li>
|
|
30
|
+
<li><a href="$.security.html">Security API</a></li>
|
|
31
|
+
<li><a href="$.text.html">Text API</a></li>
|
|
32
|
+
<li><a href="$.trace.html">Trace API</a></li>
|
|
33
|
+
<li><a href="$.util.html">Util API</a></li>
|
|
34
|
+
</ul>
|
|
35
|
+
</article>
|
|
36
|
+
</section>
|
|
37
|
+
</div>
|
|
38
|
+
<nav>
|
|
39
|
+
<h2><a href="index.html">Index</a></h2>
|
|
40
|
+
<h3>Classes</h3>
|
|
41
|
+
<table>
|
|
42
|
+
<tr>
|
|
43
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
44
|
+
<td class="oblique">$.security</td>
|
|
45
|
+
</tr>
|
|
46
|
+
<tr>
|
|
47
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
48
|
+
<td class="oblique">$</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
52
|
+
<td class="oblique">$.web</td>
|
|
53
|
+
</tr>
|
|
54
|
+
<tr>
|
|
55
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
56
|
+
<td class="oblique">$.db</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr>
|
|
59
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
60
|
+
<td class="oblique">$.net.http</td>
|
|
61
|
+
</tr>
|
|
62
|
+
<tr>
|
|
63
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
64
|
+
<td class="oblique">$.hdb</td>
|
|
65
|
+
</tr>
|
|
66
|
+
<tr>
|
|
67
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
68
|
+
<td class="oblique">$.db</td>
|
|
69
|
+
</tr>
|
|
70
|
+
<tr>
|
|
71
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
72
|
+
<td class="oblique">$.hdb</td>
|
|
73
|
+
</tr>
|
|
74
|
+
<tr>
|
|
75
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
76
|
+
<td class="oblique">$.net</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
80
|
+
<td class="oblique">$.net.http</td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
84
|
+
<td class="oblique">$.web</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
88
|
+
<td class="oblique">$.jobs</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
92
|
+
<td class="oblique">$.jobs</td>
|
|
93
|
+
</tr>
|
|
94
|
+
<tr>
|
|
95
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
96
|
+
<td class="oblique">$.jobs</td>
|
|
97
|
+
</tr>
|
|
98
|
+
<tr>
|
|
99
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
100
|
+
<td class="oblique">$.net</td>
|
|
101
|
+
</tr>
|
|
102
|
+
<tr>
|
|
103
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
104
|
+
<td class="oblique">$.db</td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
108
|
+
<td class="oblique">$.net.Mail</td>
|
|
109
|
+
</tr>
|
|
110
|
+
<tr>
|
|
111
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
112
|
+
<td class="oblique">$.db</td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
116
|
+
<td class="oblique">$.hdb</td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr>
|
|
119
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
120
|
+
<td class="oblique">$.net.http</td>
|
|
121
|
+
</tr>
|
|
122
|
+
<tr>
|
|
123
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
124
|
+
<td class="oblique">$.db</td>
|
|
125
|
+
</tr>
|
|
126
|
+
<tr>
|
|
127
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
128
|
+
<td class="oblique">$.hdb</td>
|
|
129
|
+
</tr>
|
|
130
|
+
<tr>
|
|
131
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
132
|
+
<td class="oblique">$.hdb</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
136
|
+
<td class="oblique">$.db</td>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
140
|
+
<td class="oblique">$.hdb</td>
|
|
141
|
+
</tr>
|
|
142
|
+
<tr>
|
|
143
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
144
|
+
<td class="oblique">$.util</td>
|
|
145
|
+
</tr>
|
|
146
|
+
<tr>
|
|
147
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
148
|
+
<td class="oblique">$</td>
|
|
149
|
+
</tr>
|
|
150
|
+
<tr>
|
|
151
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
152
|
+
<td class="oblique">$.text.analysis</td>
|
|
153
|
+
</tr>
|
|
154
|
+
<tr>
|
|
155
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
156
|
+
<td class="oblique">$.text.mining</td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr>
|
|
159
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
160
|
+
<td class="oblique">$.net</td>
|
|
161
|
+
</tr>
|
|
162
|
+
<tr>
|
|
163
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
164
|
+
<td class="oblique">$.db</td>
|
|
165
|
+
</tr>
|
|
166
|
+
<tr>
|
|
167
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
168
|
+
<td class="oblique">$.hdb</td>
|
|
169
|
+
</tr>
|
|
170
|
+
<tr>
|
|
171
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
172
|
+
<td class="oblique">$.security</td>
|
|
173
|
+
</tr>
|
|
174
|
+
<tr>
|
|
175
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
176
|
+
<td class="oblique">$.web</td>
|
|
177
|
+
</tr>
|
|
178
|
+
<tr>
|
|
179
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
180
|
+
<td class="oblique">$.web</td>
|
|
181
|
+
</tr>
|
|
182
|
+
<tr>
|
|
183
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
184
|
+
<td class="oblique">$.web</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr>
|
|
187
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
188
|
+
<td class="oblique">$.web</td>
|
|
189
|
+
</tr>
|
|
190
|
+
<tr>
|
|
191
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
192
|
+
<td class="oblique">$.web</td>
|
|
193
|
+
</tr>
|
|
194
|
+
<tr>
|
|
195
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
196
|
+
<td class="oblique">$.util</td>
|
|
197
|
+
</tr>
|
|
198
|
+
</table>
|
|
199
|
+
<h3>Namespaces</h3>
|
|
200
|
+
<ul>
|
|
201
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
202
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
203
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
204
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
205
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
206
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
207
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
208
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
209
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
210
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
211
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
212
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
213
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
214
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
215
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
216
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
217
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
218
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
219
|
+
</ul>
|
|
220
|
+
</nav>
|
|
221
|
+
<br clear="both">
|
|
222
|
+
<footer>
|
|
223
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
224
|
+
&
|
|
225
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
226
|
+
</footer>
|
|
227
|
+
<script>prettyPrint();</script>
|
|
228
|
+
<script src="scripts/linenumber.js"></script>
|
|
229
|
+
|
|
230
|
+
</body>
|
|
231
|
+
|
|
232
|
+
</html>
|