@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,496 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: TupelList</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.TupelList.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: TupelList</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.web.html">.web</a>.</span>
|
|
23
|
+
TupelList
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">$.web.TupelList Represents a list of name-value pairs.</div>
|
|
26
|
+
</header>
|
|
27
|
+
<article>
|
|
28
|
+
<div class="container-overview">
|
|
29
|
+
<dt>
|
|
30
|
+
<h4 class="name" id="TupelList"><span class="type-signature"></span>new TupelList<span
|
|
31
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
32
|
+
</dt>
|
|
33
|
+
<dd>
|
|
34
|
+
<div class="description">
|
|
35
|
+
A list of name-value pairs.
|
|
36
|
+
The TupelList is a container that provides tuples for cookies, headers, and parameters.
|
|
37
|
+
A tuple is a JavaScript object with the properties "name" and "value".
|
|
38
|
+
The list can be iterated and it also provides a method to query the values for a given name.
|
|
39
|
+
</div>
|
|
40
|
+
<dl class="details">
|
|
41
|
+
</dl>
|
|
42
|
+
<h5>Example</h5>
|
|
43
|
+
<pre class="prettyprint"><code>var i;
|
|
44
|
+
for (i = 0; i < $.request.parameters.length; ++i) {
|
|
45
|
+
var name = $.request.parameters[i].name;
|
|
46
|
+
var value = $.request.parameters[i].value;
|
|
47
|
+
...
|
|
48
|
+
}</code></pre>
|
|
49
|
+
</dd>
|
|
50
|
+
</div>
|
|
51
|
+
<h3 class="subsection-title">Members</h3>
|
|
52
|
+
<dl>
|
|
53
|
+
<dt>
|
|
54
|
+
<h4 class="name" id="length"><span class="type-signature"></span>length<span class="type-signature"> :number</span>
|
|
55
|
+
</h4>
|
|
56
|
+
</dt>
|
|
57
|
+
<dd>
|
|
58
|
+
<div class="description">
|
|
59
|
+
The size of the TupelList
|
|
60
|
+
</div>
|
|
61
|
+
<h5>Type:</h5>
|
|
62
|
+
<ul>
|
|
63
|
+
<li>
|
|
64
|
+
<span class="param-type">number</span>
|
|
65
|
+
</li>
|
|
66
|
+
</ul>
|
|
67
|
+
<dl class="details">
|
|
68
|
+
</dl>
|
|
69
|
+
</dd>
|
|
70
|
+
</dl>
|
|
71
|
+
<h3 class="subsection-title">Methods</h3>
|
|
72
|
+
<dl>
|
|
73
|
+
<dt>
|
|
74
|
+
<h4 class="name" id="get"><span class="type-signature"></span>get<span
|
|
75
|
+
class="signature">(name)</span><span class="type-signature"> → {string}</span></h4>
|
|
76
|
+
</dt>
|
|
77
|
+
<dd>
|
|
78
|
+
<div class="description">
|
|
79
|
+
Returns the values for a given name.
|
|
80
|
+
</div>
|
|
81
|
+
<h5>Parameters:</h5>
|
|
82
|
+
<table class="params">
|
|
83
|
+
<thead>
|
|
84
|
+
<tr>
|
|
85
|
+
<th>Name</th>
|
|
86
|
+
<th>Type</th>
|
|
87
|
+
<th class="last">Description</th>
|
|
88
|
+
</tr>
|
|
89
|
+
</thead>
|
|
90
|
+
<tbody>
|
|
91
|
+
<tr>
|
|
92
|
+
<td class="name"><code>name</code></td>
|
|
93
|
+
<td class="type">
|
|
94
|
+
<span class="param-type">string</span>
|
|
95
|
+
</td>
|
|
96
|
+
<td class="description last">Represents the names of the tuple whose values are to be
|
|
97
|
+
queried.
|
|
98
|
+
</td>
|
|
99
|
+
</tr>
|
|
100
|
+
</tbody>
|
|
101
|
+
</table>
|
|
102
|
+
<dl class="details">
|
|
103
|
+
</dl>
|
|
104
|
+
<h5>Returns:</h5>
|
|
105
|
+
<div class="param-desc">
|
|
106
|
+
Returns a single string. If multiple values are found, the first one is returned, undefined
|
|
107
|
+
otherwise.
|
|
108
|
+
</div>
|
|
109
|
+
<dl>
|
|
110
|
+
<dt>
|
|
111
|
+
Type
|
|
112
|
+
</dt>
|
|
113
|
+
<dd>
|
|
114
|
+
<span class="param-type">string</span>
|
|
115
|
+
</dd>
|
|
116
|
+
</dl>
|
|
117
|
+
</dd>
|
|
118
|
+
<dt>
|
|
119
|
+
<h4 class="name" id="remove"><span class="type-signature"></span>remove<span class="signature">(name)</span><span
|
|
120
|
+
class="type-signature"></span></h4>
|
|
121
|
+
</dt>
|
|
122
|
+
<dd>
|
|
123
|
+
<div class="description">
|
|
124
|
+
Removes the value for a given name.
|
|
125
|
+
This is only allowed for TupelLists of $.response and $.net.http.Request objects.
|
|
126
|
+
</div>
|
|
127
|
+
<h5>Parameters:</h5>
|
|
128
|
+
<table class="params">
|
|
129
|
+
<thead>
|
|
130
|
+
<tr>
|
|
131
|
+
<th>Name</th>
|
|
132
|
+
<th>Type</th>
|
|
133
|
+
<th class="last">Description</th>
|
|
134
|
+
</tr>
|
|
135
|
+
</thead>
|
|
136
|
+
<tbody>
|
|
137
|
+
<tr>
|
|
138
|
+
<td class="name"><code>name</code></td>
|
|
139
|
+
<td class="type">
|
|
140
|
+
<span class="param-type">string</span>
|
|
141
|
+
</td>
|
|
142
|
+
<td class="description last">The name of the tuple to be removed.</td>
|
|
143
|
+
</tr>
|
|
144
|
+
</tbody>
|
|
145
|
+
</table>
|
|
146
|
+
<dl class="details">
|
|
147
|
+
</dl>
|
|
148
|
+
<h5>Throws:</h5>
|
|
149
|
+
<div class="param-desc">
|
|
150
|
+
Throws an error if the tuple cannot be removed or if the argument is invalid.
|
|
151
|
+
</div>
|
|
152
|
+
</dd>
|
|
153
|
+
<dt>
|
|
154
|
+
<h4 class="name" id="set"><span class="type-signature"></span>set<span class="signature">(name, value)</span><span
|
|
155
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
156
|
+
</dt>
|
|
157
|
+
<dd>
|
|
158
|
+
<div class="description">
|
|
159
|
+
Sets the value for a given name.
|
|
160
|
+
<br>
|
|
161
|
+
The method will either add a new tuple to the list or modify the existing list.
|
|
162
|
+
This is only allowed for TupelLists of $.response and $.net.http.Request objects.
|
|
163
|
+
</div>
|
|
164
|
+
<h5>Parameters:</h5>
|
|
165
|
+
<table class="params">
|
|
166
|
+
<thead>
|
|
167
|
+
<tr>
|
|
168
|
+
<th>Name</th>
|
|
169
|
+
<th>Type</th>
|
|
170
|
+
<th class="last">Description</th>
|
|
171
|
+
</tr>
|
|
172
|
+
</thead>
|
|
173
|
+
<tbody>
|
|
174
|
+
<tr>
|
|
175
|
+
<td class="name"><code>name</code></td>
|
|
176
|
+
<td class="type">
|
|
177
|
+
<span class="param-type">string</span>
|
|
178
|
+
</td>
|
|
179
|
+
<td class="description last">The name of the tuple to be modified.</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td class="name"><code>value</code></td>
|
|
183
|
+
<td class="type">
|
|
184
|
+
<span class="param-type">string</span>
|
|
185
|
+
</td>
|
|
186
|
+
<td class="description last">The value to be set.</td>
|
|
187
|
+
</tr>
|
|
188
|
+
</tbody>
|
|
189
|
+
</table>
|
|
190
|
+
<dl class="details">
|
|
191
|
+
</dl>
|
|
192
|
+
<h5>Throws:</h5>
|
|
193
|
+
<div class="param-desc">
|
|
194
|
+
Throws an error if the tuple cannot be set.
|
|
195
|
+
</div>
|
|
196
|
+
<h5>Returns:</h5>
|
|
197
|
+
<div class="param-desc">
|
|
198
|
+
Returns true if the tuple can be set.
|
|
199
|
+
</div>
|
|
200
|
+
<dl>
|
|
201
|
+
<dt>
|
|
202
|
+
Type
|
|
203
|
+
</dt>
|
|
204
|
+
<dd>
|
|
205
|
+
<span class="param-type">boolean</span>
|
|
206
|
+
</dd>
|
|
207
|
+
</dl>
|
|
208
|
+
</dd>
|
|
209
|
+
<dt>
|
|
210
|
+
<h4 class="name" id="set"><span class="type-signature"></span>set<span class="signature">(name, value, <span
|
|
211
|
+
class="optional">options</span>)</span><span class="type-signature"> → {boolean}</span>
|
|
212
|
+
</h4>
|
|
213
|
+
</dt>
|
|
214
|
+
<dd>
|
|
215
|
+
<div class="description">
|
|
216
|
+
Special setter for cookies.
|
|
217
|
+
<br>
|
|
218
|
+
The method will either add a new cookie to the list or modify the cookie in the list.
|
|
219
|
+
This is only allowed for the TupleList cookie property of $.response and $.net.http.Request
|
|
220
|
+
objects.
|
|
221
|
+
<br>
|
|
222
|
+
This setter also accepts a metadata object that control the cookie metadata.
|
|
223
|
+
</div>
|
|
224
|
+
<h5>Parameters:</h5>
|
|
225
|
+
<table class="params">
|
|
226
|
+
<thead>
|
|
227
|
+
<tr>
|
|
228
|
+
<th>Name</th>
|
|
229
|
+
<th>Type</th>
|
|
230
|
+
<th>Argument</th>
|
|
231
|
+
<th class="last">Description</th>
|
|
232
|
+
</tr>
|
|
233
|
+
</thead>
|
|
234
|
+
<tbody>
|
|
235
|
+
<tr>
|
|
236
|
+
<td class="name"><code>name</code></td>
|
|
237
|
+
<td class="type">
|
|
238
|
+
<span class="param-type">string</span>
|
|
239
|
+
</td>
|
|
240
|
+
<td class="attributes">
|
|
241
|
+
</td>
|
|
242
|
+
<td class="description last">The name of the tuple to be modified.</td>
|
|
243
|
+
</tr>
|
|
244
|
+
<tr>
|
|
245
|
+
<td class="name"><code>value</code></td>
|
|
246
|
+
<td class="type">
|
|
247
|
+
<span class="param-type">string</span>
|
|
248
|
+
</td>
|
|
249
|
+
<td class="attributes">
|
|
250
|
+
</td>
|
|
251
|
+
<td class="description last">The value to be set.</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td class="name"><code>options</code></td>
|
|
255
|
+
<td class="type">
|
|
256
|
+
<span class="param-type">object</span>
|
|
257
|
+
</td>
|
|
258
|
+
<td class="attributes">
|
|
259
|
+
<optional><br>
|
|
260
|
+
</td>
|
|
261
|
+
<td class="description last">metadata The metadata of the cookie to be set:
|
|
262
|
+
<ul>
|
|
263
|
+
<li>path - string</li>
|
|
264
|
+
<li>domain - string</li>
|
|
265
|
+
<li>expires - string</li>
|
|
266
|
+
<li>secure - boolean</li>
|
|
267
|
+
<li>httpOnly - boolean</li>
|
|
268
|
+
</ul>
|
|
269
|
+
</td>
|
|
270
|
+
</tr>
|
|
271
|
+
</tbody>
|
|
272
|
+
</table>
|
|
273
|
+
<dl class="details">
|
|
274
|
+
</dl>
|
|
275
|
+
<h5>Throws:</h5>
|
|
276
|
+
<div class="param-desc">
|
|
277
|
+
Throws an error if the tuple cannot be set.
|
|
278
|
+
</div>
|
|
279
|
+
<h5>Returns:</h5>
|
|
280
|
+
<div class="param-desc">
|
|
281
|
+
Returns true if the tuple can be set.
|
|
282
|
+
</div>
|
|
283
|
+
<dl>
|
|
284
|
+
<dt>
|
|
285
|
+
Type
|
|
286
|
+
</dt>
|
|
287
|
+
<dd>
|
|
288
|
+
<span class="param-type">boolean</span>
|
|
289
|
+
</dd>
|
|
290
|
+
</dl>
|
|
291
|
+
<h5>Example</h5>
|
|
292
|
+
<pre class="prettyprint"><code>var d = new Date();
|
|
293
|
+
d.setSeconds(d.getSeconds() + 3600); // cookie is valid one hour from now
|
|
294
|
+
|
|
295
|
+
$.response.cookies.set("myCookie", "theValue", { expires: d.toUTCString(), path: "/myApp", httpOnly: false });
|
|
296
|
+
$.response.cookies.set("myCookie2", "theValue2", { path: "/myApp2", secure: true });</code></pre>
|
|
297
|
+
</dd>
|
|
298
|
+
</dl>
|
|
299
|
+
</article>
|
|
300
|
+
</section>
|
|
301
|
+
</div>
|
|
302
|
+
<nav>
|
|
303
|
+
<h2><a href="index.html">Index</a></h2>
|
|
304
|
+
<h3>Classes</h3>
|
|
305
|
+
<table>
|
|
306
|
+
<tr>
|
|
307
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
308
|
+
<td class="oblique">$.security</td>
|
|
309
|
+
</tr>
|
|
310
|
+
<tr>
|
|
311
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
312
|
+
<td class="oblique">$</td>
|
|
313
|
+
</tr>
|
|
314
|
+
<tr>
|
|
315
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
316
|
+
<td class="oblique">$.web</td>
|
|
317
|
+
</tr>
|
|
318
|
+
<tr>
|
|
319
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
320
|
+
<td class="oblique">$.db</td>
|
|
321
|
+
</tr>
|
|
322
|
+
<tr>
|
|
323
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
324
|
+
<td class="oblique">$.net.http</td>
|
|
325
|
+
</tr>
|
|
326
|
+
<tr>
|
|
327
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
328
|
+
<td class="oblique">$.hdb</td>
|
|
329
|
+
</tr>
|
|
330
|
+
<tr>
|
|
331
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
332
|
+
<td class="oblique">$.db</td>
|
|
333
|
+
</tr>
|
|
334
|
+
<tr>
|
|
335
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
336
|
+
<td class="oblique">$.hdb</td>
|
|
337
|
+
</tr>
|
|
338
|
+
<tr>
|
|
339
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
340
|
+
<td class="oblique">$.net</td>
|
|
341
|
+
</tr>
|
|
342
|
+
<tr>
|
|
343
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
344
|
+
<td class="oblique">$.net.http</td>
|
|
345
|
+
</tr>
|
|
346
|
+
<tr>
|
|
347
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
348
|
+
<td class="oblique">$.web</td>
|
|
349
|
+
</tr>
|
|
350
|
+
<tr>
|
|
351
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
352
|
+
<td class="oblique">$.jobs</td>
|
|
353
|
+
</tr>
|
|
354
|
+
<tr>
|
|
355
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
356
|
+
<td class="oblique">$.jobs</td>
|
|
357
|
+
</tr>
|
|
358
|
+
<tr>
|
|
359
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
360
|
+
<td class="oblique">$.jobs</td>
|
|
361
|
+
</tr>
|
|
362
|
+
<tr>
|
|
363
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
364
|
+
<td class="oblique">$.net</td>
|
|
365
|
+
</tr>
|
|
366
|
+
<tr>
|
|
367
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
368
|
+
<td class="oblique">$.db</td>
|
|
369
|
+
</tr>
|
|
370
|
+
<tr>
|
|
371
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
372
|
+
<td class="oblique">$.net.Mail</td>
|
|
373
|
+
</tr>
|
|
374
|
+
<tr>
|
|
375
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
376
|
+
<td class="oblique">$.db</td>
|
|
377
|
+
</tr>
|
|
378
|
+
<tr>
|
|
379
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
380
|
+
<td class="oblique">$.hdb</td>
|
|
381
|
+
</tr>
|
|
382
|
+
<tr>
|
|
383
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
384
|
+
<td class="oblique">$.net.http</td>
|
|
385
|
+
</tr>
|
|
386
|
+
<tr>
|
|
387
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
388
|
+
<td class="oblique">$.db</td>
|
|
389
|
+
</tr>
|
|
390
|
+
<tr>
|
|
391
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
392
|
+
<td class="oblique">$.hdb</td>
|
|
393
|
+
</tr>
|
|
394
|
+
<tr>
|
|
395
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
396
|
+
<td class="oblique">$.hdb</td>
|
|
397
|
+
</tr>
|
|
398
|
+
<tr>
|
|
399
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
400
|
+
<td class="oblique">$.db</td>
|
|
401
|
+
</tr>
|
|
402
|
+
<tr>
|
|
403
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
404
|
+
<td class="oblique">$.hdb</td>
|
|
405
|
+
</tr>
|
|
406
|
+
<tr>
|
|
407
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
408
|
+
<td class="oblique">$.util</td>
|
|
409
|
+
</tr>
|
|
410
|
+
<tr>
|
|
411
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
412
|
+
<td class="oblique">$</td>
|
|
413
|
+
</tr>
|
|
414
|
+
<tr>
|
|
415
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
416
|
+
<td class="oblique">$.text.analysis</td>
|
|
417
|
+
</tr>
|
|
418
|
+
<tr>
|
|
419
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
420
|
+
<td class="oblique">$.text.mining</td>
|
|
421
|
+
</tr>
|
|
422
|
+
<tr>
|
|
423
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
424
|
+
<td class="oblique">$.net</td>
|
|
425
|
+
</tr>
|
|
426
|
+
<tr>
|
|
427
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
428
|
+
<td class="oblique">$.db</td>
|
|
429
|
+
</tr>
|
|
430
|
+
<tr>
|
|
431
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
432
|
+
<td class="oblique">$.hdb</td>
|
|
433
|
+
</tr>
|
|
434
|
+
<tr>
|
|
435
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
436
|
+
<td class="oblique">$.security</td>
|
|
437
|
+
</tr>
|
|
438
|
+
<tr>
|
|
439
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
440
|
+
<td class="oblique">$.web</td>
|
|
441
|
+
</tr>
|
|
442
|
+
<tr>
|
|
443
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
444
|
+
<td class="oblique">$.web</td>
|
|
445
|
+
</tr>
|
|
446
|
+
<tr>
|
|
447
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
448
|
+
<td class="oblique">$.web</td>
|
|
449
|
+
</tr>
|
|
450
|
+
<tr>
|
|
451
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
452
|
+
<td class="oblique">$.web</td>
|
|
453
|
+
</tr>
|
|
454
|
+
<tr>
|
|
455
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
456
|
+
<td class="oblique">$.web</td>
|
|
457
|
+
</tr>
|
|
458
|
+
<tr>
|
|
459
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
460
|
+
<td class="oblique">$.util</td>
|
|
461
|
+
</tr>
|
|
462
|
+
</table>
|
|
463
|
+
<h3>Namespaces</h3>
|
|
464
|
+
<ul>
|
|
465
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
466
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
467
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
468
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
469
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
470
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
471
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
472
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
473
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
474
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
475
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
476
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
477
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
478
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
479
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
480
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
481
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
482
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
483
|
+
</ul>
|
|
484
|
+
</nav>
|
|
485
|
+
<br clear="both">
|
|
486
|
+
<footer>
|
|
487
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
488
|
+
&
|
|
489
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
490
|
+
</footer>
|
|
491
|
+
<script>prettyPrint();</script>
|
|
492
|
+
<script src="scripts/linenumber.js"></script>
|
|
493
|
+
|
|
494
|
+
</body>
|
|
495
|
+
|
|
496
|
+
</html>
|