@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,636 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: Store</title>
|
|
7
|
+
<script src="scripts/prettify/prettify.js"></script>
|
|
8
|
+
<script src="scripts/prettify/lang-css.js"></script>
|
|
9
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
13
|
+
<script src="scripts/highlight.js"></script>
|
|
14
|
+
<link rel="canonical" href="$.security.Store.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: Store</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.security.html">.security</a>.</span>
|
|
23
|
+
Store
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">The secure store API can be used to securely store data in name/value form.
|
|
26
|
+
Applications can define a secure store object
|
|
27
|
+
file and refer to this design time object in the application coding.
|
|
28
|
+
The XSEngine takes care of the encryption and decryption and also provides the persistency for the data.
|
|
29
|
+
There are two visibility options for the data
|
|
30
|
+
a) Visible application wide
|
|
31
|
+
All users of the application share the same data and can decrypt/encrypt data
|
|
32
|
+
e.g.: passwords for a remote system
|
|
33
|
+
b) Visible application wide but with a seperation on user level
|
|
34
|
+
Every user of the application can have it's own encrypted data which can only be decrypted by the user
|
|
35
|
+
himself
|
|
36
|
+
e.g. credit card numbers/pin codes etc.
|
|
37
|
+
</div>
|
|
38
|
+
</header>
|
|
39
|
+
<article>
|
|
40
|
+
<div class="container-overview">
|
|
41
|
+
<dt>
|
|
42
|
+
<h4 class="name" id="Store"><span class="type-signature"></span>new Store<span class="signature">(secureStoreFile)</span><span
|
|
43
|
+
class="type-signature"> → { Promise }</span></h4>
|
|
44
|
+
</dt>
|
|
45
|
+
<dd>
|
|
46
|
+
<h5>Parameters:</h5>
|
|
47
|
+
<table class="params">
|
|
48
|
+
<thead>
|
|
49
|
+
<tr>
|
|
50
|
+
<th>Name</th>
|
|
51
|
+
<th>Type</th>
|
|
52
|
+
<th class="last">Description</th>
|
|
53
|
+
</tr>
|
|
54
|
+
</thead>
|
|
55
|
+
<tbody>
|
|
56
|
+
<tr>
|
|
57
|
+
<td class="name"><code>secureStoreFile</code></td>
|
|
58
|
+
<td class="type">
|
|
59
|
+
<span class="param-type">string</span>
|
|
60
|
+
</td>
|
|
61
|
+
<td class="description last">The location of the xssecurestore file</td>
|
|
62
|
+
</tr>
|
|
63
|
+
</tbody>
|
|
64
|
+
</table>
|
|
65
|
+
<dl class="details">
|
|
66
|
+
</dl>
|
|
67
|
+
<h5>Examples</h5>
|
|
68
|
+
<pre class="prettyprint"><code>// content of the xssecurestore file localStore.xssecurestore
|
|
69
|
+
{}</code></pre>
|
|
70
|
+
<pre class="prettyprint"><code>function store() {
|
|
71
|
+
var config = {
|
|
72
|
+
name: "foo",
|
|
73
|
+
value: "bar"
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
var aStore = <b>await </b>(new $.security.Store("localStore.xssecurestore"));
|
|
77
|
+
aStore.store(config);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
function read() {
|
|
81
|
+
var config = {
|
|
82
|
+
name: "foo"
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
try {
|
|
86
|
+
var store = <b>await </b>(new $.security.Store("localStore.xssecurestore"));
|
|
87
|
+
var value = <b>await </b>store.read(config);
|
|
88
|
+
}
|
|
89
|
+
catch(ex) {
|
|
90
|
+
//do some error handling
|
|
91
|
+
}
|
|
92
|
+
}</code></pre>
|
|
93
|
+
</dd>
|
|
94
|
+
</div>
|
|
95
|
+
<h3 class="subsection-title">Methods</h3>
|
|
96
|
+
<dl>
|
|
97
|
+
<dt>
|
|
98
|
+
<h4 class="name" id="read"><span class="type-signature">async </span>read<span class="signature">(parameters)</span><span
|
|
99
|
+
class="type-signature"> → {string}</span></h4>
|
|
100
|
+
</dt>
|
|
101
|
+
<dd>
|
|
102
|
+
<div class="description">
|
|
103
|
+
read values, accessible by all users of the application
|
|
104
|
+
</div>
|
|
105
|
+
<h5>Parameters:</h5>
|
|
106
|
+
<table class="params">
|
|
107
|
+
<thead>
|
|
108
|
+
<tr>
|
|
109
|
+
<th>Name</th>
|
|
110
|
+
<th>Type</th>
|
|
111
|
+
<th class="last">Description</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<tr>
|
|
116
|
+
<td class="name"><code>parameters</code></td>
|
|
117
|
+
<td class="type">
|
|
118
|
+
<span class="param-type"><a href="$.security.Store.html#ReadParameters">$.security.Store~ReadParameters</a></span>
|
|
119
|
+
</td>
|
|
120
|
+
<td class="description last">parameter object</td>
|
|
121
|
+
</tr>
|
|
122
|
+
</tbody>
|
|
123
|
+
</table>
|
|
124
|
+
<dl class="details">
|
|
125
|
+
</dl>
|
|
126
|
+
<h5>Throws:</h5>
|
|
127
|
+
<div class="param-desc">
|
|
128
|
+
Throws an error if the access fails or the parameters are invalid
|
|
129
|
+
</div>
|
|
130
|
+
<h5>Returns:</h5>
|
|
131
|
+
<div class="param-desc">
|
|
132
|
+
The decrypted value
|
|
133
|
+
</div>
|
|
134
|
+
<dl>
|
|
135
|
+
<dt>
|
|
136
|
+
Type
|
|
137
|
+
</dt>
|
|
138
|
+
<dd>
|
|
139
|
+
<span class="param-type">string</span>
|
|
140
|
+
</dd>
|
|
141
|
+
</dl>
|
|
142
|
+
</dd>
|
|
143
|
+
<dt>
|
|
144
|
+
<h4 class="name" id="readForUser"><span class="type-signature">async </span>readForUser<span
|
|
145
|
+
class="signature">(parameters)</span><span class="type-signature"> → {string}</span>
|
|
146
|
+
</h4>
|
|
147
|
+
</dt>
|
|
148
|
+
<dd>
|
|
149
|
+
<div class="description">
|
|
150
|
+
read values on user isolation level
|
|
151
|
+
</div>
|
|
152
|
+
<h5>Parameters:</h5>
|
|
153
|
+
<table class="params">
|
|
154
|
+
<thead>
|
|
155
|
+
<tr>
|
|
156
|
+
<th>Name</th>
|
|
157
|
+
<th>Type</th>
|
|
158
|
+
<th class="last">Description</th>
|
|
159
|
+
</tr>
|
|
160
|
+
</thead>
|
|
161
|
+
<tbody>
|
|
162
|
+
<tr>
|
|
163
|
+
<td class="name"><code>parameters</code></td>
|
|
164
|
+
<td class="type">
|
|
165
|
+
<span class="param-type"><a href="$.security.Store.html#ReadParameters">$.security.Store~ReadParameters</a></span>
|
|
166
|
+
</td>
|
|
167
|
+
<td class="description last">parameter object</td>
|
|
168
|
+
</tr>
|
|
169
|
+
</tbody>
|
|
170
|
+
</table>
|
|
171
|
+
<dl class="details">
|
|
172
|
+
</dl>
|
|
173
|
+
<h5>Throws:</h5>
|
|
174
|
+
<div class="param-desc">
|
|
175
|
+
Throws an error if the access or the parameters are invalid
|
|
176
|
+
</div>
|
|
177
|
+
<h5>Returns:</h5>
|
|
178
|
+
<div class="param-desc">
|
|
179
|
+
The decrypted value
|
|
180
|
+
</div>
|
|
181
|
+
<dl>
|
|
182
|
+
<dt>
|
|
183
|
+
Type
|
|
184
|
+
</dt>
|
|
185
|
+
<dd>
|
|
186
|
+
<span class="param-type">string</span>
|
|
187
|
+
</dd>
|
|
188
|
+
</dl>
|
|
189
|
+
</dd>
|
|
190
|
+
<dt>
|
|
191
|
+
<h4 class="name" id="remove"><span class="type-signature">async </span>remove<span class="signature">(parameters)</span><span
|
|
192
|
+
class="type-signature"></span></h4>
|
|
193
|
+
</dt>
|
|
194
|
+
<dd>
|
|
195
|
+
<div class="description">
|
|
196
|
+
remove values on application isolation level
|
|
197
|
+
</div>
|
|
198
|
+
<h5>Parameters:</h5>
|
|
199
|
+
<table class="params">
|
|
200
|
+
<thead>
|
|
201
|
+
<tr>
|
|
202
|
+
<th>Name</th>
|
|
203
|
+
<th>Type</th>
|
|
204
|
+
<th class="last">Description</th>
|
|
205
|
+
</tr>
|
|
206
|
+
</thead>
|
|
207
|
+
<tbody>
|
|
208
|
+
<tr>
|
|
209
|
+
<td class="name"><code>parameters</code></td>
|
|
210
|
+
<td class="type">
|
|
211
|
+
<span class="param-type"><a href="$.security.Store.html#DeletionParameters">$.security.Store~DeletionParameters</a></span>
|
|
212
|
+
</td>
|
|
213
|
+
<td class="description last">parameter object</td>
|
|
214
|
+
</tr>
|
|
215
|
+
</tbody>
|
|
216
|
+
</table>
|
|
217
|
+
<dl class="details">
|
|
218
|
+
</dl>
|
|
219
|
+
<h5>Throws:</h5>
|
|
220
|
+
<div class="param-desc">
|
|
221
|
+
Throws an error if the access or the parameters are invalid
|
|
222
|
+
</div>
|
|
223
|
+
</dd>
|
|
224
|
+
<dt>
|
|
225
|
+
<h4 class="name" id="removeForUser"><span class="type-signature">async </span>removeForUser<span
|
|
226
|
+
class="signature">(parameters)</span><span class="type-signature"></span></h4>
|
|
227
|
+
</dt>
|
|
228
|
+
<dd>
|
|
229
|
+
<div class="description">
|
|
230
|
+
remove values on user isolation level
|
|
231
|
+
</div>
|
|
232
|
+
<h5>Parameters:</h5>
|
|
233
|
+
<table class="params">
|
|
234
|
+
<thead>
|
|
235
|
+
<tr>
|
|
236
|
+
<th>Name</th>
|
|
237
|
+
<th>Type</th>
|
|
238
|
+
<th class="last">Description</th>
|
|
239
|
+
</tr>
|
|
240
|
+
</thead>
|
|
241
|
+
<tbody>
|
|
242
|
+
<tr>
|
|
243
|
+
<td class="name"><code>parameters</code></td>
|
|
244
|
+
<td class="type">
|
|
245
|
+
<span class="param-type"><a href="$.security.Store.html#DeletionParameters">$.security.Store~DeletionParameters</a></span>
|
|
246
|
+
</td>
|
|
247
|
+
<td class="description last">parameter object</td>
|
|
248
|
+
</tr>
|
|
249
|
+
</tbody>
|
|
250
|
+
</table>
|
|
251
|
+
<dl class="details">
|
|
252
|
+
</dl>
|
|
253
|
+
<h5>Throws:</h5>
|
|
254
|
+
<div class="param-desc">
|
|
255
|
+
Throws an error if the access or the parameters are invalid
|
|
256
|
+
</div>
|
|
257
|
+
</dd>
|
|
258
|
+
<dt>
|
|
259
|
+
<h4 class="name" id="store"><span class="type-signature">async </span>store<span class="signature">(parameters)</span><span
|
|
260
|
+
class="type-signature"></span></h4>
|
|
261
|
+
</dt>
|
|
262
|
+
<dd>
|
|
263
|
+
<div class="description">
|
|
264
|
+
read values on user isolation level
|
|
265
|
+
</div>
|
|
266
|
+
<h5>Parameters:</h5>
|
|
267
|
+
<table class="params">
|
|
268
|
+
<thead>
|
|
269
|
+
<tr>
|
|
270
|
+
<th>Name</th>
|
|
271
|
+
<th>Type</th>
|
|
272
|
+
<th class="last">Description</th>
|
|
273
|
+
</tr>
|
|
274
|
+
</thead>
|
|
275
|
+
<tbody>
|
|
276
|
+
<tr>
|
|
277
|
+
<td class="name"><code>parameters</code></td>
|
|
278
|
+
<td class="type">
|
|
279
|
+
<span class="param-type"><a href="$.security.Store.html#WriteParameters">$.security.Store~WriteParameters</a></span>
|
|
280
|
+
</td>
|
|
281
|
+
<td class="description last">parameter object</td>
|
|
282
|
+
</tr>
|
|
283
|
+
</tbody>
|
|
284
|
+
</table>
|
|
285
|
+
<dl class="details">
|
|
286
|
+
</dl>
|
|
287
|
+
<h5>Throws:</h5>
|
|
288
|
+
<div class="param-desc">
|
|
289
|
+
Throws an error if the access or the parameters are invalid
|
|
290
|
+
</div>
|
|
291
|
+
</dd>
|
|
292
|
+
<dt>
|
|
293
|
+
<h4 class="name" id="storeForUser"><span class="type-signature">async </span>storeForUser<span
|
|
294
|
+
class="signature">(parameters)</span><span class="type-signature"></span></h4>
|
|
295
|
+
</dt>
|
|
296
|
+
<dd>
|
|
297
|
+
<div class="description">
|
|
298
|
+
stores user specific values, no other user can decrypt it
|
|
299
|
+
</div>
|
|
300
|
+
<h5>Parameters:</h5>
|
|
301
|
+
<table class="params">
|
|
302
|
+
<thead>
|
|
303
|
+
<tr>
|
|
304
|
+
<th>Name</th>
|
|
305
|
+
<th>Type</th>
|
|
306
|
+
<th class="last">Description</th>
|
|
307
|
+
</tr>
|
|
308
|
+
</thead>
|
|
309
|
+
<tbody>
|
|
310
|
+
<tr>
|
|
311
|
+
<td class="name"><code>parameters</code></td>
|
|
312
|
+
<td class="type">
|
|
313
|
+
<span class="param-type"><a href="$.security.Store.html#WriteParameters">$.security.Store~WriteParameters</a></span>
|
|
314
|
+
</td>
|
|
315
|
+
<td class="description last">parameter object</td>
|
|
316
|
+
</tr>
|
|
317
|
+
</tbody>
|
|
318
|
+
</table>
|
|
319
|
+
<dl class="details">
|
|
320
|
+
</dl>
|
|
321
|
+
<h5>Throws:</h5>
|
|
322
|
+
<div class="param-desc">
|
|
323
|
+
Throws an error if the access or the parameters are invalid
|
|
324
|
+
</div>
|
|
325
|
+
</dd>
|
|
326
|
+
</dl>
|
|
327
|
+
<h3 class="subsection-title">Type Definitions</h3>
|
|
328
|
+
<dl>
|
|
329
|
+
<dt>
|
|
330
|
+
<h4 class="name" id="DeletionParameters">DeletionParameters</h4>
|
|
331
|
+
</dt>
|
|
332
|
+
<dd>
|
|
333
|
+
<h5>Type:</h5>
|
|
334
|
+
<ul>
|
|
335
|
+
<li>
|
|
336
|
+
<span class="param-type">object</span>
|
|
337
|
+
</li>
|
|
338
|
+
</ul>
|
|
339
|
+
<dl class="details">
|
|
340
|
+
<h5 class="subsection-title">Properties:</h5>
|
|
341
|
+
<dl>
|
|
342
|
+
<table class="props">
|
|
343
|
+
<thead>
|
|
344
|
+
<tr>
|
|
345
|
+
<th>Name</th>
|
|
346
|
+
<th>Type</th>
|
|
347
|
+
<th class="last">Description</th>
|
|
348
|
+
</tr>
|
|
349
|
+
</thead>
|
|
350
|
+
<tbody>
|
|
351
|
+
<tr>
|
|
352
|
+
<td class="name"><code>name</code></td>
|
|
353
|
+
<td class="type">
|
|
354
|
+
<span class="param-type">string</span>
|
|
355
|
+
</td>
|
|
356
|
+
<td class="description last">Identifier for the data to be stored</td>
|
|
357
|
+
</tr>
|
|
358
|
+
</tbody>
|
|
359
|
+
</table>
|
|
360
|
+
</dl>
|
|
361
|
+
</dl>
|
|
362
|
+
</dd>
|
|
363
|
+
<dt>
|
|
364
|
+
<h4 class="name" id="ReadParameters">ReadParameters</h4>
|
|
365
|
+
</dt>
|
|
366
|
+
<dd>
|
|
367
|
+
<h5>Type:</h5>
|
|
368
|
+
<ul>
|
|
369
|
+
<li>
|
|
370
|
+
<span class="param-type">object</span>
|
|
371
|
+
</li>
|
|
372
|
+
</ul>
|
|
373
|
+
<dl class="details">
|
|
374
|
+
<h5 class="subsection-title">Properties:</h5>
|
|
375
|
+
<dl>
|
|
376
|
+
<table class="props">
|
|
377
|
+
<thead>
|
|
378
|
+
<tr>
|
|
379
|
+
<th>Name</th>
|
|
380
|
+
<th>Type</th>
|
|
381
|
+
<th class="last">Description</th>
|
|
382
|
+
</tr>
|
|
383
|
+
</thead>
|
|
384
|
+
<tbody>
|
|
385
|
+
<tr>
|
|
386
|
+
<td class="name"><code>name</code></td>
|
|
387
|
+
<td class="type">
|
|
388
|
+
<span class="param-type">string</span>
|
|
389
|
+
</td>
|
|
390
|
+
<td class="description last">Identifier for the data to be stored</td>
|
|
391
|
+
</tr>
|
|
392
|
+
</tbody>
|
|
393
|
+
</table>
|
|
394
|
+
</dl>
|
|
395
|
+
</dl>
|
|
396
|
+
</dd>
|
|
397
|
+
<dt>
|
|
398
|
+
<h4 class="name" id="WriteParameters">WriteParameters</h4>
|
|
399
|
+
</dt>
|
|
400
|
+
<dd>
|
|
401
|
+
<h5>Type:</h5>
|
|
402
|
+
<ul>
|
|
403
|
+
<li>
|
|
404
|
+
<span class="param-type">object</span>
|
|
405
|
+
</li>
|
|
406
|
+
</ul>
|
|
407
|
+
<dl class="details">
|
|
408
|
+
<h5 class="subsection-title">Properties:</h5>
|
|
409
|
+
<dl>
|
|
410
|
+
<table class="props">
|
|
411
|
+
<thead>
|
|
412
|
+
<tr>
|
|
413
|
+
<th>Name</th>
|
|
414
|
+
<th>Type</th>
|
|
415
|
+
<th class="last">Description</th>
|
|
416
|
+
</tr>
|
|
417
|
+
</thead>
|
|
418
|
+
<tbody>
|
|
419
|
+
<tr>
|
|
420
|
+
<td class="name"><code>name</code></td>
|
|
421
|
+
<td class="type">
|
|
422
|
+
<span class="param-type">string</span>
|
|
423
|
+
</td>
|
|
424
|
+
<td class="description last">Identifier for the data to be stored</td>
|
|
425
|
+
</tr>
|
|
426
|
+
<tr>
|
|
427
|
+
<td class="name"><code>value</code></td>
|
|
428
|
+
<td class="type">
|
|
429
|
+
<span class="param-type">string</span>
|
|
430
|
+
</td>
|
|
431
|
+
<td class="description last">The data which shall be stored</td>
|
|
432
|
+
</tr>
|
|
433
|
+
</tbody>
|
|
434
|
+
</table>
|
|
435
|
+
</dl>
|
|
436
|
+
</dl>
|
|
437
|
+
</dd>
|
|
438
|
+
</dl>
|
|
439
|
+
</article>
|
|
440
|
+
</section>
|
|
441
|
+
</div>
|
|
442
|
+
<nav>
|
|
443
|
+
<h2><a href="index.html">Index</a></h2>
|
|
444
|
+
<h3>Classes</h3>
|
|
445
|
+
<table>
|
|
446
|
+
<tr>
|
|
447
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
448
|
+
<td class="oblique">$.security</td>
|
|
449
|
+
</tr>
|
|
450
|
+
<tr>
|
|
451
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
452
|
+
<td class="oblique">$</td>
|
|
453
|
+
</tr>
|
|
454
|
+
<tr>
|
|
455
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
456
|
+
<td class="oblique">$.web</td>
|
|
457
|
+
</tr>
|
|
458
|
+
<tr>
|
|
459
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
460
|
+
<td class="oblique">$.db</td>
|
|
461
|
+
</tr>
|
|
462
|
+
<tr>
|
|
463
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
464
|
+
<td class="oblique">$.net.http</td>
|
|
465
|
+
</tr>
|
|
466
|
+
<tr>
|
|
467
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
468
|
+
<td class="oblique">$.hdb</td>
|
|
469
|
+
</tr>
|
|
470
|
+
<tr>
|
|
471
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
472
|
+
<td class="oblique">$.db</td>
|
|
473
|
+
</tr>
|
|
474
|
+
<tr>
|
|
475
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
476
|
+
<td class="oblique">$.hdb</td>
|
|
477
|
+
</tr>
|
|
478
|
+
<tr>
|
|
479
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
480
|
+
<td class="oblique">$.net</td>
|
|
481
|
+
</tr>
|
|
482
|
+
<tr>
|
|
483
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
484
|
+
<td class="oblique">$.net.http</td>
|
|
485
|
+
</tr>
|
|
486
|
+
<tr>
|
|
487
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
488
|
+
<td class="oblique">$.web</td>
|
|
489
|
+
</tr>
|
|
490
|
+
<tr>
|
|
491
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
492
|
+
<td class="oblique">$.jobs</td>
|
|
493
|
+
</tr>
|
|
494
|
+
<tr>
|
|
495
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
496
|
+
<td class="oblique">$.jobs</td>
|
|
497
|
+
</tr>
|
|
498
|
+
<tr>
|
|
499
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
500
|
+
<td class="oblique">$.jobs</td>
|
|
501
|
+
</tr>
|
|
502
|
+
<tr>
|
|
503
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
504
|
+
<td class="oblique">$.net</td>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr>
|
|
507
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
508
|
+
<td class="oblique">$.db</td>
|
|
509
|
+
</tr>
|
|
510
|
+
<tr>
|
|
511
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
512
|
+
<td class="oblique">$.net.Mail</td>
|
|
513
|
+
</tr>
|
|
514
|
+
<tr>
|
|
515
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
516
|
+
<td class="oblique">$.db</td>
|
|
517
|
+
</tr>
|
|
518
|
+
<tr>
|
|
519
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
520
|
+
<td class="oblique">$.hdb</td>
|
|
521
|
+
</tr>
|
|
522
|
+
<tr>
|
|
523
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
524
|
+
<td class="oblique">$.net.http</td>
|
|
525
|
+
</tr>
|
|
526
|
+
<tr>
|
|
527
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
528
|
+
<td class="oblique">$.db</td>
|
|
529
|
+
</tr>
|
|
530
|
+
<tr>
|
|
531
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
532
|
+
<td class="oblique">$.hdb</td>
|
|
533
|
+
</tr>
|
|
534
|
+
<tr>
|
|
535
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
536
|
+
<td class="oblique">$.hdb</td>
|
|
537
|
+
</tr>
|
|
538
|
+
<tr>
|
|
539
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
540
|
+
<td class="oblique">$.db</td>
|
|
541
|
+
</tr>
|
|
542
|
+
<tr>
|
|
543
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
544
|
+
<td class="oblique">$.hdb</td>
|
|
545
|
+
</tr>
|
|
546
|
+
<tr>
|
|
547
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
548
|
+
<td class="oblique">$.util</td>
|
|
549
|
+
</tr>
|
|
550
|
+
<tr>
|
|
551
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
552
|
+
<td class="oblique">$</td>
|
|
553
|
+
</tr>
|
|
554
|
+
<tr>
|
|
555
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
556
|
+
<td class="oblique">$.text.analysis</td>
|
|
557
|
+
</tr>
|
|
558
|
+
<tr>
|
|
559
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
560
|
+
<td class="oblique">$.text.mining</td>
|
|
561
|
+
</tr>
|
|
562
|
+
<tr>
|
|
563
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
564
|
+
<td class="oblique">$.net</td>
|
|
565
|
+
</tr>
|
|
566
|
+
<tr>
|
|
567
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
568
|
+
<td class="oblique">$.db</td>
|
|
569
|
+
</tr>
|
|
570
|
+
<tr>
|
|
571
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
572
|
+
<td class="oblique">$.hdb</td>
|
|
573
|
+
</tr>
|
|
574
|
+
<tr>
|
|
575
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
576
|
+
<td class="oblique">$.security</td>
|
|
577
|
+
</tr>
|
|
578
|
+
<tr>
|
|
579
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
580
|
+
<td class="oblique">$.web</td>
|
|
581
|
+
</tr>
|
|
582
|
+
<tr>
|
|
583
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
584
|
+
<td class="oblique">$.web</td>
|
|
585
|
+
</tr>
|
|
586
|
+
<tr>
|
|
587
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
588
|
+
<td class="oblique">$.web</td>
|
|
589
|
+
</tr>
|
|
590
|
+
<tr>
|
|
591
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
592
|
+
<td class="oblique">$.web</td>
|
|
593
|
+
</tr>
|
|
594
|
+
<tr>
|
|
595
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
596
|
+
<td class="oblique">$.web</td>
|
|
597
|
+
</tr>
|
|
598
|
+
<tr>
|
|
599
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
600
|
+
<td class="oblique">$.util</td>
|
|
601
|
+
</tr>
|
|
602
|
+
</table>
|
|
603
|
+
<h3>Namespaces</h3>
|
|
604
|
+
<ul>
|
|
605
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
606
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
607
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
608
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
609
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
610
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
611
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
612
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
613
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
614
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
615
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
616
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
617
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
618
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
619
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
620
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
621
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
622
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
623
|
+
</ul>
|
|
624
|
+
</nav>
|
|
625
|
+
<br clear="both">
|
|
626
|
+
<footer>
|
|
627
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
628
|
+
&
|
|
629
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
630
|
+
</footer>
|
|
631
|
+
<script>prettyPrint();</script>
|
|
632
|
+
<script src="scripts/linenumber.js"></script>
|
|
633
|
+
|
|
634
|
+
</body>
|
|
635
|
+
|
|
636
|
+
</html>
|