@sap/async-xsjs 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +37 -0
  3. package/README.md +445 -0
  4. package/differences.md +162 -0
  5. package/docs/$.Application.html +262 -0
  6. package/docs/$.Session.html +674 -0
  7. package/docs/$.db.CallableStatement.html +2524 -0
  8. package/docs/$.db.Connection.html +511 -0
  9. package/docs/$.db.ParameterMetaData.html +805 -0
  10. package/docs/$.db.PreparedStatement.html +1796 -0
  11. package/docs/$.db.ResultSet.html +1308 -0
  12. package/docs/$.db.ResultSetMetaData.html +800 -0
  13. package/docs/$.db.SQLException.html +259 -0
  14. package/docs/$.db.html +773 -0
  15. package/docs/$.hdb.ColumnMetadata.html +438 -0
  16. package/docs/$.hdb.Connection.html +663 -0
  17. package/docs/$.hdb.ProcedureResult.html +280 -0
  18. package/docs/$.hdb.ResultSet.html +324 -0
  19. package/docs/$.hdb.ResultSetIterator.html +315 -0
  20. package/docs/$.hdb.ResultSetMetaData.html +259 -0
  21. package/docs/$.hdb.SQLException.html +259 -0
  22. package/docs/$.hdb.html +557 -0
  23. package/docs/$.html +471 -0
  24. package/docs/$.jobs.Job.html +783 -0
  25. package/docs/$.jobs.JobLog.html +380 -0
  26. package/docs/$.jobs.JobSchedules.html +852 -0
  27. package/docs/$.jobs.html +238 -0
  28. package/docs/$.net.Destination.html +304 -0
  29. package/docs/$.net.Mail.Part.html +510 -0
  30. package/docs/$.net.Mail.html +504 -0
  31. package/docs/$.net.SMTPConnection.html +347 -0
  32. package/docs/$.net.html +749 -0
  33. package/docs/$.net.http.Client.html +562 -0
  34. package/docs/$.net.http.Destination.html +237 -0
  35. package/docs/$.net.http.Request.html +567 -0
  36. package/docs/$.net.http.html +292 -0
  37. package/docs/$.security.AntiVirus.html +361 -0
  38. package/docs/$.security.Store.html +636 -0
  39. package/docs/$.security.crypto.html +414 -0
  40. package/docs/$.security.html +247 -0
  41. package/docs/$.security.x509.html +373 -0
  42. package/docs/$.text.analysis.Session.html +983 -0
  43. package/docs/$.text.analysis.html +242 -0
  44. package/docs/$.text.html +246 -0
  45. package/docs/$.text.mining.Session.html +2018 -0
  46. package/docs/$.text.mining.html +242 -0
  47. package/docs/$.trace.html +525 -0
  48. package/docs/$.util.SAXParser.html +955 -0
  49. package/docs/$.util.Zip.html +474 -0
  50. package/docs/$.util.codec.html +414 -0
  51. package/docs/$.util.compression.html +357 -0
  52. package/docs/$.util.html +325 -0
  53. package/docs/$.util.sql.html +290 -0
  54. package/docs/$.web.Body.html +333 -0
  55. package/docs/$.web.EntityList.html +296 -0
  56. package/docs/$.web.TupelList.html +496 -0
  57. package/docs/$.web.WebEntityRequest.html +393 -0
  58. package/docs/$.web.WebEntityResponse.html +392 -0
  59. package/docs/$.web.WebRequest.html +560 -0
  60. package/docs/$.web.WebResponse.html +609 -0
  61. package/docs/$.web.html +246 -0
  62. package/docs/Copyright-SAP.html +39 -0
  63. package/docs/Disclaimer-SAP.html +55 -0
  64. package/docs/index.html +232 -0
  65. package/docs/styles/jsdoc-default.css +382 -0
  66. package/lib/AppConfig.js +36 -0
  67. package/lib/AuditLogger.js +41 -0
  68. package/lib/cacert.js +26 -0
  69. package/lib/ctypes.js +153 -0
  70. package/lib/destinations/dest-provider.js +57 -0
  71. package/lib/index.js +235 -0
  72. package/lib/jobs/Action.js +40 -0
  73. package/lib/jobs/Job.js +100 -0
  74. package/lib/jobs/JobManager.js +150 -0
  75. package/lib/jobs/JobsRuntime.js +133 -0
  76. package/lib/jobs/SqlScriptJobRunner.js +36 -0
  77. package/lib/jobs/XsjsJobRunner.js +78 -0
  78. package/lib/jobs/index.js +11 -0
  79. package/lib/logging.js +16 -0
  80. package/lib/middleware.js +125 -0
  81. package/lib/odata/ODataService.js +125 -0
  82. package/lib/odata/index.js +7 -0
  83. package/lib/odata/service-factory.js +26 -0
  84. package/lib/passport-noauth.js +17 -0
  85. package/lib/routes.js +115 -0
  86. package/lib/runtime.js +740 -0
  87. package/lib/sandbox.js +40 -0
  88. package/lib/utils/XsJsFunctionRunner.js +57 -0
  89. package/lib/utils/XsJsLibFunctionRunner.js +57 -0
  90. package/lib/utils/buffer-utils.js +77 -0
  91. package/lib/utils/compression-utils.js +14 -0
  92. package/lib/utils/date-utils.js +104 -0
  93. package/lib/utils/errors/HttpError.js +20 -0
  94. package/lib/utils/errors/wrap-app-error.js +18 -0
  95. package/lib/utils/index.js +17 -0
  96. package/lib/utils/xs-function-runner.js +51 -0
  97. package/lib/utils/xs-types.js +21 -0
  98. package/lib/utils/xspath.js +36 -0
  99. package/lib/utils/xsstack.js +28 -0
  100. package/lib/views/error.html +28 -0
  101. package/lib/xsjs/Application.js +28 -0
  102. package/lib/xsjs/Locale.js +53 -0
  103. package/lib/xsjs/Session.js +31 -0
  104. package/lib/xsjs/constants.js +71 -0
  105. package/lib/xsjs/db/common/DbBase.js +85 -0
  106. package/lib/xsjs/db/common/DbOptions.js +163 -0
  107. package/lib/xsjs/db/common/arguments-validation.js +102 -0
  108. package/lib/xsjs/db/common/connection.js +12 -0
  109. package/lib/xsjs/db/common/enums.js +93 -0
  110. package/lib/xsjs/db/common/execute-batch.js +38 -0
  111. package/lib/xsjs/db/common/parse-time.js +139 -0
  112. package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
  113. package/lib/xsjs/db/dbapi/Connection.js +78 -0
  114. package/lib/xsjs/db/dbapi/DB.js +39 -0
  115. package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
  116. package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
  117. package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
  118. package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
  119. package/lib/xsjs/db/dbapi/Statement.js +514 -0
  120. package/lib/xsjs/db/dbapi/conversions.js +113 -0
  121. package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
  122. package/lib/xsjs/db/hdbapi/Connection.js +525 -0
  123. package/lib/xsjs/db/hdbapi/HDB.js +32 -0
  124. package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
  125. package/lib/xsjs/db/hdbapi/convert.js +77 -0
  126. package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
  127. package/lib/xsjs/db/index.js +4 -0
  128. package/lib/xsjs/index.js +13 -0
  129. package/lib/xsjs/jobs/Job.js +228 -0
  130. package/lib/xsjs/jobs/Jobs.js +11 -0
  131. package/lib/xsjs/jobs/Logs.js +127 -0
  132. package/lib/xsjs/jobs/Schedule.js +110 -0
  133. package/lib/xsjs/jobs/Schedules.js +108 -0
  134. package/lib/xsjs/net/Destination.js +43 -0
  135. package/lib/xsjs/net/http/Client.js +220 -0
  136. package/lib/xsjs/net/http/HTTP.js +72 -0
  137. package/lib/xsjs/net/index.js +5 -0
  138. package/lib/xsjs/net/smtp/Mail.js +38 -0
  139. package/lib/xsjs/net/smtp/Part.js +30 -0
  140. package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
  141. package/lib/xsjs/net/smtp/index.js +18 -0
  142. package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
  143. package/lib/xsjs/require.js +39 -0
  144. package/lib/xsjs/security/AntiVirus.js +31 -0
  145. package/lib/xsjs/security/Store.js +119 -0
  146. package/lib/xsjs/security/crypto.js +23 -0
  147. package/lib/xsjs/security/index.js +5 -0
  148. package/lib/xsjs/security/x509.js +12 -0
  149. package/lib/xsjs/text/analysis/Session.js +128 -0
  150. package/lib/xsjs/text/index.js +30 -0
  151. package/lib/xsjs/text/mining/Session.js +82 -0
  152. package/lib/xsjs/trace/trace.js +41 -0
  153. package/lib/xsjs/util/SAXParser.js +174 -0
  154. package/lib/xsjs/util/Zip.js +220 -0
  155. package/lib/xsjs/util/codec.js +33 -0
  156. package/lib/xsjs/util/compression.js +24 -0
  157. package/lib/xsjs/util/index.js +22 -0
  158. package/lib/xsjs/web/BasicWebEntity.js +41 -0
  159. package/lib/xsjs/web/EntityList.js +11 -0
  160. package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
  161. package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
  162. package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
  163. package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
  164. package/lib/xsjs/web/WebBody.js +135 -0
  165. package/lib/xsjs/web/WebEntityRequest.js +40 -0
  166. package/lib/xsjs/web/WebEntityResponse.js +26 -0
  167. package/lib/xsjs/web/WebRequest.js +209 -0
  168. package/lib/xsjs/web/WebResponse.js +183 -0
  169. package/lib/xsjs/web/index.js +4 -0
  170. package/lib/xsjs/web/utils/HeadersParser.js +53 -0
  171. package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
  172. package/lib/xsjs/web/utils/MultipartParser.js +163 -0
  173. package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
  174. package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
  175. package/lib/xsjslib/TextBundleWrapper.js +46 -0
  176. package/lib/xsjslib/index.js +11 -0
  177. package/npm-shrinkwrap.json +11540 -0
  178. package/package.json +84 -0
package/docs/$.html ADDED
@@ -0,0 +1,471 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Namespace: $</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="$.html">
15
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Namespace: $</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ $
23
+ </h2>
24
+ </header>
25
+ <article>
26
+ <div class="container-overview">
27
+ <div class="description">Global scope for the SAP HANA Extended Application Services (SAP HANA XS) async API
28
+ </div>
29
+ <dl class="details">
30
+ </dl>
31
+ </div>
32
+ <h3 class="subsection-title">Classes</h3>
33
+ <dl>
34
+ <dt><a href="$.Application.html">Application</a></dt>
35
+ <dd></dd>
36
+ <dt><a href="$.Session.html">Session</a></dt>
37
+ <dd></dd>
38
+ </dl>
39
+ <h3 class="subsection-title">Namespaces</h3>
40
+ <dl>
41
+ <dt>
42
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.db"><a
43
+ href="$.db.html">db</a></a></dt>
44
+ <dd></dd>
45
+ <dt>
46
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.hdb"><a
47
+ href="$.hdb.html">hdb</a></a></dt>
48
+ <dd></dd>
49
+ <dt>
50
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.jobs"><a
51
+ href="$.jobs.html">jobs</a></a></dt>
52
+ <dd></dd>
53
+ <dt>
54
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.net"><a
55
+ href="$.net.html">net</a></a></dt>
56
+ <dd></dd>
57
+ <dt>
58
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.security"><a
59
+ href="$.security.html">security</a></a></dt>
60
+ <dd></dd>
61
+ <dt>
62
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.text"><a
63
+ href="$.text.html">text</a></a></dt>
64
+ <dd></dd>
65
+ <dt>
66
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.trace"><a
67
+ href="$.trace.html">trace</a></a></dt>
68
+ <dd></dd>
69
+ <dt>
70
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.util"><a
71
+ href="$.util.html">util</a></a></dt>
72
+ <dd></dd>
73
+ <dt>
74
+ <a href="https://help.sap.com/http.svc/outputlink?productname=SAP_HANA_PLATFORM&amp;projectname=Manual upload&amp;deliverable=3de842783af24336b6305a3c0223a369&amp;version=2.0.01&amp;language=en-US&amp;state=PRODUCTION&amp;filepath=namespaces.html&amp;transtype=custom-html&amp;buildablemaploio=&amp;projectphio=&amp;dependantprojects=#$.web"><a
75
+ href="$.web.html">web</a></a></dt>
76
+ <dd></dd>
77
+ </dl>
78
+ <h3 class="subsection-title">Members</h3>
79
+ <dl>
80
+ <dt>
81
+ <h4 class="name" id="application"><span class="type-signature"></span>application<span
82
+ class="type-signature"> :<a href="$.Application.html">$.Application</a></span></h4>
83
+ </dt>
84
+ <dd>
85
+ <div class="description">
86
+ The current XS application
87
+ </div>
88
+ <h5>Type:</h5>
89
+ <ul>
90
+ <li>
91
+ <span class="param-type"><a href="$.Application.html">$.Application</a></span>
92
+ </li>
93
+ </ul>
94
+ <dl class="details">
95
+ </dl>
96
+ </dd>
97
+ <dt>
98
+ <h4 class="name" id="request"><span class="type-signature"></span>request<span
99
+ class="type-signature"> :<a href="$.web.WebRequest.html">$.web.WebRequest</a></span></h4>
100
+ </dt>
101
+ <dd>
102
+ <div class="description">
103
+ The HTTP request instance that is passed over from the HTTP server to the XS Engine.
104
+ Use this object as input for your XS Engine script.
105
+ </div>
106
+ <h5>Type:</h5>
107
+ <ul>
108
+ <li>
109
+ <span class="param-type"><a href="$.web.WebRequest.html">$.web.WebRequest</a></span>
110
+ </li>
111
+ </ul>
112
+ <dl class="details">
113
+ </dl>
114
+ </dd>
115
+ <dt>
116
+ <h4 class="name" id="response"><span class="type-signature"></span>response<span
117
+ class="type-signature"> :<a href="$.web.WebResponse.html">$.web.WebResponse</a></span></h4>
118
+ </dt>
119
+ <dd>
120
+ <div class="description">
121
+ The HTTP response instance that is passed over to the HTTP server.
122
+ Use this object as output for your XS Engine script.
123
+ </div>
124
+ <h5>Type:</h5>
125
+ <ul>
126
+ <li>
127
+ <span class="param-type"><a href="$.web.WebResponse.html">$.web.WebResponse</a></span>
128
+ </li>
129
+ </ul>
130
+ <dl class="details">
131
+ </dl>
132
+ </dd>
133
+ <dt>
134
+ <h4 class="name" id="session"><span class="type-signature"></span>session<span
135
+ class="type-signature"> :<a href="$.Session.html">$.Session</a></span></h4>
136
+ </dt>
137
+ <dd>
138
+ <div class="description">
139
+ The current XS session
140
+ </div>
141
+ <h5>Type:</h5>
142
+ <ul>
143
+ <li>
144
+ <span class="param-type"><a href="$.Session.html">$.Session</a></span>
145
+ </li>
146
+ </ul>
147
+ <dl class="details">
148
+ </dl>
149
+ </dd>
150
+ </dl>
151
+ <h3 class="subsection-title">Methods</h3>
152
+ <dl>
153
+ <dt>
154
+ <h4 class="name" id="import"><span class="type-signature">async </span>import<span class="signature">(package, library)</span><span
155
+ class="type-signature"> &rarr; {Object}</span></h4>
156
+ </dt>
157
+ <dd>
158
+ <div class="description">
159
+ Imports a server-side JavaScript library artifact.
160
+ The library is a design-time artifact located in the repository. JavaScript library design-time
161
+ artifacts have the suffix '.xsjslib'.
162
+ </div>
163
+ <h5>Parameters:</h5>
164
+ <table class="params">
165
+ <thead>
166
+ <tr>
167
+ <th>Name</th>
168
+ <th>Type</th>
169
+ <th class="last">Description</th>
170
+ </tr>
171
+ </thead>
172
+ <tbody>
173
+ <tr>
174
+ <td class="name"><code>package</code></td>
175
+ <td class="type">
176
+ <span class="param-type">string</span>
177
+ </td>
178
+ <td class="description last">The name of the package in which the library object is
179
+ located
180
+ </td>
181
+ </tr>
182
+ <tr>
183
+ <td class="name"><code>library</code></td>
184
+ <td class="type">
185
+ <span class="param-type">string</span>
186
+ </td>
187
+ <td class="description last">The name of the library object in the repository (without the
188
+ suffix .xsjslib)
189
+ </td>
190
+ </tr>
191
+ </tbody>
192
+ </table>
193
+ <dl class="details">
194
+ </dl>
195
+ <h5>Throws:</h5>
196
+ <div class="param-desc">
197
+ Throws an error if the import failed or if the parameters were not valid.
198
+ </div>
199
+ <h5>Returns:</h5>
200
+ <dl>
201
+ <dt>
202
+ Type
203
+ </dt>
204
+ <dd>
205
+ <span class="param-type">Object</span>
206
+ </dd>
207
+ </dl>
208
+ <h5>Example</h5>
209
+ <pre class="prettyprint"><code>// import math lib
210
+ var mathlib = <b>await </b>$.import("sap.myapp.lib","math");
211
+
212
+ // use math lib
213
+ var max_res = <b>await </b>mathlib.max(3, 7);
214
+ // legacy usage
215
+ var max_res_old = <b>await </b>$.sap.myapp.lib.math.max(3, 7);</code></pre>
216
+ </dd>
217
+ <dt>
218
+ <h4 class="name" id="import"><span class="type-signature">async </span>import<span class="signature">(path)</span><span
219
+ class="type-signature"> &rarr; {Object}</span></h4>
220
+ </dt>
221
+ <dd>
222
+ <div class="description">
223
+ Imports a server-side JavaScript library artifact.
224
+ The library is a design-time artifact located in the repository. JavaScript library design-time
225
+ artifacts have the suffix '.xsjslib'.
226
+ </div>
227
+ <h5>Parameters:</h5>
228
+ <table class="params">
229
+ <thead>
230
+ <tr>
231
+ <th>Name</th>
232
+ <th>Type</th>
233
+ <th class="last">Description</th>
234
+ </tr>
235
+ </thead>
236
+ <tbody>
237
+ <tr>
238
+ <td class="name"><code>path</code></td>
239
+ <td class="type">
240
+ <span class="param-type">string</span>
241
+ </td>
242
+ <td class="description last">An absolute or relative path referring the library to be
243
+ imported
244
+ </td>
245
+ </tr>
246
+ </tbody>
247
+ </table>
248
+ <dl class="details">
249
+ </dl>
250
+ <h5>Throws:</h5>
251
+ <div class="param-desc">
252
+ Throws an error if the import failed or if the parameters were not valid.
253
+ </div>
254
+ <h5>Returns:</h5>
255
+ <dl>
256
+ <dt>
257
+ Type
258
+ </dt>
259
+ <dd>
260
+ <span class="param-type">Object</span>
261
+ </dd>
262
+ </dl>
263
+ <h5>Example</h5>
264
+ <pre class="prettyprint"><code>// import math lib
265
+ var mathlib = <b>await </b>$.import("/sap/myapp/lib/math.xsjslib");
266
+
267
+ // use math lib
268
+ var max_res = <b>await </b>mathlib.max(3, 7);
269
+ // legacy usage
270
+ var max_res_old = <b>await </b>$.sap.myapp.lib.math.max(3, 7);</code></pre>
271
+ </dd>
272
+ </dl>
273
+ </article>
274
+ </section>
275
+ </div>
276
+ <nav>
277
+ <h2><a href="index.html">Index</a></h2>
278
+ <h3>Classes</h3>
279
+ <table>
280
+ <tr>
281
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
282
+ <td class="oblique">$.security</td>
283
+ </tr>
284
+ <tr>
285
+ <td><a href="$.Application.html">Application</a></td>
286
+ <td class="oblique">$</td>
287
+ </tr>
288
+ <tr>
289
+ <td><a href="$.web.Body.html">Body</a></td>
290
+ <td class="oblique">$.web</td>
291
+ </tr>
292
+ <tr>
293
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
294
+ <td class="oblique">$.db</td>
295
+ </tr>
296
+ <tr>
297
+ <td><a href="$.net.http.Client.html">Client</a></td>
298
+ <td class="oblique">$.net.http</td>
299
+ </tr>
300
+ <tr>
301
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
302
+ <td class="oblique">$.hdb</td>
303
+ </tr>
304
+ <tr>
305
+ <td><a href="$.db.Connection.html">Connection</a></td>
306
+ <td class="oblique">$.db</td>
307
+ </tr>
308
+ <tr>
309
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
310
+ <td class="oblique">$.hdb</td>
311
+ </tr>
312
+ <tr>
313
+ <td><a href="$.net.Destination.html">Destination</a></td>
314
+ <td class="oblique">$.net</td>
315
+ </tr>
316
+ <tr>
317
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
318
+ <td class="oblique">$.net.http</td>
319
+ </tr>
320
+ <tr>
321
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
322
+ <td class="oblique">$.web</td>
323
+ </tr>
324
+ <tr>
325
+ <td><a href="$.jobs.Job.html">Job</a></td>
326
+ <td class="oblique">$.jobs</td>
327
+ </tr>
328
+ <tr>
329
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
330
+ <td class="oblique">$.jobs</td>
331
+ </tr>
332
+ <tr>
333
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
334
+ <td class="oblique">$.jobs</td>
335
+ </tr>
336
+ <tr>
337
+ <td><a href="$.net.Mail.html">Mail</a></td>
338
+ <td class="oblique">$.net</td>
339
+ </tr>
340
+ <tr>
341
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
342
+ <td class="oblique">$.db</td>
343
+ </tr>
344
+ <tr>
345
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
346
+ <td class="oblique">$.net.Mail</td>
347
+ </tr>
348
+ <tr>
349
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
350
+ <td class="oblique">$.db</td>
351
+ </tr>
352
+ <tr>
353
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
354
+ <td class="oblique">$.hdb</td>
355
+ </tr>
356
+ <tr>
357
+ <td><a href="$.net.http.Request.html">Request</a></td>
358
+ <td class="oblique">$.net.http</td>
359
+ </tr>
360
+ <tr>
361
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
362
+ <td class="oblique">$.db</td>
363
+ </tr>
364
+ <tr>
365
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
366
+ <td class="oblique">$.hdb</td>
367
+ </tr>
368
+ <tr>
369
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
370
+ <td class="oblique">$.hdb</td>
371
+ </tr>
372
+ <tr>
373
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
374
+ <td class="oblique">$.db</td>
375
+ </tr>
376
+ <tr>
377
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
378
+ <td class="oblique">$.hdb</td>
379
+ </tr>
380
+ <tr>
381
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
382
+ <td class="oblique">$.util</td>
383
+ </tr>
384
+ <tr>
385
+ <td><a href="$.Session.html">Session</a></td>
386
+ <td class="oblique">$</td>
387
+ </tr>
388
+ <tr>
389
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
390
+ <td class="oblique">$.text.analysis</td>
391
+ </tr>
392
+ <tr>
393
+ <td><a href="$.text.mining.Session.html">Session</a></td>
394
+ <td class="oblique">$.text.mining</td>
395
+ </tr>
396
+ <tr>
397
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
398
+ <td class="oblique">$.net</td>
399
+ </tr>
400
+ <tr>
401
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
402
+ <td class="oblique">$.db</td>
403
+ </tr>
404
+ <tr>
405
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
406
+ <td class="oblique">$.hdb</td>
407
+ </tr>
408
+ <tr>
409
+ <td><a href="$.security.Store.html">Store</a></td>
410
+ <td class="oblique">$.security</td>
411
+ </tr>
412
+ <tr>
413
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
414
+ <td class="oblique">$.web</td>
415
+ </tr>
416
+ <tr>
417
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
418
+ <td class="oblique">$.web</td>
419
+ </tr>
420
+ <tr>
421
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
422
+ <td class="oblique">$.web</td>
423
+ </tr>
424
+ <tr>
425
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
426
+ <td class="oblique">$.web</td>
427
+ </tr>
428
+ <tr>
429
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
430
+ <td class="oblique">$.web</td>
431
+ </tr>
432
+ <tr>
433
+ <td><a href="$.util.Zip.html">Zip</a></td>
434
+ <td class="oblique">$.util</td>
435
+ </tr>
436
+ </table>
437
+ <h3>Namespaces</h3>
438
+ <ul>
439
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
440
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
441
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
442
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
443
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
444
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
445
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
446
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
447
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
448
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
449
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
450
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
451
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
452
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
453
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
454
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
455
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
456
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
457
+ </ul>
458
+ </nav>
459
+ <br clear="both">
460
+ <footer>
461
+ <a href="Copyright-SAP.html">Copyright</a>
462
+ &
463
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
464
+ </footer>
465
+ <script>prettyPrint();</script>
466
+ <script src="scripts/linenumber.js"></script>
467
+
468
+
469
+ </body>
470
+
471
+ </html>