diff --git a/README.md b/README.md index 69e49b65..9627c448 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,20 @@ The **Progress Spark Toolkit** is a [CCS-compliant](https://github.com/progress/CCS) reference implementation from Progress meant to aid in creating an ABL application which provides RESTful API's for microservices. This repository primarily contains ABL artifacts and was built specifically for the **Progress Application Server for OpenEdge** to provide the back-end (server-side) support for exposing ABL logic via HTTP/HTTP. -**Latest Release:** v6.0.2 (April 2022) for OE 11.7.13+ and OE 12.2.8+ +**Latest Release:** v7.0.0 (Sept. 2025) for OE 12.2.8+ ## Requirements -For reference, the CCS libraries and newer Business Logic features are included with OpenEdge versions **11.7.8+** and **12.2.4+** though we recommend use of the latest LTS release or latest supported OpenEdge 12 release. Use of toolkit version **6.0.2** or later is highly recommended if you are on an earlier version. Current builds of the PL files in the following distribution directories are compiled using the following OpenEdge versions for proper compatibility: +For reference, the CCS libraries and newer Business Logic features are included with OpenEdge version **12.2.4+** and we recommend use of the latest OpenEdge 12 LTS release. Current builds of the PL files in the following distribution directories are compiled using the following OpenEdge versions for proper compatibility: -* /dist/oe11 - 11.7.13+ preferred -* /dist/oe12 - 12.2.8+ preferred +* /dist/oe122 - 12.2 LTS through 12.7 +* /dist/oe128 - 12.8 LTS (Preferred) +* /dist/oe130 - 13.0.x (TBD) **Previous Release Requirements:** +OE 11.7.x for v6.0.x (retired product, deprecated support) + OE 11.7.5+ or OE 12.1+ for v5.0.x (deprecated) OE 11.7.4+ or OE 12.0+ for v4.4.0 through 4.6.x (deprecated) @@ -23,8 +26,8 @@ OE 11.7.3+ for v4.3.0 (deprecated, upgrade required) ### Supporting Tools -- Apache Ant 1.9.x+ (included with OE 11.7+/12.0+ at DLC/ant) executed as `DLC/bin/proant` -- Progress Compile Tools, aka. "PCT" (included as of OE 11.7.3/12.0+ at DLC/pct/PCT.jar) +- Apache Ant 1.9.x+ (included with OE 12.0+ at DLC/ant) executed as `DLC/bin/proant` +- Progress Compile Tools, aka. "PCT" (included since OE 12.0+ at DLC/pct/PCT.jar) ## Project Usage @@ -38,7 +41,7 @@ As previously mentioned, the Progress Spark Toolkit library is intended for use 5. Copy the .json and .cp files from the `/cfg/` folder to a new `CATALINA_BASE/conf/spark/` directory. 6. If intending to utilize OERealm security, copy the `/cfg/Realm/SparkRealm.json` file to `CATALINA_BASE/conf/spark/` and `/cfg/Realm/SparkRealm.cp` to `CATALINA_BASE/common/lib/`. -**CCS Note:** As of release **4.6.0** the inclusion of the CCS source code and Ccs.pl has been discontinued and all related source is removed from this repository. As of **OpenEdge 11.7.5 / 12.1** all CCS class interfaces are already included within the product and are utilized to build the Spark.pl library. Therefore, it is no longer necessary to include this PL file within your PROPATH or included as part of your code promotion processes. +**CCS Note:** As of **OpenEdge 12.1** all CCS class interfaces are already included within the product and are utilized to build the `Spark.pl` library. Therefore, it is no longer necessary to include a separate `ccs.pl` file within your PROPATH or included as part of your code promotion processes. ## Contributions / Changes diff --git a/cfg/Realm/SparkRealm.json b/cfg/Realm/SparkRealm.json index 8f7b5795..ace08b97 100644 --- a/cfg/Realm/SparkRealm.json +++ b/cfg/Realm/SparkRealm.json @@ -1,6 +1,6 @@ { "debug": false, "domain": "OESPA", - "password": "odeb0::h89wUJTwvKly2BsqXZeX3hAM8LHnMLypry7LZsxwFKWCQ76JPqKXj0idvZZrLM2S", + "password": "sp4rkR3alm", "role": "SPAClient" } diff --git a/cfg/Realm/SparkRealmREADME.txt b/cfg/Realm/SparkRealmREADME.txt index 18690c85..7ff313c1 100644 --- a/cfg/Realm/SparkRealmREADME.txt +++ b/cfg/Realm/SparkRealmREADME.txt @@ -10,41 +10,42 @@ To generate a serialized Client Principal file that will be passed from the REST 1. Use the genspacp utility from the $DLC/bin directory as follows: -genspacp -password sp4rkR3alm -user sparkRest -file SparkRealm.cp + genspacp -password sp4rkR3alm -user sparkRest -file SparkRealm.cp -genspacp 1.0 -Generated sealed Client Principal... - User: sparkRest@OESPA - Id: 6EeGh6ptSrWBp9Ekrp0kRw - Role: SPAClient - Encoded Password: oech1::23227b35391760323c3f - File: SparkRealm.cp - State: SSO from external authentication system - Seal is valid + genspacp 1.1 + Generated sealed Client Principal... + User: sparkRest@OESPA + Id: FCEc+NW3QIW5RIpp1TuMgQ + Role: SPAClient + File: SparkRealm.cp + State: SSO from external authentication system + Seal is valid -2. Copy the encoded password generated above and update the password in the SparkRealm.json file -Note: Be sure to state the correct domain name (default "OESPA") as well within this config file. +2. Copy the original, clear-text password used above and update the password in the SparkRealm.json file. +Reminder: Be sure to state the correct domain name (default "OESPA") as well within the JSON config file. -3. Copy the role generated above and update the role in the SparkRealm.json file + Security Note: Ideally this value should be encrypted in such a way that it can be decrypted from within the OERealm service. The encrypted value would be stored in the JSON file, while the OERealm service would decrypt it before applying via VALIDATE-SEAL("") against the incoming request's CP token. -4. Copy the SparkRealm.cp to somewhere the REST application can read it from -Note: You would expect this to be the classes directory, i.e. {$CATALINA_BASE}/webapps//WEB-INF/classes - However as of 11.5+ for PAS the intended location is the {$CATALINA_BASE}/common/lib directory +3. Copy the role as generated above (eg. "SPAClient") and update the role in the "SparkRealm.json" file. -5. Copy the SparkRealm.json file to {$CATALINA_BASE}/conf/spark (or your SPARK_CONF directory). +4. Copy the "SparkRealm.cp" file to somewhere the REST application can read it from: e.g. the {$CATALINA_BASE}/common/lib directory. + +5. Copy the "SparkRealm.json" file to {$CATALINA_BASE}/conf/spark (or your SPARK_CONF directory). 6. Specify "SparkRealm.cp" file as the "realmTokenFile" attribute value in the oeablSecurity-*-oerealm.xml file. Note: This is located in the OERealmUserDetails bean. -7. Restart the PAS instance to ensure that the configuration change is picked up. +7. Update the password in the ABLDomainRegistry.csv replacing any existing existing value following the "spark" domain (default: "spark01"). + +8. Run the following command to generate the binary keystore file: + DLC/bin/gendomreg ABLDomainRegistry.csv ABLDomainRegistry.keystore -New for OE12: +9. Copy the updated keystore file to the CATALINA_BASE/conf directory. -1. Copy the encoded password into the ABLDomainRegistry.csv replacing any existing key for the "spark" domain. +10. Restart the PAS instance to ensure that the configuration change is picked up. -2. Run the following command to generate the binary keystore file: -DLC/bin/gendomreg ABLDomainRegistry.csv ABLDomainRegistry.keystore +Alternatively, the OESPA domain could be defined in the trusted domain registry in a database connected to the OERealm service provider, set with the same domain access code. In order to obtain validation of the CP token you would use VALIDATE-SEAL() without a parameter. This approach will use the domain access code associated with the OESPA domain (in the trusted domain registry of the database) to validate the incoming CP token as generated by the genspacp utility. -3. Copy the updated keystore file to the CATALINA_BASE/conf directory. +See also, https://docs.progress.com/bundle/abl-reference/page/VALIDATE-SEAL-method.html \ No newline at end of file diff --git a/cfg/SparkResetREADME.txt b/cfg/SparkResetREADME.txt index 6cfa1d54..f8683a97 100644 --- a/cfg/SparkResetREADME.txt +++ b/cfg/SparkResetREADME.txt @@ -7,12 +7,11 @@ The "ResetClientPrincipal" parameter in the config points to a serialized Client 1. To Generate a serialized Client Principal file, use the genspacp utility in $DLC/bin proenv>genspacp -password spark01 -user sparkRest -role NoAccess -domain spark -file SparkReset.cp -genspacp 1.0 +genspacp 1.1 Generated sealed Client Principal... User: sparkRest@spark - Id: R0omT2H7TN6p7Gyn1Rbq+g + Id: cltI3rp3TkW1HxWvTM+XHA Role: NoAccess - Encoded Password: oech1::23222e35397562 File: SparkReset.cp State: SSO from external authentication system Seal is valid @@ -22,3 +21,11 @@ domain, and password must match the domain(s) created in the database, with the Note: the -password parameter above is NOT the users password, this is the Domain Access Code. 3. Copy the serialized Client Principal file to the standard config location, where your other configs reside. + +4. For the "session.json" file use the genpassword utility to generate the domain passcode using the "odeb0" prefix. + +proenv>genpassword -prefix odeb0 -password spark01 +odeb0::aqb/3jhBtLDaqwvy0c1440wXieKSyGTFg8QLu6hn4ZWuzD5shUpT24ti1BsfM4up + +5. Supply the generated passcode into the "accessCode" property, escaping any forward slashes as necessary. + diff --git a/cfg/session.json b/cfg/session.json index 7f276819..0ec73f39 100644 --- a/cfg/session.json +++ b/cfg/session.json @@ -1,12 +1,16 @@ { - "Config": { - "SessionParam": [{ - "ResetClientPrincipal": "SparkReset.cp" - }], - "Domains": [{ - "domain": "", - "accessCode": "", - "description": "" - }] - } + "Config": { + "SessionParam": [ + { + "ResetClientPrincipal": "SparkReset.cp" + } + ], + "Domains": [ + { + "domain": "", + "accessCode": "", + "description": "" + } + ] + } } \ No newline at end of file diff --git a/dist/oe117/Diagnostic.pl b/dist/oe117/Diagnostic.pl deleted file mode 100644 index 7f75b2ab..00000000 Binary files a/dist/oe117/Diagnostic.pl and /dev/null differ diff --git a/dist/oe117/Spark.pl b/dist/oe117/Spark.pl deleted file mode 100644 index eb25f906..00000000 Binary files a/dist/oe117/Spark.pl and /dev/null differ diff --git a/dist/oe122/Spark.pl b/dist/oe122/Spark.pl index 4a775d4c..42a10118 100644 Binary files a/dist/oe122/Spark.pl and b/dist/oe122/Spark.pl differ diff --git a/dist/oe125/Spark.pl b/dist/oe128/Spark.pl similarity index 82% rename from dist/oe125/Spark.pl rename to dist/oe128/Spark.pl index 3d151d5f..3fab6019 100644 Binary files a/dist/oe125/Spark.pl and b/dist/oe128/Spark.pl differ diff --git a/dist/oe130/Spark.pl b/dist/oe130/Spark.pl new file mode 100644 index 00000000..89971280 Binary files /dev/null and b/dist/oe130/Spark.pl differ diff --git a/docs/ABLDuck/data.js b/docs/ABLDuck/data.js index c8a4e1e2..d54225a4 100644 --- a/docs/ABLDuck/data.js +++ b/docs/ABLDuck/data.js @@ -1 +1,18133 @@ -Docs = {"data":{"guides":[],"videos":[],"examples":[],"guideSearch":{},"localStorageDb":"docs","message":"","tests":false,"showPrintButton":false,"source":false,"classes":[{"name":"Spark.Core.Manager.IConnectionManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"Spark.Core.Message.IConfigMessage","extends":"Spark.Core.Message.IAbstractMessage","icon":"icon-interface"},{"name":"Spark.Core.Util.LongcharInputStream","extends":"Progress.IO.InputStream","icon":"icon-class"},{"name":"Spark.Core.Manager.SessionAttributeEnum","extends":"Progress.Lang.Enum","icon":"icon-enum"},{"name":"OpenEdge.Core.Assertion.AssertObject","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.DataSetTools","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.FormatTools","extends":"","icon":"icon-class"},{"name":"Spark.Core.Message.IContextMessage","extends":"Spark.Core.Message.IAbstractMessage","icon":"icon-interface"},{"name":"OpenEdge.BusinessLogic.QueryGroup","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.IStateManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"Spark.Core.Manager.StartupManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Manager.ISessionManager","extends":"Ccs.Common.ISessionManager","icon":"icon-interface"},{"name":"Spark.Core.Service.IDynamicEntity","extends":"Ccs.Common.IService","icon":"icon-interface"},{"name":"Spark.Core.Util.ApplicationError","extends":"Progress.Lang.AppError","icon":"icon-class"},{"name":"Spark.Diagnostic.Util.OEMetricsConfig","extends":"Spark.Diagnostic.Util.OSPath","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.GetDataRequest","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum","extends":"Spark.Core.Util.EnumMember","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.FilterParser","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Convert","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.MethodSignature","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.IO.QueryEntryDeserializer","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Binary","extends":"","icon":"icon-class"},{"name":"Spark.Core.Security.HOTP","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.Manager","extends":"Spark.Core.Service.Service","icon":"icon-class"},{"name":"OpenEdge.Core.Util.MathUtil","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.ITranslationManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"OpenEdge.BusinessLogic.GetDataTableResponse","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.StateManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Security.IAuthHandler","extends":"","icon":"icon-interface"},{"name":"Spark.Core.Util.Annotate","extends":"","icon":"icon-class"},{"name":"Spark.Core.Message.AbstractMessage","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.IServiceManager","extends":"Ccs.Common.IServiceManager","icon":"icon-interface"},{"name":"Spark.Core.Manager.TranslationManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Service.DynamicResource","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.ConnectionManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Util.LifecycleScope","extends":"","icon":"icon-class"},{"name":"Spark.Core.Handler.StatusHandler","extends":"OpenEdge.Web.WebHandler","icon":"icon-class"},{"name":"Spark.Core.Util.Sendmail","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.QueryDefinition","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.GetResultCountResponse","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.QueryOperatorHelper","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.UpdateModeEnum","extends":"Progress.Lang.Enum","icon":"icon-enum"},{"name":"Spark.Core.Manager.ISchemaManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"Spark.Core.Manager.CatalogManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Util.EnumValueMember","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.UpdateDataRequest","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.CryptoEncryptAlgorithmEnum","extends":"Spark.Core.Util.EnumMember","icon":"icon-class"},{"name":"Spark.Core.Util.LongcharOutputStream","extends":"Progress.IO.OutputStream","icon":"icon-class"},{"name":"Spark.Core.Manager.ILoggingManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"Spark.Core.Util.ErrorTypeEnum","extends":"Spark.Core.Util.EnumMember","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Query.QueryBuilder","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Reflection","extends":"","icon":"icon-class"},{"name":"Spark.Core.Handler.DOHEventHandler","extends":"","icon":"icon-class"},{"name":"Spark.Core.Message.IAbstractMessage","extends":"","icon":"icon-interface"},{"name":"OpenEdge.BusinessLogic.NamedQuery","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.EnumNameMember","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.LoggingManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Constant.OERealmDefs","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.AblFilterParser","extends":"OpenEdge.BusinessLogic.Filter.FilterParser","icon":"icon-class"},{"name":"Spark.Core.Util.OSTools","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.JfpFilterParser","extends":"OpenEdge.BusinessLogic.Filter.AblFilterParser","icon":"icon-class"},{"name":"Spark.Core.Util.StopError","extends":"Spark.Core.Util.ApplicationError","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.KendoFilterParser","extends":"OpenEdge.BusinessLogic.Filter.FilterParser","icon":"icon-class"},{"name":"Spark.Core.Util.EnumNameDescMember","extends":"","icon":"icon-class"},{"name":"Spark.Core.Service.Service","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.FilterParserRegistry","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.RequestScope","extends":"Spark.Core.Util.LifecycleScope","icon":"icon-class"},{"name":"Spark.Core.Util.TimeOutError","extends":"Spark.Core.Util.ApplicationError","icon":"icon-class"},{"name":"Spark.Core.Manager.SessionManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Manager.ServiceLifeCycleEnum","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.TransientScope","extends":"Spark.Core.Util.LifecycleScope","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum","extends":"Progress.Lang.Enum","icon":"icon-enum"},{"name":"OpenEdge.BusinessLogic.GetDataTableRequest","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.String","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.ICatalogManager","extends":"Ccs.Common.IManager","icon":"icon-interface"},{"name":"OpenEdge.Core.Util.AnnotationWriter","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.GetTableResultCountResponse","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.NamedQueryParameter","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.ForeignKey","extends":"Progress.Json.ObjectModel.JsonObject","icon":"icon-class"},{"name":"OpenEdge.Core.Json.JsonConverter","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.Json.JsonSerializer","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Serialize","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.Util.UTF8Encoder","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.ContainerScope","extends":"Spark.Core.Util.LifecycleScope","icon":"icon-class"},{"name":"Spark.Core.Service.ISparkEntity","extends":"Ccs.BusinessLogic.IUpdatableBusinessEntity","icon":"icon-interface"},{"name":"OpenEdge.BusinessLogic.BusinessEntity","extends":"","icon":"icon-class"},{"name":"Spark.Diagnostic.Util.OEMetrics","extends":"Spark.Diagnostic.Util.Logger","icon":"icon-class"},{"name":"Spark.Core.Manager.ServiceManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder","extends":"OpenEdge.Core.Util.ConfigBuilder","icon":"icon-class"},{"name":"Spark.Core.Manager.ClientContext","extends":"","icon":"icon-class"},{"name":"Spark.Core.Message.ContextMessage","extends":"Spark.Core.Message.AbstractMessage","icon":"icon-class"},{"name":"Spark.Core.Util.EnumMember","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.FieldInfo","extends":"Progress.Json.ObjectModel.JsonObject","icon":"icon-class"},{"name":"Spark.Core.Manager.SchemaManager","extends":"Spark.Core.Manager.Manager","icon":"icon-class"},{"name":"Spark.Core.Security.TOTP","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.QuerySortEntry","extends":"","icon":"icon-class"},{"name":"Spark.Core.Security.HMAC","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Base32","extends":"","icon":"icon-class"},{"name":"Spark.Core.Util.Timer","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.Json.IJsonSerializer","extends":"","icon":"icon-interface"},{"name":"Spark.Core.Util.CryptoTools","extends":"","icon":"icon-class"},{"name":"Spark.Diagnostic.Util.RemoteMetrics","extends":"Spark.Diagnostic.Util.Logger","icon":"icon-class"},{"name":"Spark.Core.Service.ICatalog","extends":"Ccs.Common.IService","icon":"icon-interface"},{"name":"OpenEdge.BusinessLogic.GetDataResponse","extends":"","icon":"icon-class"},{"name":"Spark.Core.Manager.IStartupManager","extends":"Ccs.Common.IStartupManager","icon":"icon-interface"},{"name":"Spark.Diagnostic.Util.OSPath","extends":"","icon":"icon-class"},{"name":"Spark.Core.Security.OEUserRealm","extends":"","icon":"icon-class"},{"name":"Spark.Core.Service.DynamicEntity","extends":"Spark.Core.Service.SparkEntity","icon":"icon-class"},{"name":"Spark.Core.Util.Strings","extends":"","icon":"icon-class"},{"name":"OpenEdge.BusinessLogic.QueryPredicate","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.MemptrInputStream","extends":"Progress.IO.InputStream","icon":"icon-class"},{"name":"Spark.Core.Util.DynamicCaller","extends":"","icon":"icon-class"},{"name":"OpenEdge.Core.MemptrOutputStream","extends":"Progress.IO.OutputStream","icon":"icon-class"},{"name":"Spark.Core.Service.SparkEntity","extends":"OpenEdge.BusinessLogic.BusinessEntity","icon":"icon-class"},{"name":"Spark.Core.Util.GenTools","extends":"","icon":"icon-class"},{"name":"Spark.Diagnostic.Util.Logger","extends":"Spark.Diagnostic.Util.OSPath","icon":"icon-class"},{"name":"Spark.Core.Util.SessionScope","extends":"Spark.Core.Util.LifecycleScope","icon":"icon-class"},{"name":"Spark.Core.Manager.StateLifeCycleEnum","extends":"Spark.Core.Util.EnumMember","icon":"icon-class"},{"name":"Spark.Core.Security.Password","extends":"","icon":"icon-class"},{"name":"Spark.Core.Service.IDynamicResource","extends":"Ccs.Common.IService","icon":"icon-interface"},{"name":"Spark.Core.Manager.IClientContext","extends":"Ccs.Common.IClientContext","icon":"icon-interface"},{"name":"Spark.Core.Util.OperationEnum","extends":"Progress.Lang.Enum","icon":"icon-enum"},{"name":"OpenEdge.Core.Assert","extends":"","icon":"icon-class"},{"name":"Spark.Core.Service.Catalog","extends":"Spark.Diagnostic.Util.OSPath","icon":"icon-class"},{"name":"Spark.Core.Message.ConfigMessage","extends":"Spark.Core.Message.AbstractMessage","icon":"icon-class"}],"procedures":[{"name":"Spark/shutdown.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/Interface/StartTrackingObjects.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/metrics_activate.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/metrics_deactivate.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/metrics_shutdown.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/Interface/PrepareSessionReports.p","icon":"icon-procedure"},{"name":"Spark/startup.p","icon":"icon-procedure"},{"name":"Spark/Diagnostic/metrics_startup.p","icon":"icon-procedure"}],"search":[{"name":"shutdown.p","fullName":"Spark/shutdown.p","icon":"icon-procedure","url":"#!/procedure/Spark/shutdown.p","sort":1,"meta":{}},{"name":"logObjects","fullName":"Spark/shutdown.p:logObjects","icon":"icon-procedure","url":"#!/procedure/Spark/shutdown.p-procedure-logObjects","sort":3,"meta":{}},{"name":"logMessage","fullName":"Spark/shutdown.p:logMessage","icon":"icon-function","url":"#!/procedure/Spark/shutdown.p-function-logMessage","sort":3,"meta":{}},{"name":"logError","fullName":"Spark/shutdown.p:logError","icon":"icon-function","url":"#!/procedure/Spark/shutdown.p-function-logError","sort":3,"meta":{}},{"name":"ttServerObjects","fullName":"Spark/shutdown.p:ttServerObjects","icon":"icon-temptable","url":"#!/procedure/Spark/shutdown.p-temptable-ttServerObjects","sort":3,"meta":{"global":true,"noundo":true}},{"name":"StartTrackingObjects.p","fullName":"Spark/Diagnostic/Interface/StartTrackingObjects.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/Interface/StartTrackingObjects.p","sort":1,"meta":{}},{"name":"metrics_activate.p","fullName":"Spark/Diagnostic/metrics_activate.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/metrics_activate.p","sort":1,"meta":{}},{"name":"metrics_deactivate.p","fullName":"Spark/Diagnostic/metrics_deactivate.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/metrics_deactivate.p","sort":1,"meta":{}},{"name":"metrics_shutdown.p","fullName":"Spark/Diagnostic/metrics_shutdown.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/metrics_shutdown.p","sort":1,"meta":{}},{"name":"PrepareSessionReports.p","fullName":"Spark/Diagnostic/Interface/PrepareSessionReports.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/Interface/PrepareSessionReports.p","sort":1,"meta":{}},{"name":"startup.p","fullName":"Spark/startup.p","icon":"icon-procedure","url":"#!/procedure/Spark/startup.p","sort":1,"meta":{}},{"name":"getStartupParams","fullName":"Spark/startup.p:getStartupParams","icon":"icon-procedure","url":"#!/procedure/Spark/startup.p-procedure-getStartupParams","sort":3,"meta":{}},{"name":"logMessage","fullName":"Spark/startup.p:logMessage","icon":"icon-function","url":"#!/procedure/Spark/startup.p-function-logMessage","sort":3,"meta":{}},{"name":"logError","fullName":"Spark/startup.p:logError","icon":"icon-function","url":"#!/procedure/Spark/startup.p-function-logError","sort":3,"meta":{}},{"name":"metrics_startup.p","fullName":"Spark/Diagnostic/metrics_startup.p","icon":"icon-procedure","url":"#!/procedure/Spark/Diagnostic/metrics_startup.p","sort":1,"meta":{}},{"name":"IConnectionManager","fullName":"Spark.Core.Manager.IConnectionManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.IConnectionManager","sort":1,"meta":{}},{"name":"getServer","fullName":"Spark.Core.Manager.IConnectionManager:getServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-getServer","sort":3,"meta":{}},{"name":"stopLifeCycle","fullName":"Spark.Core.Manager.IConnectionManager:stopLifeCycle","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-stopLifeCycle","sort":3,"meta":{}},{"name":"stopServer","fullName":"Spark.Core.Manager.IConnectionManager:stopServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-stopServer","sort":3,"meta":{}},{"name":"reconnectServer","fullName":"Spark.Core.Manager.IConnectionManager:reconnectServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-reconnectServer","sort":3,"meta":{}},{"name":"validContext","fullName":"Spark.Core.Manager.IConnectionManager:validContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-validContext","sort":3,"meta":{}},{"name":"getConnectionParam","fullName":"Spark.Core.Manager.IConnectionManager:getConnectionParam","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-getConnectionParam","sort":3,"meta":{}},{"name":"getProcHandle","fullName":"Spark.Core.Manager.IConnectionManager:getProcHandle","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IConnectionManager-method-getProcHandle","sort":3,"meta":{}},{"name":"IConfigMessage","fullName":"Spark.Core.Message.IConfigMessage","icon":"icon-interface","url":"#!/class/Spark.Core.Message.IConfigMessage","sort":1,"meta":{}},{"name":"deserializeMessageFromFile","fullName":"Spark.Core.Message.IConfigMessage:deserializeMessageFromFile","icon":"icon-method","url":"#!/class/Spark.Core.Message.IConfigMessage-method-deserializeMessageFromFile","sort":3,"meta":{}},{"name":"deserializeMessage","fullName":"Spark.Core.Message.IConfigMessage:deserializeMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.IConfigMessage-method-deserializeMessage","sort":3,"meta":{}},{"name":"LongcharInputStream","fullName":"Spark.Core.Util.LongcharInputStream","icon":"icon-class","url":"#!/class/Spark.Core.Util.LongcharInputStream","sort":1,"meta":{}},{"name":"StreamData","fullName":"Spark.Core.Util.LongcharInputStream:StreamData","icon":"icon-property","url":"#!/class/Spark.Core.Util.LongcharInputStream-property-StreamData","sort":3,"meta":{}},{"name":"Read","fullName":"Spark.Core.Util.LongcharInputStream:Read","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"Read","fullName":"Spark.Core.Util.LongcharInputStream:Read","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"Read","fullName":"Spark.Core.Util.LongcharInputStream:Read","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"SessionAttributeEnum","fullName":"Spark.Core.Manager.SessionAttributeEnum","icon":"icon-enum","url":"#!/class/Spark.Core.Manager.SessionAttributeEnum","sort":1,"meta":{}},{"name":"timezoneOffset","fullName":"Spark.Core.Manager.SessionAttributeEnum:timezoneOffset","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SessionAttributeEnum-property-timezoneOffset","sort":3,"meta":{}},{"name":"dateFormat","fullName":"Spark.Core.Manager.SessionAttributeEnum:dateFormat","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SessionAttributeEnum-property-dateFormat","sort":3,"meta":{}},{"name":"numericDecimalPoint","fullName":"Spark.Core.Manager.SessionAttributeEnum:numericDecimalPoint","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SessionAttributeEnum-property-numericDecimalPoint","sort":3,"meta":{}},{"name":"numericSeparator","fullName":"Spark.Core.Manager.SessionAttributeEnum:numericSeparator","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SessionAttributeEnum-property-numericSeparator","sort":3,"meta":{}},{"name":"AssertObject","fullName":"OpenEdge.Core.Assertion.AssertObject","icon":"icon-class","url":"#!/class/OpenEdge.Core.Assertion.AssertObject","sort":1,"meta":{}},{"name":"Equals","fullName":"OpenEdge.Core.Assertion.AssertObject:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-Equals","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assertion.AssertObject:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assertion.AssertObject:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assertion.AssertObject:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assertion.AssertObject:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assertion.AssertObject:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"IsInterface","fullName":"OpenEdge.Core.Assertion.AssertObject:IsInterface","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsInterface","sort":3,"meta":{"static":true}},{"name":"NotInterface","fullName":"OpenEdge.Core.Assertion.AssertObject:NotInterface","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotInterface","sort":3,"meta":{"static":true}},{"name":"IsAbstract","fullName":"OpenEdge.Core.Assertion.AssertObject:IsAbstract","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsAbstract","sort":3,"meta":{"static":true}},{"name":"NotAbstract","fullName":"OpenEdge.Core.Assertion.AssertObject:NotAbstract","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotAbstract","sort":3,"meta":{"static":true}},{"name":"IsFinal","fullName":"OpenEdge.Core.Assertion.AssertObject:IsFinal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsFinal","sort":3,"meta":{"static":true}},{"name":"NotFinal","fullName":"OpenEdge.Core.Assertion.AssertObject:NotFinal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotFinal","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assertion.AssertObject:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assertion.AssertObject:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assertion.AssertObject:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assertion.AssertObject:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assertion.AssertObject:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assertion.AssertObject:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assertion.AssertObject:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assertion.AssertObject:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assertion.AssertObject:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assertion.AssertObject:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assertion.AssertObject:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"IsSerializable","fullName":"OpenEdge.Core.Assertion.AssertObject:IsSerializable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsSerializable","sort":3,"meta":{"static":true}},{"name":"NotSerializable","fullName":"OpenEdge.Core.Assertion.AssertObject:NotSerializable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotSerializable","sort":3,"meta":{"static":true}},{"name":"DataSetTools","fullName":"Spark.Core.Util.DataSetTools","icon":"icon-class","url":"#!/class/Spark.Core.Util.DataSetTools","sort":1,"meta":{}},{"name":"emptyDataSet","fullName":"Spark.Core.Util.DataSetTools:emptyDataSet","icon":"icon-method","url":"#!/class/Spark.Core.Util.DataSetTools-method-emptyDataSet","sort":3,"meta":{"static":true}},{"name":"resetAsNew","fullName":"Spark.Core.Util.DataSetTools:resetAsNew","icon":"icon-method","url":"#!/class/Spark.Core.Util.DataSetTools-method-resetAsNew","sort":3,"meta":{"static":true}},{"name":"setTrackingChanges","fullName":"Spark.Core.Util.DataSetTools:setTrackingChanges","icon":"icon-method","url":"#!/class/Spark.Core.Util.DataSetTools-method-setTrackingChanges","sort":3,"meta":{"static":true}},{"name":"FormatTools","fullName":"Spark.Core.Util.FormatTools","icon":"icon-class","url":"#!/class/Spark.Core.Util.FormatTools","sort":1,"meta":{}},{"name":"screenToDate","fullName":"Spark.Core.Util.FormatTools:screenToDate","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToDate","sort":3,"meta":{"static":true}},{"name":"screenToDateTime","fullName":"Spark.Core.Util.FormatTools:screenToDateTime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToDateTime","sort":3,"meta":{"static":true}},{"name":"screenToDateTimeTz","fullName":"Spark.Core.Util.FormatTools:screenToDateTimeTz","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToDateTimeTz","sort":3,"meta":{"static":true}},{"name":"screenToDateRange","fullName":"Spark.Core.Util.FormatTools:screenToDateRange","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToDateRange","sort":3,"meta":{"static":true}},{"name":"screenToLog","fullName":"Spark.Core.Util.FormatTools:screenToLog","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToLog","sort":3,"meta":{"static":true}},{"name":"screenToInt","fullName":"Spark.Core.Util.FormatTools:screenToInt","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToInt","sort":3,"meta":{"static":true}},{"name":"screenToInt64","fullName":"Spark.Core.Util.FormatTools:screenToInt64","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToInt64","sort":3,"meta":{"static":true}},{"name":"screenToDec","fullName":"Spark.Core.Util.FormatTools:screenToDec","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToDec","sort":3,"meta":{"static":true}},{"name":"screenToRowid","fullName":"Spark.Core.Util.FormatTools:screenToRowid","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-screenToRowid","sort":3,"meta":{"static":true}},{"name":"iso2DateTZ","fullName":"Spark.Core.Util.FormatTools:iso2DateTZ","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2DateTZ","sort":3,"meta":{"static":true}},{"name":"iso2DateTZ","fullName":"Spark.Core.Util.FormatTools:iso2DateTZ","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2DateTZ","sort":3,"meta":{"static":true}},{"name":"iso2DateTime","fullName":"Spark.Core.Util.FormatTools:iso2DateTime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2DateTime","sort":3,"meta":{"static":true}},{"name":"iso2DateTime","fullName":"Spark.Core.Util.FormatTools:iso2DateTime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2DateTime","sort":3,"meta":{"static":true}},{"name":"iso2Date","fullName":"Spark.Core.Util.FormatTools:iso2Date","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2Date","sort":3,"meta":{"static":true}},{"name":"iso2Date","fullName":"Spark.Core.Util.FormatTools:iso2Date","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-iso2Date","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"decimalOf","fullName":"Spark.Core.Util.FormatTools:decimalOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-decimalOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"integerOf","fullName":"Spark.Core.Util.FormatTools:integerOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-integerOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"int64Of","fullName":"Spark.Core.Util.FormatTools:int64Of","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-int64Of","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"logicalOf","fullName":"Spark.Core.Util.FormatTools:logicalOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-logicalOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"dateOf","fullName":"Spark.Core.Util.FormatTools:dateOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-dateOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"datetimeOf","fullName":"Spark.Core.Util.FormatTools:datetimeOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-datetimeOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"datetime-tzOf","fullName":"Spark.Core.Util.FormatTools:datetime-tzOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-datetime-tzOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"rowidOf","fullName":"Spark.Core.Util.FormatTools:rowidOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-rowidOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"recidOf","fullName":"Spark.Core.Util.FormatTools:recidOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-recidOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"rawOf","fullName":"Spark.Core.Util.FormatTools:rawOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-rawOf","sort":3,"meta":{"static":true}},{"name":"stringOf","fullName":"Spark.Core.Util.FormatTools:stringOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-stringOf","sort":3,"meta":{"static":true}},{"name":"memptrOf","fullName":"Spark.Core.Util.FormatTools:memptrOf","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-memptrOf","sort":3,"meta":{"static":true}},{"name":"formatAsLongDate","fullName":"Spark.Core.Util.FormatTools:formatAsLongDate","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDate","sort":3,"meta":{"private":true,"static":true}},{"name":"formatAsLongDatetime","fullName":"Spark.Core.Util.FormatTools:formatAsLongDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDatetime","sort":3,"meta":{"private":true,"static":true}},{"name":"formatAsLongDate","fullName":"Spark.Core.Util.FormatTools:formatAsLongDate","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDate","sort":3,"meta":{"static":true}},{"name":"formatAsAbbreviatedLongDate","fullName":"Spark.Core.Util.FormatTools:formatAsAbbreviatedLongDate","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsAbbreviatedLongDate","sort":3,"meta":{"static":true}},{"name":"formatAsLongDatetime","fullName":"Spark.Core.Util.FormatTools:formatAsLongDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDatetime","sort":3,"meta":{"static":true}},{"name":"formatAsAbbreviatedLongDatetime","fullName":"Spark.Core.Util.FormatTools:formatAsAbbreviatedLongDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-formatAsAbbreviatedLongDatetime","sort":3,"meta":{"static":true}},{"name":"convertToUTF8","fullName":"Spark.Core.Util.FormatTools:convertToUTF8","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-convertToUTF8","sort":3,"meta":{"static":true}},{"name":"getDateFromMetaData","fullName":"Spark.Core.Util.FormatTools:getDateFromMetaData","icon":"icon-method","url":"#!/class/Spark.Core.Util.FormatTools-method-getDateFromMetaData","sort":3,"meta":{"static":true}},{"name":"IContextMessage","fullName":"Spark.Core.Message.IContextMessage","icon":"icon-interface","url":"#!/class/Spark.Core.Message.IContextMessage","sort":1,"meta":{}},{"name":"ContextPropName","fullName":"Spark.Core.Message.IContextMessage:ContextPropName","icon":"icon-property","url":"#!/class/Spark.Core.Message.IContextMessage-property-ContextPropName","sort":3,"meta":{}},{"name":"ReturnValueName","fullName":"Spark.Core.Message.IContextMessage:ReturnValueName","icon":"icon-property","url":"#!/class/Spark.Core.Message.IContextMessage-property-ReturnValueName","sort":3,"meta":{}},{"name":"ReturnValue","fullName":"Spark.Core.Message.IContextMessage:ReturnValue","icon":"icon-property","url":"#!/class/Spark.Core.Message.IContextMessage-property-ReturnValue","sort":3,"meta":{}},{"name":"addMessage","fullName":"Spark.Core.Message.IContextMessage:addMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-addMessage","sort":3,"meta":{}},{"name":"addMessage","fullName":"Spark.Core.Message.IContextMessage:addMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-addMessage","sort":3,"meta":{}},{"name":"setContextPropName","fullName":"Spark.Core.Message.IContextMessage:setContextPropName","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-setContextPropName","sort":3,"meta":{}},{"name":"setReturnValueName","fullName":"Spark.Core.Message.IContextMessage:setReturnValueName","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-setReturnValueName","sort":3,"meta":{}},{"name":"getMessageArray","fullName":"Spark.Core.Message.IContextMessage:getMessageArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-getMessageArray","sort":3,"meta":{}},{"name":"hasAnyMessages","fullName":"Spark.Core.Message.IContextMessage:hasAnyMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-hasAnyMessages","sort":3,"meta":{}},{"name":"hasInformation","fullName":"Spark.Core.Message.IContextMessage:hasInformation","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-hasInformation","sort":3,"meta":{}},{"name":"hasWarnings","fullName":"Spark.Core.Message.IContextMessage:hasWarnings","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-hasWarnings","sort":3,"meta":{}},{"name":"hasErrors","fullName":"Spark.Core.Message.IContextMessage:hasErrors","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-hasErrors","sort":3,"meta":{}},{"name":"removeWarningMessages","fullName":"Spark.Core.Message.IContextMessage:removeWarningMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-removeWarningMessages","sort":3,"meta":{}},{"name":"removeMessages","fullName":"Spark.Core.Message.IContextMessage:removeMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.IContextMessage-method-removeMessages","sort":3,"meta":{}},{"name":"QueryGroup","fullName":"OpenEdge.BusinessLogic.QueryGroup","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup","sort":1,"meta":{}},{"name":"QueryGroup","fullName":"OpenEdge.BusinessLogic.QueryGroup:QueryGroup","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-constructor-QueryGroup","sort":3,"meta":{}},{"name":"QueryGroup","fullName":"OpenEdge.BusinessLogic.QueryGroup:QueryGroup","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-constructor-QueryGroup","sort":3,"meta":{}},{"name":"Entries","fullName":"OpenEdge.BusinessLogic.QueryGroup:Entries","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-property-Entries","sort":3,"meta":{}},{"name":"Join","fullName":"OpenEdge.BusinessLogic.QueryGroup:Join","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-property-Join","sort":3,"meta":{}},{"name":"ToString","fullName":"OpenEdge.BusinessLogic.QueryGroup:ToString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-method-ToString","sort":3,"meta":{"override":true}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.QueryGroup:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.QueryGroup:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryGroup-method-FromJson","sort":3,"meta":{}},{"name":"IStateManager","fullName":"Spark.Core.Manager.IStateManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.IStateManager","sort":1,"meta":{}},{"name":"readContextFromStore","fullName":"Spark.Core.Manager.IStateManager:readContextFromStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-readContextFromStore","sort":3,"meta":{}},{"name":"readContextFromStoreAndLock","fullName":"Spark.Core.Manager.IStateManager:readContextFromStoreAndLock","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-readContextFromStoreAndLock","sort":3,"meta":{}},{"name":"writeContextToStore","fullName":"Spark.Core.Manager.IStateManager:writeContextToStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-writeContextToStore","sort":3,"meta":{}},{"name":"writeContextToStore","fullName":"Spark.Core.Manager.IStateManager:writeContextToStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-writeContextToStore","sort":3,"meta":{}},{"name":"updateLastUsed","fullName":"Spark.Core.Manager.IStateManager:updateLastUsed","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-updateLastUsed","sort":3,"meta":{}},{"name":"removeContextFromStore","fullName":"Spark.Core.Manager.IStateManager:removeContextFromStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStateManager-method-removeContextFromStore","sort":3,"meta":{}},{"name":"StartupManager","fullName":"Spark.Core.Manager.StartupManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.StartupManager","sort":1,"meta":{}},{"name":"StartupManager","fullName":"Spark.Core.Manager.StartupManager:StartupManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.StartupManager-constructor-StartupManager","sort":3,"meta":{"private":true}},{"name":"StartupManager","fullName":"Spark.Core.Manager.StartupManager:StartupManager","icon":"icon-destructor","url":"#!/class/Spark.Core.Manager.StartupManager-destructor-StartupManager","sort":3,"meta":{}},{"name":"Instance","fullName":"Spark.Core.Manager.StartupManager:Instance","icon":"icon-property","url":"#!/class/Spark.Core.Manager.StartupManager-property-Instance","sort":3,"meta":{"static":true}},{"name":"interfaceStopAfter","fullName":"Spark.Core.Manager.StartupManager:interfaceStopAfter","icon":"icon-property","url":"#!/class/Spark.Core.Manager.StartupManager-property-interfaceStopAfter","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.StartupManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.StartupManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"loadConfig","fullName":"Spark.Core.Manager.StartupManager:loadConfig","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-loadConfig","sort":3,"meta":{"private":true}},{"name":"startManagers","fullName":"Spark.Core.Manager.StartupManager:startManagers","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-startManagers","sort":3,"meta":{"private":true}},{"name":"checkAllManagersAreListed","fullName":"Spark.Core.Manager.StartupManager:checkAllManagersAreListed","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-checkAllManagersAreListed","sort":3,"meta":{"private":true}},{"name":"checkManagerIsListed","fullName":"Spark.Core.Manager.StartupManager:checkManagerIsListed","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-checkManagerIsListed","sort":3,"meta":{"private":true}},{"name":"checkManagerIsListed","fullName":"Spark.Core.Manager.StartupManager:checkManagerIsListed","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-checkManagerIsListed","sort":3,"meta":{"private":true}},{"name":"startManager","fullName":"Spark.Core.Manager.StartupManager:startManager","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-startManager","sort":3,"meta":{"private":true}},{"name":"stopManager","fullName":"Spark.Core.Manager.StartupManager:stopManager","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-stopManager","sort":3,"meta":{"private":true}},{"name":"getManager","fullName":"Spark.Core.Manager.StartupManager:getManager","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-getManager","sort":3,"meta":{}},{"name":"stopManagers","fullName":"Spark.Core.Manager.StartupManager:stopManagers","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StartupManager-method-stopManagers","sort":3,"meta":{}},{"name":"ttGeneral","fullName":"Spark.Core.Manager.StartupManager:ttGeneral","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.StartupManager-temptable-ttGeneral","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttImplMapping","fullName":"Spark.Core.Manager.StartupManager:ttImplMapping","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.StartupManager-temptable-ttImplMapping","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttManager","fullName":"Spark.Core.Manager.StartupManager:ttManager","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.StartupManager-temptable-ttManager","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"dsConfig","fullName":"Spark.Core.Manager.StartupManager:dsConfig","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.StartupManager-dataset-dsConfig","sort":3,"meta":{"private":true}},{"name":"ISessionManager","fullName":"Spark.Core.Manager.ISessionManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.ISessionManager","sort":1,"meta":{}},{"name":"databasesConnected","fullName":"Spark.Core.Manager.ISessionManager:databasesConnected","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-databasesConnected","sort":3,"meta":{}},{"name":"establishRequestEnvironment","fullName":"Spark.Core.Manager.ISessionManager:establishRequestEnvironment","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-establishRequestEnvironment","sort":3,"meta":{}},{"name":"userLogin","fullName":"Spark.Core.Manager.ISessionManager:userLogin","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-userLogin","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.ISessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.ISessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.ISessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"setSessionAttribute","fullName":"Spark.Core.Manager.ISessionManager:setSessionAttribute","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-setSessionAttribute","sort":3,"meta":{}},{"name":"getUserSSOToken","fullName":"Spark.Core.Manager.ISessionManager:getUserSSOToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-getUserSSOToken","sort":3,"meta":{}},{"name":"getUserSSOToken","fullName":"Spark.Core.Manager.ISessionManager:getUserSSOToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISessionManager-method-getUserSSOToken","sort":3,"meta":{}},{"name":"IDynamicEntity","fullName":"Spark.Core.Service.IDynamicEntity","icon":"icon-interface","url":"#!/class/Spark.Core.Service.IDynamicEntity","sort":1,"meta":{}},{"name":"serviceURI","fullName":"Spark.Core.Service.IDynamicEntity:serviceURI","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-serviceURI","sort":3,"meta":{}},{"name":"resourceName","fullName":"Spark.Core.Service.IDynamicEntity:resourceName","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-resourceName","sort":3,"meta":{}},{"name":"entityName","fullName":"Spark.Core.Service.IDynamicEntity:entityName","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-entityName","sort":3,"meta":{}},{"name":"primaryKeys","fullName":"Spark.Core.Service.IDynamicEntity:primaryKeys","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-primaryKeys","sort":3,"meta":{}},{"name":"foreignKeys","fullName":"Spark.Core.Service.IDynamicEntity:foreignKeys","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-foreignKeys","sort":3,"meta":{}},{"name":"mappingType","fullName":"Spark.Core.Service.IDynamicEntity:mappingType","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-mappingType","sort":3,"meta":{}},{"name":"capabilities","fullName":"Spark.Core.Service.IDynamicEntity:capabilities","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-capabilities","sort":3,"meta":{}},{"name":"operations","fullName":"Spark.Core.Service.IDynamicEntity:operations","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicEntity-property-operations","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Service.IDynamicEntity:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-getDataset","sort":3,"meta":{}},{"name":"postRowFill","fullName":"Spark.Core.Service.IDynamicEntity:postRowFill","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-postRowFill","sort":3,"meta":{}},{"name":"readData","fullName":"Spark.Core.Service.IDynamicEntity:readData","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-readData","sort":3,"meta":{}},{"name":"createData","fullName":"Spark.Core.Service.IDynamicEntity:createData","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-createData","sort":3,"meta":{}},{"name":"updateData","fullName":"Spark.Core.Service.IDynamicEntity:updateData","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-updateData","sort":3,"meta":{}},{"name":"deleteData","fullName":"Spark.Core.Service.IDynamicEntity:deleteData","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-deleteData","sort":3,"meta":{}},{"name":"submitData","fullName":"Spark.Core.Service.IDynamicEntity:submitData","icon":"icon-method","url":"#!/class/Spark.Core.Service.IDynamicEntity-method-submitData","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError","icon":"icon-class","url":"#!/class/Spark.Core.Util.ApplicationError","sort":1,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"ApplicationError","fullName":"Spark.Core.Util.ApplicationError:ApplicationError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError","sort":3,"meta":{}},{"name":"errorField","fullName":"Spark.Core.Util.ApplicationError:errorField","icon":"icon-property","url":"#!/class/Spark.Core.Util.ApplicationError-property-errorField","sort":3,"meta":{}},{"name":"errorType","fullName":"Spark.Core.Util.ApplicationError:errorType","icon":"icon-property","url":"#!/class/Spark.Core.Util.ApplicationError-property-errorType","sort":3,"meta":{}},{"name":"originalErrorMessage","fullName":"Spark.Core.Util.ApplicationError:originalErrorMessage","icon":"icon-property","url":"#!/class/Spark.Core.Util.ApplicationError-property-originalErrorMessage","sort":3,"meta":{}},{"name":"createAppError","fullName":"Spark.Core.Util.ApplicationError:createAppError","icon":"icon-method","url":"#!/class/Spark.Core.Util.ApplicationError-method-createAppError","sort":3,"meta":{"protected":true}},{"name":"createAppError","fullName":"Spark.Core.Util.ApplicationError:createAppError","icon":"icon-method","url":"#!/class/Spark.Core.Util.ApplicationError-method-createAppError","sort":3,"meta":{"protected":true}},{"name":"setErrorType","fullName":"Spark.Core.Util.ApplicationError:setErrorType","icon":"icon-method","url":"#!/class/Spark.Core.Util.ApplicationError-method-setErrorType","sort":3,"meta":{"protected":true}},{"name":"OEMetricsConfig","fullName":"Spark.Diagnostic.Util.OEMetricsConfig","icon":"icon-class","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig","sort":1,"meta":{"final":true}},{"name":"OEMetricsConfig","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:OEMetricsConfig","icon":"icon-constructor","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-constructor-OEMetricsConfig","sort":3,"meta":{}},{"name":"oLogger","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:oLogger","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-oLogger","sort":3,"meta":{"private":true}},{"name":"OEManagerUser","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:OEManagerUser","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OEManagerUser","sort":3,"meta":{"private":true}},{"name":"OEManagerPass","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:OEManagerPass","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OEManagerPass","sort":3,"meta":{"private":true}},{"name":"MetricsConfigFile","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:MetricsConfigFile","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-MetricsConfigFile","sort":3,"meta":{"private":true}},{"name":"MetricsConfigPath","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:MetricsConfigPath","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-MetricsConfigPath","sort":3,"meta":{"private":true}},{"name":"ABLAppList","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ABLAppList","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ABLAppList","sort":3,"meta":{}},{"name":"DefaultAppName","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:DefaultAppName","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-DefaultAppName","sort":3,"meta":{}},{"name":"PollingIgnoreList","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:PollingIgnoreList","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingIgnoreList","sort":3,"meta":{}},{"name":"PollingStartTime","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:PollingStartTime","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingStartTime","sort":3,"meta":{}},{"name":"PollingStopTime","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:PollingStopTime","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingStopTime","sort":3,"meta":{}},{"name":"ProfilerEnabled","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ProfilerEnabled","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerEnabled","sort":3,"meta":{}},{"name":"ProfilerFilter","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ProfilerFilter","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerFilter","sort":3,"meta":{}},{"name":"ProfilerThreshold","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ProfilerThreshold","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerThreshold","sort":3,"meta":{}},{"name":"ProfilerTrackBy","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ProfilerTrackBy","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerTrackBy","sort":3,"meta":{}},{"name":"ClassesExcluded","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ClassesExcluded","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ClassesExcluded","sort":3,"meta":{}},{"name":"OutputInterval","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:OutputInterval","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OutputInterval","sort":3,"meta":{}},{"name":"RemoteSource","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:RemoteSource","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-RemoteSource","sort":3,"meta":{}},{"name":"TrackMemory","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:TrackMemory","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackMemory","sort":3,"meta":{}},{"name":"TrackObjects","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:TrackObjects","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackObjects","sort":3,"meta":{}},{"name":"TrackRequests","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:TrackRequests","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackRequests","sort":3,"meta":{}},{"name":"CollectorType","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:CollectorType","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorType","sort":3,"meta":{}},{"name":"CollectorScheme","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:CollectorScheme","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorScheme","sort":3,"meta":{}},{"name":"CollectorServer","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:CollectorServer","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorServer","sort":3,"meta":{}},{"name":"CollectorPort","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:CollectorPort","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorPort","sort":3,"meta":{}},{"name":"InstanceURI","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:InstanceURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-InstanceURI","sort":3,"meta":{}},{"name":"Discovery","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:Discovery","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-Discovery","sort":3,"meta":{"private":true}},{"name":"ParseConfig","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:ParseConfig","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-ParseConfig","sort":3,"meta":{"private":true}},{"name":"SetLogger","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:SetLogger","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-SetLogger","sort":3,"meta":{}},{"name":"RefreshConfig","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:RefreshConfig","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-RefreshConfig","sort":3,"meta":{}},{"name":"UpdateCredentialsOEM","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:UpdateCredentialsOEM","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-UpdateCredentialsOEM","sort":3,"meta":{}},{"name":"GetTrackingFlag","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:GetTrackingFlag","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-GetTrackingFlag","sort":3,"meta":{}},{"name":"AreObjectsEnabled","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:AreObjectsEnabled","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-AreObjectsEnabled","sort":3,"meta":{}},{"name":"IsMemoryEnabled","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:IsMemoryEnabled","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-IsMemoryEnabled","sort":3,"meta":{}},{"name":"AreRequestsEnabled","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:AreRequestsEnabled","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-AreRequestsEnabled","sort":3,"meta":{}},{"name":"IsProfilerEnabled","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:IsProfilerEnabled","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-IsProfilerEnabled","sort":3,"meta":{}},{"name":"OnValidSchedule","fullName":"Spark.Diagnostic.Util.OEMetricsConfig:OnValidSchedule","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-OnValidSchedule","sort":3,"meta":{}},{"name":"GetDataRequest","fullName":"OpenEdge.BusinessLogic.GetDataRequest","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest","sort":1,"meta":{}},{"name":"GetDataRequest","fullName":"OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest","sort":3,"meta":{}},{"name":"GetDataRequest","fullName":"OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest","sort":3,"meta":{}},{"name":"GetDataRequest","fullName":"OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest","sort":3,"meta":{}},{"name":"GetDataRequest","fullName":"OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest","sort":3,"meta":{}},{"name":"CustomParameter","fullName":"OpenEdge.BusinessLogic.GetDataRequest:CustomParameter","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-CustomParameter","sort":3,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.GetDataRequest:NamedQuery","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-NamedQuery","sort":3,"meta":{}},{"name":"TableRequests","fullName":"OpenEdge.BusinessLogic.GetDataRequest:TableRequests","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-TableRequests","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetDataRequest:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-method-FromJson","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetDataRequest:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataRequest-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"CryptoPbeHashAlgorithmEnum","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum","icon":"icon-class","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum","sort":1,"meta":{"final":true}},{"name":"CryptoPbeHashAlgorithmEnum","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:CryptoPbeHashAlgorithmEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-constructor-CryptoPbeHashAlgorithmEnum","sort":3,"meta":{"static":true}},{"name":"CryptoPbeHashAlgorithmEnum","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:CryptoPbeHashAlgorithmEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-constructor-CryptoPbeHashAlgorithmEnum","sort":3,"meta":{"private":true}},{"name":"MD5","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:MD5","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-MD5","sort":3,"meta":{"static":true}},{"name":"SHA-1","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-1","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-1","sort":3,"meta":{"static":true}},{"name":"SHA-256","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-256","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-256","sort":3,"meta":{"static":true}},{"name":"SHA-512","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-512","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-512","sort":3,"meta":{"static":true}},{"name":"enumFromString","fullName":"Spark.Core.Util.CryptoPbeHashAlgorithmEnum:enumFromString","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-method-enumFromString","sort":3,"meta":{"static":true}},{"name":"FilterParser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser","sort":1,"meta":{"abstract":true}},{"name":"FilterParser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser","sort":3,"meta":{}},{"name":"FilterParser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser","sort":3,"meta":{}},{"name":"FilterParser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser","sort":3,"meta":{}},{"name":"FilterTable","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:FilterTable","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-property-FilterTable","sort":3,"meta":{}},{"name":"Parse","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:Parse","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-Parse","sort":3,"meta":{"abstract":true}},{"name":"ParseWhere","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-ParseWhere","sort":3,"meta":{"abstract":true}},{"name":"ParseSortBy","fullName":"OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-ParseSortBy","sort":3,"meta":{"abstract":true}},{"name":"Convert","fullName":"Spark.Core.Util.Convert","icon":"icon-class","url":"#!/class/Spark.Core.Util.Convert","sort":1,"meta":{}},{"name":"BinToHex","fullName":"Spark.Core.Util.Convert:BinToHex","icon":"icon-method","url":"#!/class/Spark.Core.Util.Convert-method-BinToHex","sort":3,"meta":{"static":true}},{"name":"BinToInt","fullName":"Spark.Core.Util.Convert:BinToInt","icon":"icon-method","url":"#!/class/Spark.Core.Util.Convert-method-BinToInt","sort":3,"meta":{"static":true}},{"name":"IntToBin","fullName":"Spark.Core.Util.Convert:IntToBin","icon":"icon-method","url":"#!/class/Spark.Core.Util.Convert-method-IntToBin","sort":3,"meta":{"static":true}},{"name":"IntToHex","fullName":"Spark.Core.Util.Convert:IntToHex","icon":"icon-method","url":"#!/class/Spark.Core.Util.Convert-method-IntToHex","sort":3,"meta":{"static":true}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature","icon":"icon-class","url":"#!/class/Spark.Core.Util.MethodSignature","sort":1,"meta":{"final":true}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature:MethodSignature","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature","sort":3,"meta":{}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature:MethodSignature","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature","sort":3,"meta":{}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature:MethodSignature","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature","sort":3,"meta":{}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature:MethodSignature","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature","sort":3,"meta":{}},{"name":"MethodSignature","fullName":"Spark.Core.Util.MethodSignature:MethodSignature","icon":"icon-destructor","url":"#!/class/Spark.Core.Util.MethodSignature-destructor-MethodSignature","sort":3,"meta":{}},{"name":"parseMethodSignature","fullName":"Spark.Core.Util.MethodSignature:parseMethodSignature","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-parseMethodSignature","sort":3,"meta":{"private":true}},{"name":"parseMethodSignature","fullName":"Spark.Core.Util.MethodSignature:parseMethodSignature","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-parseMethodSignature","sort":3,"meta":{"private":true}},{"name":"getClassPath","fullName":"Spark.Core.Util.MethodSignature:getClassPath","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getClassPath","sort":3,"meta":{}},{"name":"getMethodName","fullName":"Spark.Core.Util.MethodSignature:getMethodName","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getMethodName","sort":3,"meta":{}},{"name":"getParameterCount","fullName":"Spark.Core.Util.MethodSignature:getParameterCount","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterCount","sort":3,"meta":{}},{"name":"hasParameters","fullName":"Spark.Core.Util.MethodSignature:hasParameters","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-hasParameters","sort":3,"meta":{}},{"name":"hasParameter","fullName":"Spark.Core.Util.MethodSignature:hasParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-hasParameter","sort":3,"meta":{}},{"name":"getParameters","fullName":"Spark.Core.Util.MethodSignature:getParameters","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameters","sort":3,"meta":{}},{"name":"getInputParameters","fullName":"Spark.Core.Util.MethodSignature:getInputParameters","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getInputParameters","sort":3,"meta":{}},{"name":"getOutputParameters","fullName":"Spark.Core.Util.MethodSignature:getOutputParameters","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getOutputParameters","sort":3,"meta":{}},{"name":"getParameterNum","fullName":"Spark.Core.Util.MethodSignature:getParameterNum","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterNum","sort":3,"meta":{}},{"name":"getParameterName","fullName":"Spark.Core.Util.MethodSignature:getParameterName","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterName","sort":3,"meta":{}},{"name":"getParameterMode","fullName":"Spark.Core.Util.MethodSignature:getParameterMode","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterMode","sort":3,"meta":{}},{"name":"getParameterMode","fullName":"Spark.Core.Util.MethodSignature:getParameterMode","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterMode","sort":3,"meta":{}},{"name":"getParameterObject","fullName":"Spark.Core.Util.MethodSignature:getParameterObject","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterObject","sort":3,"meta":{}},{"name":"getParameterType","fullName":"Spark.Core.Util.MethodSignature:getParameterType","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterType","sort":3,"meta":{}},{"name":"getParameterType","fullName":"Spark.Core.Util.MethodSignature:getParameterType","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterType","sort":3,"meta":{}},{"name":"getParameterSchema","fullName":"Spark.Core.Util.MethodSignature:getParameterSchema","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterSchema","sort":3,"meta":{}},{"name":"getParameterSchema","fullName":"Spark.Core.Util.MethodSignature:getParameterSchema","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getParameterSchema","sort":3,"meta":{}},{"name":"setParameterSchema","fullName":"Spark.Core.Util.MethodSignature:setParameterSchema","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-setParameterSchema","sort":3,"meta":{}},{"name":"setParameterSchema","fullName":"Spark.Core.Util.MethodSignature:setParameterSchema","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-setParameterSchema","sort":3,"meta":{}},{"name":"getDatasets","fullName":"Spark.Core.Util.MethodSignature:getDatasets","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getDatasets","sort":3,"meta":{}},{"name":"getTempTables","fullName":"Spark.Core.Util.MethodSignature:getTempTables","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-getTempTables","sort":3,"meta":{}},{"name":"isInputParameter","fullName":"Spark.Core.Util.MethodSignature:isInputParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isInputParameter","sort":3,"meta":{}},{"name":"isInputParameter","fullName":"Spark.Core.Util.MethodSignature:isInputParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isInputParameter","sort":3,"meta":{}},{"name":"isOutputParameter","fullName":"Spark.Core.Util.MethodSignature:isOutputParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isOutputParameter","sort":3,"meta":{}},{"name":"isOutputParameter","fullName":"Spark.Core.Util.MethodSignature:isOutputParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isOutputParameter","sort":3,"meta":{}},{"name":"isTempTable","fullName":"Spark.Core.Util.MethodSignature:isTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isTempTable","sort":3,"meta":{}},{"name":"isTempTable","fullName":"Spark.Core.Util.MethodSignature:isTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isTempTable","sort":3,"meta":{}},{"name":"isDataset","fullName":"Spark.Core.Util.MethodSignature:isDataset","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isDataset","sort":3,"meta":{}},{"name":"isDataset","fullName":"Spark.Core.Util.MethodSignature:isDataset","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isDataset","sort":3,"meta":{}},{"name":"isObject","fullName":"Spark.Core.Util.MethodSignature:isObject","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isObject","sort":3,"meta":{}},{"name":"isObject","fullName":"Spark.Core.Util.MethodSignature:isObject","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isObject","sort":3,"meta":{}},{"name":"isJsonArray","fullName":"Spark.Core.Util.MethodSignature:isJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isJsonArray","sort":3,"meta":{}},{"name":"isJsonArray","fullName":"Spark.Core.Util.MethodSignature:isJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isJsonArray","sort":3,"meta":{}},{"name":"isJsonObject","fullName":"Spark.Core.Util.MethodSignature:isJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isJsonObject","sort":3,"meta":{}},{"name":"isJsonObject","fullName":"Spark.Core.Util.MethodSignature:isJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Util.MethodSignature-method-isJsonObject","sort":3,"meta":{}},{"name":"MethodParameter","fullName":"Spark.Core.Util.MethodSignature:MethodParameter","icon":"icon-temptable","url":"#!/class/Spark.Core.Util.MethodSignature-temptable-MethodParameter","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"QueryEntryDeserializer","fullName":"OpenEdge.BusinessLogic.IO.QueryEntryDeserializer","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer","sort":1,"meta":{}},{"name":"QueryEntryDeserializer","fullName":"OpenEdge.BusinessLogic.IO.QueryEntryDeserializer:QueryEntryDeserializer","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer-constructor-QueryEntryDeserializer","sort":3,"meta":{"private":true}},{"name":"QueryEntryFromJson","fullName":"OpenEdge.BusinessLogic.IO.QueryEntryDeserializer:QueryEntryFromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer-method-QueryEntryFromJson","sort":3,"meta":{"static":true}},{"name":"Binary","fullName":"Spark.Core.Util.Binary","icon":"icon-class","url":"#!/class/Spark.Core.Util.Binary","sort":1,"meta":{}},{"name":"BinaryAND","fullName":"Spark.Core.Util.Binary:BinaryAND","icon":"icon-method","url":"#!/class/Spark.Core.Util.Binary-method-BinaryAND","sort":3,"meta":{"static":true}},{"name":"BinaryOR","fullName":"Spark.Core.Util.Binary:BinaryOR","icon":"icon-method","url":"#!/class/Spark.Core.Util.Binary-method-BinaryOR","sort":3,"meta":{"static":true}},{"name":"BinaryXOR","fullName":"Spark.Core.Util.Binary:BinaryXOR","icon":"icon-method","url":"#!/class/Spark.Core.Util.Binary-method-BinaryXOR","sort":3,"meta":{"static":true}},{"name":"ShiftLeft","fullName":"Spark.Core.Util.Binary:ShiftLeft","icon":"icon-method","url":"#!/class/Spark.Core.Util.Binary-method-ShiftLeft","sort":3,"meta":{"static":true}},{"name":"HOTP","fullName":"Spark.Core.Security.HOTP","icon":"icon-class","url":"#!/class/Spark.Core.Security.HOTP","sort":1,"meta":{"final":true}},{"name":"HOTP","fullName":"Spark.Core.Security.HOTP:HOTP","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.HOTP-constructor-HOTP","sort":3,"meta":{}},{"name":"HOTP","fullName":"Spark.Core.Security.HOTP:HOTP","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.HOTP-constructor-HOTP","sort":3,"meta":{}},{"name":"HOTP","fullName":"Spark.Core.Security.HOTP:HOTP","icon":"icon-destructor","url":"#!/class/Spark.Core.Security.HOTP-destructor-HOTP","sort":3,"meta":{}},{"name":"Token","fullName":"Spark.Core.Security.HOTP:Token","icon":"icon-property","url":"#!/class/Spark.Core.Security.HOTP-property-Token","sort":3,"meta":{}},{"name":"EpochCounter","fullName":"Spark.Core.Security.HOTP:EpochCounter","icon":"icon-property","url":"#!/class/Spark.Core.Security.HOTP-property-EpochCounter","sort":3,"meta":{}},{"name":"newToken","fullName":"Spark.Core.Security.HOTP:newToken","icon":"icon-method","url":"#!/class/Spark.Core.Security.HOTP-method-newToken","sort":3,"meta":{"private":true}},{"name":"Manager","fullName":"Spark.Core.Manager.Manager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.Manager","sort":1,"meta":{"abstract":true}},{"name":"Manager","fullName":"Spark.Core.Manager.Manager:Manager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.Manager-constructor-Manager","sort":3,"meta":{}},{"name":"MathUtil","fullName":"OpenEdge.Core.Util.MathUtil","icon":"icon-class","url":"#!/class/OpenEdge.Core.Util.MathUtil","sort":1,"meta":{}},{"name":"DEFAULT_BASE","fullName":"OpenEdge.Core.Util.MathUtil:DEFAULT_BASE","icon":"icon-property","url":"#!/class/OpenEdge.Core.Util.MathUtil-property-DEFAULT_BASE","sort":3,"meta":{"private":true,"static":true}},{"name":"Ceiling","fullName":"OpenEdge.Core.Util.MathUtil:Ceiling","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.MathUtil-method-Ceiling","sort":3,"meta":{"static":true}},{"name":"HexToInt","fullName":"OpenEdge.Core.Util.MathUtil:HexToInt","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.MathUtil-method-HexToInt","sort":3,"meta":{"static":true}},{"name":"ExponentialToDec","fullName":"OpenEdge.Core.Util.MathUtil:ExponentialToDec","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.MathUtil-method-ExponentialToDec","sort":3,"meta":{"static":true}},{"name":"ExponentialToDec","fullName":"OpenEdge.Core.Util.MathUtil:ExponentialToDec","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.MathUtil-method-ExponentialToDec","sort":3,"meta":{"static":true}},{"name":"IntToHex","fullName":"OpenEdge.Core.Util.MathUtil:IntToHex","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.MathUtil-method-IntToHex","sort":3,"meta":{"static":true}},{"name":"ITranslationManager","fullName":"Spark.Core.Manager.ITranslationManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.ITranslationManager","sort":1,"meta":{}},{"name":"getTranslatedMessage","fullName":"Spark.Core.Manager.ITranslationManager:getTranslatedMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ITranslationManager-method-getTranslatedMessage","sort":3,"meta":{}},{"name":"getTranslatedMessage","fullName":"Spark.Core.Manager.ITranslationManager:getTranslatedMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ITranslationManager-method-getTranslatedMessage","sort":3,"meta":{}},{"name":"GetDataTableResponse","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse","sort":1,"meta":{}},{"name":"GetDataTableResponse","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:GetDataTableResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-constructor-GetDataTableResponse","sort":3,"meta":{}},{"name":"GetDataTableResponse","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:GetDataTableResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-constructor-GetDataTableResponse","sort":3,"meta":{}},{"name":"NextPagingContext","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:NextPagingContext","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-NextPagingContext","sort":3,"meta":{}},{"name":"PreviousPagingContext","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:PreviousPagingContext","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-PreviousPagingContext","sort":3,"meta":{}},{"name":"TableName","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:TableName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-TableName","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetDataTableResponse:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-method-FromJson","sort":3,"meta":{}},{"name":"StateManager","fullName":"Spark.Core.Manager.StateManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.StateManager","sort":1,"meta":{}},{"name":"StateManager","fullName":"Spark.Core.Manager.StateManager:StateManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.StateManager-constructor-StateManager","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.StateManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.StateManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"readContextFromStore","fullName":"Spark.Core.Manager.StateManager:readContextFromStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-readContextFromStore","sort":3,"meta":{}},{"name":"readContextFromStoreAndLock","fullName":"Spark.Core.Manager.StateManager:readContextFromStoreAndLock","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-readContextFromStoreAndLock","sort":3,"meta":{}},{"name":"writeContextToStore","fullName":"Spark.Core.Manager.StateManager:writeContextToStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-writeContextToStore","sort":3,"meta":{}},{"name":"writeContextToStore","fullName":"Spark.Core.Manager.StateManager:writeContextToStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-writeContextToStore","sort":3,"meta":{}},{"name":"updateLastUsed","fullName":"Spark.Core.Manager.StateManager:updateLastUsed","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-updateLastUsed","sort":3,"meta":{}},{"name":"removeContextFromStore","fullName":"Spark.Core.Manager.StateManager:removeContextFromStore","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-removeContextFromStore","sort":3,"meta":{}},{"name":"cleanOldContextData","fullName":"Spark.Core.Manager.StateManager:cleanOldContextData","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateManager-method-cleanOldContextData","sort":3,"meta":{}},{"name":"IAuthHandler","fullName":"Spark.Core.Security.IAuthHandler","icon":"icon-interface","url":"#!/class/Spark.Core.Security.IAuthHandler","sort":1,"meta":{}},{"name":"getUserID","fullName":"Spark.Core.Security.IAuthHandler:getUserID","icon":"icon-method","url":"#!/class/Spark.Core.Security.IAuthHandler-method-getUserID","sort":3,"meta":{}},{"name":"isActive","fullName":"Spark.Core.Security.IAuthHandler:isActive","icon":"icon-method","url":"#!/class/Spark.Core.Security.IAuthHandler-method-isActive","sort":3,"meta":{}},{"name":"isExpired","fullName":"Spark.Core.Security.IAuthHandler:isExpired","icon":"icon-method","url":"#!/class/Spark.Core.Security.IAuthHandler-method-isExpired","sort":3,"meta":{}},{"name":"isLocked","fullName":"Spark.Core.Security.IAuthHandler:isLocked","icon":"icon-method","url":"#!/class/Spark.Core.Security.IAuthHandler-method-isLocked","sort":3,"meta":{}},{"name":"getUserRoles","fullName":"Spark.Core.Security.IAuthHandler:getUserRoles","icon":"icon-method","url":"#!/class/Spark.Core.Security.IAuthHandler-method-getUserRoles","sort":3,"meta":{}},{"name":"Annotate","fullName":"Spark.Core.Util.Annotate","icon":"icon-class","url":"#!/class/Spark.Core.Util.Annotate","sort":1,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.Annotate:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-addProperty","sort":3,"meta":{"static":true}},{"name":"addProperty","fullName":"Spark.Core.Util.Annotate:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-addProperty","sort":3,"meta":{"static":true}},{"name":"describeEntity","fullName":"Spark.Core.Util.Annotate:describeEntity","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeEntity","sort":3,"meta":{"static":true}},{"name":"describeEntity","fullName":"Spark.Core.Util.Annotate:describeEntity","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeEntity","sort":3,"meta":{"static":true}},{"name":"describeEntity","fullName":"Spark.Core.Util.Annotate:describeEntity","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeEntity","sort":3,"meta":{"static":true}},{"name":"describeFields","fullName":"Spark.Core.Util.Annotate:describeFields","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeFields","sort":3,"meta":{"static":true}},{"name":"describeFields","fullName":"Spark.Core.Util.Annotate:describeFields","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeFields","sort":3,"meta":{"static":true}},{"name":"describeFields","fullName":"Spark.Core.Util.Annotate:describeFields","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeFields","sort":3,"meta":{"static":true}},{"name":"describeCreate","fullName":"Spark.Core.Util.Annotate:describeCreate","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeCreate","sort":3,"meta":{"static":true}},{"name":"describeRead","fullName":"Spark.Core.Util.Annotate:describeRead","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeRead","sort":3,"meta":{"static":true}},{"name":"describeUpdate","fullName":"Spark.Core.Util.Annotate:describeUpdate","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeUpdate","sort":3,"meta":{"static":true}},{"name":"describeDelete","fullName":"Spark.Core.Util.Annotate:describeDelete","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeDelete","sort":3,"meta":{"static":true}},{"name":"describeSubmit","fullName":"Spark.Core.Util.Annotate:describeSubmit","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeSubmit","sort":3,"meta":{"static":true}},{"name":"describeInvoke","fullName":"Spark.Core.Util.Annotate:describeInvoke","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeInvoke","sort":3,"meta":{"static":true}},{"name":"describeResource","fullName":"Spark.Core.Util.Annotate:describeResource","icon":"icon-method","url":"#!/class/Spark.Core.Util.Annotate-method-describeResource","sort":3,"meta":{"static":true}},{"name":"AbstractMessage","fullName":"Spark.Core.Message.AbstractMessage","icon":"icon-class","url":"#!/class/Spark.Core.Message.AbstractMessage","sort":1,"meta":{"abstract":true}},{"name":"AbstractMessage","fullName":"Spark.Core.Message.AbstractMessage:AbstractMessage","icon":"icon-constructor","url":"#!/class/Spark.Core.Message.AbstractMessage-constructor-AbstractMessage","sort":3,"meta":{}},{"name":"AbstractMessage","fullName":"Spark.Core.Message.AbstractMessage:AbstractMessage","icon":"icon-constructor","url":"#!/class/Spark.Core.Message.AbstractMessage-constructor-AbstractMessage","sort":3,"meta":{}},{"name":"AbstractMessage","fullName":"Spark.Core.Message.AbstractMessage:AbstractMessage","icon":"icon-destructor","url":"#!/class/Spark.Core.Message.AbstractMessage-destructor-AbstractMessage","sort":3,"meta":{}},{"name":"messageKeyPin","fullName":"Spark.Core.Message.AbstractMessage:messageKeyPin","icon":"icon-property","url":"#!/class/Spark.Core.Message.AbstractMessage-property-messageKeyPin","sort":3,"meta":{}},{"name":"deserializeMessage","fullName":"Spark.Core.Message.AbstractMessage:deserializeMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-deserializeMessage","sort":3,"meta":{"protected":true}},{"name":"deserializeMessageFromFile","fullName":"Spark.Core.Message.AbstractMessage:deserializeMessageFromFile","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-deserializeMessageFromFile","sort":3,"meta":{"protected":true}},{"name":"promoteObject","fullName":"Spark.Core.Message.AbstractMessage:promoteObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-promoteObject","sort":3,"meta":{"final":true}},{"name":"demoteObject","fullName":"Spark.Core.Message.AbstractMessage:demoteObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-demoteObject","sort":3,"meta":{"final":true}},{"name":"setNullParam","fullName":"Spark.Core.Message.AbstractMessage:setNullParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setNullParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"setParam","fullName":"Spark.Core.Message.AbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-setParam","sort":3,"meta":{"final":true}},{"name":"getParams","fullName":"Spark.Core.Message.AbstractMessage:getParams","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParams","sort":3,"meta":{}},{"name":"getParamCount","fullName":"Spark.Core.Message.AbstractMessage:getParamCount","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamCount","sort":3,"meta":{}},{"name":"hasParam","fullName":"Spark.Core.Message.AbstractMessage:hasParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-hasParam","sort":3,"meta":{"final":true}},{"name":"removeParam","fullName":"Spark.Core.Message.AbstractMessage:removeParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-removeParam","sort":3,"meta":{"final":true}},{"name":"getParamObject","fullName":"Spark.Core.Message.AbstractMessage:getParamObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamObject","sort":3,"meta":{}},{"name":"getParamType","fullName":"Spark.Core.Message.AbstractMessage:getParamType","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamType","sort":3,"meta":{}},{"name":"getParamAsJsonText","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonText","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonText","sort":3,"meta":{}},{"name":"getParamAsJsonText","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonText","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonText","sort":3,"meta":{}},{"name":"getParamAsChar","fullName":"Spark.Core.Message.AbstractMessage:getParamAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsChar","sort":3,"meta":{}},{"name":"getParamAsChar","fullName":"Spark.Core.Message.AbstractMessage:getParamAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsChar","sort":3,"meta":{}},{"name":"getParamAsCharEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsCharEx","sort":3,"meta":{}},{"name":"getParamAsCharEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsCharEx","sort":3,"meta":{}},{"name":"getParamAsLongChar","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLongChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongChar","sort":3,"meta":{}},{"name":"getParamAsLongChar","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLongChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongChar","sort":3,"meta":{}},{"name":"getParamAsLongCharEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLongCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongCharEx","sort":3,"meta":{}},{"name":"getParamAsLongCharEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLongCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongCharEx","sort":3,"meta":{}},{"name":"getParamAsInt","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt","sort":3,"meta":{}},{"name":"getParamAsInt","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt","sort":3,"meta":{}},{"name":"getParamAsIntEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsIntEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsIntEx","sort":3,"meta":{}},{"name":"getParamAsIntEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsIntEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsIntEx","sort":3,"meta":{}},{"name":"getParamAsInt64","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64","sort":3,"meta":{}},{"name":"getParamAsInt64","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64","sort":3,"meta":{}},{"name":"getParamAsInt64Ex","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt64Ex","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64Ex","sort":3,"meta":{}},{"name":"getParamAsInt64Ex","fullName":"Spark.Core.Message.AbstractMessage:getParamAsInt64Ex","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64Ex","sort":3,"meta":{}},{"name":"getParamAsDec","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDec","sort":3,"meta":{}},{"name":"getParamAsDec","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDec","sort":3,"meta":{}},{"name":"getParamAsDecEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDecEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDecEx","sort":3,"meta":{}},{"name":"getParamAsDecEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDecEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDecEx","sort":3,"meta":{}},{"name":"getParamAsDate","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDate","sort":3,"meta":{}},{"name":"getParamAsDate","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDate","sort":3,"meta":{}},{"name":"getParamAsDateEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDateEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDateEx","sort":3,"meta":{}},{"name":"getParamAsDateEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDateEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDateEx","sort":3,"meta":{}},{"name":"getParamAsDatetime","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetime","sort":3,"meta":{}},{"name":"getParamAsDatetime","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetime","sort":3,"meta":{}},{"name":"getParamAsDatetimeEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZ","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZ","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZ","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZ","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZ","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZ","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZEx","sort":3,"meta":{}},{"name":"getParamAsLog","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLog","sort":3,"meta":{}},{"name":"getParamAsLog","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLog","sort":3,"meta":{}},{"name":"getParamAsLogEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLogEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLogEx","sort":3,"meta":{}},{"name":"getParamAsLogEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsLogEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLogEx","sort":3,"meta":{}},{"name":"getParamAsRowid","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRowid","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowid","sort":3,"meta":{}},{"name":"getParamAsRowid","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRowid","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowid","sort":3,"meta":{}},{"name":"getParamAsRowidEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRowidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowidEx","sort":3,"meta":{}},{"name":"getParamAsRowidEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRowidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowidEx","sort":3,"meta":{}},{"name":"getParamAsRecid","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRecid","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecid","sort":3,"meta":{}},{"name":"getParamAsRecid","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRecid","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecid","sort":3,"meta":{}},{"name":"getParamAsRecidEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRecidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecidEx","sort":3,"meta":{}},{"name":"getParamAsRecidEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsRecidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecidEx","sort":3,"meta":{}},{"name":"getParamAsMemptr","fullName":"Spark.Core.Message.AbstractMessage:getParamAsMemptr","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptr","sort":3,"meta":{}},{"name":"getParamAsMemptr","fullName":"Spark.Core.Message.AbstractMessage:getParamAsMemptr","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptr","sort":3,"meta":{}},{"name":"getParamAsMemptrEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsMemptrEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptrEx","sort":3,"meta":{}},{"name":"getParamAsMemptrEx","fullName":"Spark.Core.Message.AbstractMessage:getParamAsMemptrEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptrEx","sort":3,"meta":{}},{"name":"getParamAsJsonObject","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonObject","sort":3,"meta":{}},{"name":"getParamAsJsonObject","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonObject","sort":3,"meta":{}},{"name":"getParamAsJsonArray","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonArray","sort":3,"meta":{}},{"name":"getParamAsJsonArray","fullName":"Spark.Core.Message.AbstractMessage:getParamAsJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonArray","sort":3,"meta":{}},{"name":"getParamAsHandle","fullName":"Spark.Core.Message.AbstractMessage:getParamAsHandle","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsHandle","sort":3,"meta":{}},{"name":"serializeMessage","fullName":"Spark.Core.Message.AbstractMessage:serializeMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-serializeMessage","sort":3,"meta":{}},{"name":"storeProperties","fullName":"Spark.Core.Message.AbstractMessage:storeProperties","icon":"icon-method","url":"#!/class/Spark.Core.Message.AbstractMessage-method-storeProperties","sort":3,"meta":{"protected":true,"abstract":true}},{"name":"IServiceManager","fullName":"Spark.Core.Manager.IServiceManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.IServiceManager","sort":1,"meta":{}},{"name":"callServiceFunction","fullName":"Spark.Core.Manager.IServiceManager:callServiceFunction","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IServiceManager-method-callServiceFunction","sort":3,"meta":{}},{"name":"callServiceFunction","fullName":"Spark.Core.Manager.IServiceManager:callServiceFunction","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IServiceManager-method-callServiceFunction","sort":3,"meta":{}},{"name":"getServiceImplementation","fullName":"Spark.Core.Manager.IServiceManager:getServiceImplementation","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IServiceManager-method-getServiceImplementation","sort":3,"meta":{}},{"name":"TranslationManager","fullName":"Spark.Core.Manager.TranslationManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.TranslationManager","sort":1,"meta":{}},{"name":"TranslationManager","fullName":"Spark.Core.Manager.TranslationManager:TranslationManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.TranslationManager-constructor-TranslationManager","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.TranslationManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.TranslationManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.TranslationManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.TranslationManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"getTranslatedMessage","fullName":"Spark.Core.Manager.TranslationManager:getTranslatedMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.TranslationManager-method-getTranslatedMessage","sort":3,"meta":{}},{"name":"getTranslatedMessage","fullName":"Spark.Core.Manager.TranslationManager:getTranslatedMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.TranslationManager-method-getTranslatedMessage","sort":3,"meta":{}},{"name":"DynamicResource","fullName":"Spark.Core.Service.DynamicResource","icon":"icon-class","url":"#!/class/Spark.Core.Service.DynamicResource","sort":1,"meta":{"abstract":true}},{"name":"serviceURI","fullName":"Spark.Core.Service.DynamicResource:serviceURI","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicResource-property-serviceURI","sort":3,"meta":{"abstract":true}},{"name":"resourceName","fullName":"Spark.Core.Service.DynamicResource:resourceName","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicResource-property-resourceName","sort":3,"meta":{"abstract":true}},{"name":"oContextMessage","fullName":"Spark.Core.Service.DynamicResource:oContextMessage","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicResource-property-oContextMessage","sort":3,"meta":{}},{"name":"oClientContext","fullName":"Spark.Core.Service.DynamicResource:oClientContext","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicResource-property-oClientContext","sort":3,"meta":{"protected":true}},{"name":"oLoggingManager","fullName":"Spark.Core.Service.DynamicResource:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicResource-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"getClassName","fullName":"Spark.Core.Service.DynamicResource:getClassName","icon":"icon-method","url":"#!/class/Spark.Core.Service.DynamicResource-method-getClassName","sort":3,"meta":{"protected":true,"final":true}},{"name":"initialize","fullName":"Spark.Core.Service.DynamicResource:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Service.DynamicResource-method-initialize","sort":3,"meta":{}},{"name":"dispose","fullName":"Spark.Core.Service.DynamicResource:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Service.DynamicResource-method-dispose","sort":3,"meta":{}},{"name":"ConnectionManager","fullName":"Spark.Core.Manager.ConnectionManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.ConnectionManager","sort":1,"meta":{}},{"name":"ConnectionManager","fullName":"Spark.Core.Manager.ConnectionManager:ConnectionManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.ConnectionManager-constructor-ConnectionManager","sort":3,"meta":{}},{"name":"oLoggingManager","fullName":"Spark.Core.Manager.ConnectionManager:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ConnectionManager-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"initialize","fullName":"Spark.Core.Manager.ConnectionManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.ConnectionManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"loadConfig","fullName":"Spark.Core.Manager.ConnectionManager:loadConfig","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-loadConfig","sort":3,"meta":{"protected":true}},{"name":"getConnectionParam","fullName":"Spark.Core.Manager.ConnectionManager:getConnectionParam","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-getConnectionParam","sort":3,"meta":{}},{"name":"getServer","fullName":"Spark.Core.Manager.ConnectionManager:getServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-getServer","sort":3,"meta":{}},{"name":"stopLifeCycle","fullName":"Spark.Core.Manager.ConnectionManager:stopLifeCycle","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-stopLifeCycle","sort":3,"meta":{}},{"name":"stopServer","fullName":"Spark.Core.Manager.ConnectionManager:stopServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-stopServer","sort":3,"meta":{}},{"name":"reconnectServer","fullName":"Spark.Core.Manager.ConnectionManager:reconnectServer","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-reconnectServer","sort":3,"meta":{}},{"name":"validContext","fullName":"Spark.Core.Manager.ConnectionManager:validContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-validContext","sort":3,"meta":{}},{"name":"getProcHandle","fullName":"Spark.Core.Manager.ConnectionManager:getProcHandle","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ConnectionManager-method-getProcHandle","sort":3,"meta":{}},{"name":"ttServer","fullName":"Spark.Core.Manager.ConnectionManager:ttServer","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ConnectionManager-temptable-ttServer","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ttConnection","fullName":"Spark.Core.Manager.ConnectionManager:ttConnection","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ConnectionManager-temptable-ttConnection","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"dsConnection","fullName":"Spark.Core.Manager.ConnectionManager:dsConnection","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.ConnectionManager-dataset-dsConnection","sort":3,"meta":{"protected":true}},{"name":"LifecycleScope","fullName":"Spark.Core.Util.LifecycleScope","icon":"icon-class","url":"#!/class/Spark.Core.Util.LifecycleScope","sort":1,"meta":{}},{"name":"LifecycleScope","fullName":"Spark.Core.Util.LifecycleScope:LifecycleScope","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.LifecycleScope-constructor-LifecycleScope","sort":3,"meta":{}},{"name":"getScope","fullName":"Spark.Core.Util.LifecycleScope:getScope","icon":"icon-method","url":"#!/class/Spark.Core.Util.LifecycleScope-method-getScope","sort":3,"meta":{}},{"name":"ToString","fullName":"Spark.Core.Util.LifecycleScope:ToString","icon":"icon-method","url":"#!/class/Spark.Core.Util.LifecycleScope-method-ToString","sort":3,"meta":{"override":true}},{"name":"StatusHandler","fullName":"Spark.Core.Handler.StatusHandler","icon":"icon-class","url":"#!/class/Spark.Core.Handler.StatusHandler","sort":1,"meta":{}},{"name":"HandleNotAllowedMethod","fullName":"Spark.Core.Handler.StatusHandler:HandleNotAllowedMethod","icon":"icon-method","url":"#!/class/Spark.Core.Handler.StatusHandler-method-HandleNotAllowedMethod","sort":3,"meta":{"protected":true,"override":true}},{"name":"HandleNotImplemented","fullName":"Spark.Core.Handler.StatusHandler:HandleNotImplemented","icon":"icon-method","url":"#!/class/Spark.Core.Handler.StatusHandler-method-HandleNotImplemented","sort":3,"meta":{"protected":true,"override":true}},{"name":"HandleGet","fullName":"Spark.Core.Handler.StatusHandler:HandleGet","icon":"icon-method","url":"#!/class/Spark.Core.Handler.StatusHandler-method-HandleGet","sort":3,"meta":{"protected":true,"override":true}},{"name":"Sendmail","fullName":"Spark.Core.Util.Sendmail","icon":"icon-class","url":"#!/class/Spark.Core.Util.Sendmail","sort":1,"meta":{}},{"name":"Sendmail","fullName":"Spark.Core.Util.Sendmail:Sendmail","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.Sendmail-constructor-Sendmail","sort":3,"meta":{}},{"name":"IsDevMode","fullName":"Spark.Core.Util.Sendmail:IsDevMode","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-IsDevMode","sort":3,"meta":{}},{"name":"BlatPath","fullName":"Spark.Core.Util.Sendmail:BlatPath","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-BlatPath","sort":3,"meta":{}},{"name":"BlatLog","fullName":"Spark.Core.Util.Sendmail:BlatLog","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-BlatLog","sort":3,"meta":{}},{"name":"SendmailPath","fullName":"Spark.Core.Util.Sendmail:SendmailPath","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SendmailPath","sort":3,"meta":{}},{"name":"SMTPServer","fullName":"Spark.Core.Util.Sendmail:SMTPServer","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SMTPServer","sort":3,"meta":{}},{"name":"AttachBinary","fullName":"Spark.Core.Util.Sendmail:AttachBinary","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-AttachBinary","sort":3,"meta":{}},{"name":"AttachText","fullName":"Spark.Core.Util.Sendmail:AttachText","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-AttachText","sort":3,"meta":{}},{"name":"EmailBody","fullName":"Spark.Core.Util.Sendmail:EmailBody","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-EmailBody","sort":3,"meta":{}},{"name":"Recipient","fullName":"Spark.Core.Util.Sendmail:Recipient","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-Recipient","sort":3,"meta":{}},{"name":"SubjectLine","fullName":"Spark.Core.Util.Sendmail:SubjectLine","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SubjectLine","sort":3,"meta":{}},{"name":"SendWithBCC","fullName":"Spark.Core.Util.Sendmail:SendWithBCC","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SendWithBCC","sort":3,"meta":{}},{"name":"SendWithCC","fullName":"Spark.Core.Util.Sendmail:SendWithCC","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SendWithCC","sort":3,"meta":{}},{"name":"SendFrom","fullName":"Spark.Core.Util.Sendmail:SendFrom","icon":"icon-property","url":"#!/class/Spark.Core.Util.Sendmail-property-SendFrom","sort":3,"meta":{}},{"name":"createTempFile","fullName":"Spark.Core.Util.Sendmail:createTempFile","icon":"icon-method","url":"#!/class/Spark.Core.Util.Sendmail-method-createTempFile","sort":3,"meta":{"private":true}},{"name":"removeTempFile","fullName":"Spark.Core.Util.Sendmail:removeTempFile","icon":"icon-method","url":"#!/class/Spark.Core.Util.Sendmail-method-removeTempFile","sort":3,"meta":{"private":true}},{"name":"SendEmail","fullName":"Spark.Core.Util.Sendmail:SendEmail","icon":"icon-method","url":"#!/class/Spark.Core.Util.Sendmail-method-SendEmail","sort":3,"meta":{}},{"name":"SendEmail","fullName":"Spark.Core.Util.Sendmail:SendEmail","icon":"icon-method","url":"#!/class/Spark.Core.Util.Sendmail-method-SendEmail","sort":3,"meta":{}},{"name":"QueryDefinition","fullName":"OpenEdge.BusinessLogic.QueryDefinition","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition","sort":1,"meta":{}},{"name":"QueryDefinition","fullName":"OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition","sort":3,"meta":{}},{"name":"QueryDefinition","fullName":"OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition","sort":3,"meta":{}},{"name":"QueryDefinition","fullName":"OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition","sort":3,"meta":{}},{"name":"QuerySelection","fullName":"OpenEdge.BusinessLogic.QueryDefinition:QuerySelection","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-property-QuerySelection","sort":3,"meta":{}},{"name":"QuerySort","fullName":"OpenEdge.BusinessLogic.QueryDefinition:QuerySort","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-property-QuerySort","sort":3,"meta":{}},{"name":"ToString","fullName":"OpenEdge.BusinessLogic.QueryDefinition:ToString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-ToString","sort":3,"meta":{"override":true}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.QueryDefinition:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.QueryDefinition:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-FromJson","sort":3,"meta":{}},{"name":"GetResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse","sort":1,"meta":{}},{"name":"GetResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse","sort":3,"meta":{}},{"name":"GetResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse","sort":3,"meta":{}},{"name":"GetResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse","sort":3,"meta":{}},{"name":"ResultCounts","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:ResultCounts","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-property-ResultCounts","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-method-FromJson","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetResultCountResponse:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"QueryOperatorHelper","fullName":"OpenEdge.BusinessLogic.QueryOperatorHelper","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper","sort":1,"meta":{}},{"name":"QueryOperatorHelper","fullName":"OpenEdge.BusinessLogic.QueryOperatorHelper:QueryOperatorHelper","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper-constructor-QueryOperatorHelper","sort":3,"meta":{"static":true}},{"name":"ToEnum","fullName":"OpenEdge.BusinessLogic.QueryOperatorHelper:ToEnum","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper-method-ToEnum","sort":3,"meta":{"static":true}},{"name":"UpdateModeEnum","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum","icon":"icon-enum","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum","sort":1,"meta":{}},{"name":"UNDEFINED","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum:UNDEFINED","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-UNDEFINED","sort":3,"meta":{}},{"name":"TRANSACTIONAL_SUBMIT","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum:TRANSACTIONAL_SUBMIT","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-TRANSACTIONAL_SUBMIT","sort":3,"meta":{}},{"name":"BULK_SUBMIT","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum:BULK_SUBMIT","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-BULK_SUBMIT","sort":3,"meta":{}},{"name":"CUD","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum:CUD","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-CUD","sort":3,"meta":{}},{"name":"CUD_NOBI","fullName":"OpenEdge.BusinessLogic.UpdateModeEnum:CUD_NOBI","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-CUD_NOBI","sort":3,"meta":{}},{"name":"ISchemaManager","fullName":"Spark.Core.Manager.ISchemaManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.ISchemaManager","sort":1,"meta":{}},{"name":"initSchema","fullName":"Spark.Core.Manager.ISchemaManager:initSchema","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-initSchema","sort":3,"meta":{}},{"name":"initMethodSignature","fullName":"Spark.Core.Manager.ISchemaManager:initMethodSignature","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-initMethodSignature","sort":3,"meta":{}},{"name":"deleteObjects","fullName":"Spark.Core.Manager.ISchemaManager:deleteObjects","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-deleteObjects","sort":3,"meta":{}},{"name":"dumpObjects","fullName":"Spark.Core.Manager.ISchemaManager:dumpObjects","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-dumpObjects","sort":3,"meta":{}},{"name":"getObject","fullName":"Spark.Core.Manager.ISchemaManager:getObject","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getObject","sort":3,"meta":{}},{"name":"getObjectChildren","fullName":"Spark.Core.Manager.ISchemaManager:getObjectChildren","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getObjectChildren","sort":3,"meta":{}},{"name":"getObjectList","fullName":"Spark.Core.Manager.ISchemaManager:getObjectList","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getObjectList","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Manager.ISchemaManager:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getDataset","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Manager.ISchemaManager:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getDataset","sort":3,"meta":{}},{"name":"getTempTable","fullName":"Spark.Core.Manager.ISchemaManager:getTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-getTempTable","sort":3,"meta":{}},{"name":"registerDataset","fullName":"Spark.Core.Manager.ISchemaManager:registerDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-registerDataset","sort":3,"meta":{}},{"name":"registerTempTable","fullName":"Spark.Core.Manager.ISchemaManager:registerTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-registerTempTable","sort":3,"meta":{}},{"name":"registerTempTable","fullName":"Spark.Core.Manager.ISchemaManager:registerTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ISchemaManager-method-registerTempTable","sort":3,"meta":{}},{"name":"CatalogManager","fullName":"Spark.Core.Manager.CatalogManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.CatalogManager","sort":1,"meta":{}},{"name":"ApiVersion","fullName":"Spark.Core.Manager.CatalogManager:ApiVersion","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-ApiVersion","sort":3,"meta":{}},{"name":"IdProperty","fullName":"Spark.Core.Manager.CatalogManager:IdProperty","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-IdProperty","sort":3,"meta":{}},{"name":"SeqProperty","fullName":"Spark.Core.Manager.CatalogManager:SeqProperty","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-SeqProperty","sort":3,"meta":{}},{"name":"ReadFilter","fullName":"Spark.Core.Manager.CatalogManager:ReadFilter","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-ReadFilter","sort":3,"meta":{}},{"name":"ServicePrefix","fullName":"Spark.Core.Manager.CatalogManager:ServicePrefix","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-ServicePrefix","sort":3,"meta":{}},{"name":"CatalogService","fullName":"Spark.Core.Manager.CatalogManager:CatalogService","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-CatalogService","sort":3,"meta":{}},{"name":"UseRequestObj","fullName":"Spark.Core.Manager.CatalogManager:UseRequestObj","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-UseRequestObj","sort":3,"meta":{}},{"name":"oLoggingManager","fullName":"Spark.Core.Manager.CatalogManager:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"oSchemaManager","fullName":"Spark.Core.Manager.CatalogManager:oSchemaManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-oSchemaManager","sort":3,"meta":{"protected":true}},{"name":"TemporaryDir","fullName":"Spark.Core.Manager.CatalogManager:TemporaryDir","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-TemporaryDir","sort":3,"meta":{"protected":true}},{"name":"Annotations","fullName":"Spark.Core.Manager.CatalogManager:Annotations","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-Annotations","sort":3,"meta":{"protected":true}},{"name":"ParamUUID","fullName":"Spark.Core.Manager.CatalogManager:ParamUUID","icon":"icon-property","url":"#!/class/Spark.Core.Manager.CatalogManager-property-ParamUUID","sort":3,"meta":{"protected":true}},{"name":"clearResourceMethods","fullName":"Spark.Core.Manager.CatalogManager:clearResourceMethods","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-clearResourceMethods","sort":3,"meta":{"protected":true}},{"name":"getJsonType","fullName":"Spark.Core.Manager.CatalogManager:getJsonType","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getJsonType","sort":3,"meta":{"protected":true}},{"name":"getList","fullName":"Spark.Core.Manager.CatalogManager:getList","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getList","sort":3,"meta":{"protected":true}},{"name":"processAnnotations","fullName":"Spark.Core.Manager.CatalogManager:processAnnotations","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-processAnnotations","sort":3,"meta":{"protected":true}},{"name":"loadDynamicResource","fullName":"Spark.Core.Manager.CatalogManager:loadDynamicResource","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-loadDynamicResource","sort":3,"meta":{"protected":true}},{"name":"registerMethods","fullName":"Spark.Core.Manager.CatalogManager:registerMethods","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-registerMethods","sort":3,"meta":{"protected":true}},{"name":"registerMethods","fullName":"Spark.Core.Manager.CatalogManager:registerMethods","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-registerMethods","sort":3,"meta":{"protected":true}},{"name":"registerProcedures","fullName":"Spark.Core.Manager.CatalogManager:registerProcedures","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-registerProcedures","sort":3,"meta":{"protected":true}},{"name":"runPreloader","fullName":"Spark.Core.Manager.CatalogManager:runPreloader","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-runPreloader","sort":3,"meta":{"protected":true}},{"name":"setResourceMethod","fullName":"Spark.Core.Manager.CatalogManager:setResourceMethod","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-setResourceMethod","sort":3,"meta":{"protected":true}},{"name":"setResourceProcedure","fullName":"Spark.Core.Manager.CatalogManager:setResourceProcedure","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-setResourceProcedure","sort":3,"meta":{"protected":true}},{"name":"getBeforeImageFlag","fullName":"Spark.Core.Manager.CatalogManager:getBeforeImageFlag","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getBeforeImageFlag","sort":3,"meta":{"protected":true}},{"name":"getServices","fullName":"Spark.Core.Manager.CatalogManager:getServices","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getServices","sort":3,"meta":{"protected":true}},{"name":"getResources","fullName":"Spark.Core.Manager.CatalogManager:getResources","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getResources","sort":3,"meta":{"protected":true}},{"name":"getSchema","fullName":"Spark.Core.Manager.CatalogManager:getSchema","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getSchema","sort":3,"meta":{"protected":true}},{"name":"getRelations","fullName":"Spark.Core.Manager.CatalogManager:getRelations","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getRelations","sort":3,"meta":{"protected":true}},{"name":"getTable","fullName":"Spark.Core.Manager.CatalogManager:getTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getTable","sort":3,"meta":{"protected":true}},{"name":"getOperations","fullName":"Spark.Core.Manager.CatalogManager:getOperations","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getOperations","sort":3,"meta":{"protected":true}},{"name":"getDataDefs","fullName":"Spark.Core.Manager.CatalogManager:getDataDefs","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getDataDefs","sort":3,"meta":{"protected":true}},{"name":"initialize","fullName":"Spark.Core.Manager.CatalogManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.CatalogManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"stripFileExtensions","fullName":"Spark.Core.Manager.CatalogManager:stripFileExtensions","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-stripFileExtensions","sort":3,"meta":{"protected":true}},{"name":"checkForResources","fullName":"Spark.Core.Manager.CatalogManager:checkForResources","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-checkForResources","sort":3,"meta":{"protected":true}},{"name":"loadResources","fullName":"Spark.Core.Manager.CatalogManager:loadResources","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-loadResources","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Manager.CatalogManager:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-addProperty","sort":3,"meta":{}},{"name":"describeEntity","fullName":"Spark.Core.Manager.CatalogManager:describeEntity","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-describeEntity","sort":3,"meta":{}},{"name":"describeFields","fullName":"Spark.Core.Manager.CatalogManager:describeFields","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-describeFields","sort":3,"meta":{}},{"name":"describeResource","fullName":"Spark.Core.Manager.CatalogManager:describeResource","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-describeResource","sort":3,"meta":{}},{"name":"getCatalog","fullName":"Spark.Core.Manager.CatalogManager:getCatalog","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-getCatalog","sort":3,"meta":{}},{"name":"stopProcedures","fullName":"Spark.Core.Manager.CatalogManager:stopProcedures","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-stopProcedures","sort":3,"meta":{}},{"name":"registerAllServices","fullName":"Spark.Core.Manager.CatalogManager:registerAllServices","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-registerAllServices","sort":3,"meta":{}},{"name":"registerService","fullName":"Spark.Core.Manager.CatalogManager:registerService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.CatalogManager-method-registerService","sort":3,"meta":{}},{"name":"GeneralParam","fullName":"Spark.Core.Manager.CatalogManager:GeneralParam","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-GeneralParam","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ServiceList","fullName":"Spark.Core.Manager.CatalogManager:ServiceList","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ServiceList","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ResourceList","fullName":"Spark.Core.Manager.CatalogManager:ResourceList","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceList","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ServiceInfo","fullName":"Spark.Core.Manager.CatalogManager:ServiceInfo","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ServiceInfo","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ResourceInfo","fullName":"Spark.Core.Manager.CatalogManager:ResourceInfo","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceInfo","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"MethodInfo","fullName":"Spark.Core.Manager.CatalogManager:MethodInfo","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-MethodInfo","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ParameterInfo","fullName":"Spark.Core.Manager.CatalogManager:ParameterInfo","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ParameterInfo","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ResourceProperty","fullName":"Spark.Core.Manager.CatalogManager:ResourceProperty","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceProperty","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"EntityProperty","fullName":"Spark.Core.Manager.CatalogManager:EntityProperty","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.CatalogManager-temptable-EntityProperty","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"dsConfig","fullName":"Spark.Core.Manager.CatalogManager:dsConfig","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.CatalogManager-dataset-dsConfig","sort":3,"meta":{"protected":true}},{"name":"dsResource","fullName":"Spark.Core.Manager.CatalogManager:dsResource","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.CatalogManager-dataset-dsResource","sort":3,"meta":{"protected":true}},{"name":"EnumValueMember","fullName":"Spark.Core.Util.EnumValueMember","icon":"icon-class","url":"#!/class/Spark.Core.Util.EnumValueMember","sort":1,"meta":{"abstract":true}},{"name":"EnumValueMember","fullName":"Spark.Core.Util.EnumValueMember:EnumValueMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumValueMember-constructor-EnumValueMember","sort":3,"meta":{}},{"name":"value","fullName":"Spark.Core.Util.EnumValueMember:value","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumValueMember-property-value","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumValueMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumValueMember-method-equals","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumValueMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumValueMember-method-equals","sort":3,"meta":{"override":true}},{"name":"toString","fullName":"Spark.Core.Util.EnumValueMember:toString","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumValueMember-method-toString","sort":3,"meta":{"override":true}},{"name":"UpdateDataRequest","fullName":"OpenEdge.BusinessLogic.UpdateDataRequest","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.UpdateDataRequest","sort":1,"meta":{}},{"name":"CommitScope","fullName":"OpenEdge.BusinessLogic.UpdateDataRequest:CommitScope","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-property-CommitScope","sort":3,"meta":{}},{"name":"CustomRequest","fullName":"OpenEdge.BusinessLogic.UpdateDataRequest:CustomRequest","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-property-CustomRequest","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.UpdateDataRequest:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.UpdateDataRequest:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-method-FromJson","sort":3,"meta":{}},{"name":"CryptoEncryptAlgorithmEnum","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum","icon":"icon-class","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum","sort":1,"meta":{"final":true}},{"name":"CryptoEncryptAlgorithmEnum","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:CryptoEncryptAlgorithmEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-constructor-CryptoEncryptAlgorithmEnum","sort":3,"meta":{"static":true}},{"name":"CryptoEncryptAlgorithmEnum","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:CryptoEncryptAlgorithmEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-constructor-CryptoEncryptAlgorithmEnum","sort":3,"meta":{"private":true}},{"name":"AES_CBC_128","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_128","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_128","sort":3,"meta":{"static":true}},{"name":"AES_OFB_256","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_256","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_256","sort":3,"meta":{"static":true}},{"name":"AES_CBC_192","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_192","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_192","sort":3,"meta":{"static":true}},{"name":"DES_CBC_56","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_CBC_56","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_CBC_56","sort":3,"meta":{"static":true}},{"name":"AES_CBC_256","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_256","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_256","sort":3,"meta":{"static":true}},{"name":"DES_CFB_56","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_CFB_56","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_CFB_56","sort":3,"meta":{"static":true}},{"name":"AES_CFB_128","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_128","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_128","sort":3,"meta":{"static":true}},{"name":"DES_ECB_56","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_ECB_56","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_ECB_56","sort":3,"meta":{"static":true}},{"name":"AES_CFB_192","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_192","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_192","sort":3,"meta":{"static":true}},{"name":"DES_OFB_56","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_OFB_56","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_OFB_56","sort":3,"meta":{"static":true}},{"name":"AES_CFB_256","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_256","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_256","sort":3,"meta":{"static":true}},{"name":"DES3_CBC_168","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_CBC_168","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_CBC_168","sort":3,"meta":{"static":true}},{"name":"AES_ECB_128","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_128","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_128","sort":3,"meta":{"static":true}},{"name":"DES3_CFB_168","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_CFB_168","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_CFB_168","sort":3,"meta":{"static":true}},{"name":"AES_ECB_192","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_192","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_192","sort":3,"meta":{"static":true}},{"name":"DES3_ECB_168","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_ECB_168","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_ECB_168","sort":3,"meta":{"static":true}},{"name":"AES_ECB_256","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_256","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_256","sort":3,"meta":{"static":true}},{"name":"DES3_OFB_168","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_OFB_168","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_OFB_168","sort":3,"meta":{"static":true}},{"name":"AES_OFB_128","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_128","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_128","sort":3,"meta":{"static":true}},{"name":"RC4_ECB_128","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:RC4_ECB_128","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-RC4_ECB_128","sort":3,"meta":{"static":true}},{"name":"AES_OFB_192","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_192","icon":"icon-property","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_192","sort":3,"meta":{"static":true}},{"name":"enumFromString","fullName":"Spark.Core.Util.CryptoEncryptAlgorithmEnum:enumFromString","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-method-enumFromString","sort":3,"meta":{"static":true}},{"name":"LongcharOutputStream","fullName":"Spark.Core.Util.LongcharOutputStream","icon":"icon-class","url":"#!/class/Spark.Core.Util.LongcharOutputStream","sort":1,"meta":{}},{"name":"StreamData","fullName":"Spark.Core.Util.LongcharOutputStream:StreamData","icon":"icon-property","url":"#!/class/Spark.Core.Util.LongcharOutputStream-property-StreamData","sort":3,"meta":{}},{"name":"Write","fullName":"Spark.Core.Util.LongcharOutputStream:Write","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"Spark.Core.Util.LongcharOutputStream:Write","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"Spark.Core.Util.LongcharOutputStream:Write","icon":"icon-method","url":"#!/class/Spark.Core.Util.LongcharOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"ILoggingManager","fullName":"Spark.Core.Manager.ILoggingManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.ILoggingManager","sort":1,"meta":{}},{"name":"oLogConfig","fullName":"Spark.Core.Manager.ILoggingManager:oLogConfig","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ILoggingManager-property-oLogConfig","sort":3,"meta":{}},{"name":"logMessage","fullName":"Spark.Core.Manager.ILoggingManager:logMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ILoggingManager-method-logMessage","sort":3,"meta":{}},{"name":"logError","fullName":"Spark.Core.Manager.ILoggingManager:logError","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ILoggingManager-method-logError","sort":3,"meta":{}},{"name":"updateLoggingLevel","fullName":"Spark.Core.Manager.ILoggingManager:updateLoggingLevel","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ILoggingManager-method-updateLoggingLevel","sort":3,"meta":{}},{"name":"updateLogEntryTypes","fullName":"Spark.Core.Manager.ILoggingManager:updateLogEntryTypes","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ILoggingManager-method-updateLogEntryTypes","sort":3,"meta":{}},{"name":"ErrorTypeEnum","fullName":"Spark.Core.Util.ErrorTypeEnum","icon":"icon-class","url":"#!/class/Spark.Core.Util.ErrorTypeEnum","sort":1,"meta":{"final":true}},{"name":"ErrorTypeEnum","fullName":"Spark.Core.Util.ErrorTypeEnum:ErrorTypeEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-constructor-ErrorTypeEnum","sort":3,"meta":{"static":true}},{"name":"ErrorTypeEnum","fullName":"Spark.Core.Util.ErrorTypeEnum:ErrorTypeEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-constructor-ErrorTypeEnum","sort":3,"meta":{"private":true}},{"name":"default","fullName":"Spark.Core.Util.ErrorTypeEnum:default","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-default","sort":3,"meta":{"static":true}},{"name":"error","fullName":"Spark.Core.Util.ErrorTypeEnum:error","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-error","sort":3,"meta":{"static":true}},{"name":"fatal","fullName":"Spark.Core.Util.ErrorTypeEnum:fatal","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-fatal","sort":3,"meta":{"static":true}},{"name":"trace","fullName":"Spark.Core.Util.ErrorTypeEnum:trace","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-trace","sort":3,"meta":{"static":true}},{"name":"warning","fullName":"Spark.Core.Util.ErrorTypeEnum:warning","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-warning","sort":3,"meta":{"static":true}},{"name":"information","fullName":"Spark.Core.Util.ErrorTypeEnum:information","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-information","sort":3,"meta":{"static":true}},{"name":"success","fullName":"Spark.Core.Util.ErrorTypeEnum:success","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-success","sort":3,"meta":{"static":true}},{"name":"validation","fullName":"Spark.Core.Util.ErrorTypeEnum:validation","icon":"icon-property","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-property-validation","sort":3,"meta":{"static":true}},{"name":"enumFromString","fullName":"Spark.Core.Util.ErrorTypeEnum:enumFromString","icon":"icon-method","url":"#!/class/Spark.Core.Util.ErrorTypeEnum-method-enumFromString","sort":3,"meta":{"static":true}},{"name":"QueryBuilder","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder","sort":1,"meta":{}},{"name":"GetTableBuffer","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:GetTableBuffer","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-GetTableBuffer","sort":3,"meta":{"protected":true}},{"name":"GetFieldBuffer","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:GetFieldBuffer","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-GetFieldBuffer","sort":3,"meta":{"protected":true}},{"name":"MapOperator","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:MapOperator","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MapOperator","sort":3,"meta":{"protected":true}},{"name":"MapJoin","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:MapJoin","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MapJoin","sort":3,"meta":{"protected":true}},{"name":"BuildGroup","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildGroup","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildGroup","sort":3,"meta":{"protected":true}},{"name":"BuildClause","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildClause","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildClause","sort":3,"meta":{"protected":true}},{"name":"BuildQuery","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQuery","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQuery","sort":3,"meta":{}},{"name":"BuildQueryString","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString","sort":3,"meta":{}},{"name":"BuildQueryString","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString","sort":3,"meta":{}},{"name":"BuildQueryStrings","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryStrings","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryStrings","sort":3,"meta":{}},{"name":"BuildQueryString","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString","sort":3,"meta":{}},{"name":"MergeQueryStrings","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:MergeQueryStrings","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MergeQueryStrings","sort":3,"meta":{}},{"name":"ParseIsoDate","fullName":"OpenEdge.BusinessLogic.Query.QueryBuilder:ParseIsoDate","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-ParseIsoDate","sort":3,"meta":{"protected":true}},{"name":"Reflection","fullName":"Spark.Core.Util.Reflection","icon":"icon-class","url":"#!/class/Spark.Core.Util.Reflection","sort":1,"meta":{"final":true}},{"name":"getConstructors","fullName":"Spark.Core.Util.Reflection:getConstructors","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getConstructors","sort":3,"meta":{"private":true,"static":true}},{"name":"getProperties","fullName":"Spark.Core.Util.Reflection:getProperties","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getProperties","sort":3,"meta":{"private":true,"static":true}},{"name":"getVariables","fullName":"Spark.Core.Util.Reflection:getVariables","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getVariables","sort":3,"meta":{"private":true,"static":true}},{"name":"getMethods","fullName":"Spark.Core.Util.Reflection:getMethods","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getMethods","sort":3,"meta":{"private":true,"static":true}},{"name":"getClassSignature","fullName":"Spark.Core.Util.Reflection:getClassSignature","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getClassSignature","sort":3,"meta":{"static":true}},{"name":"getClassSignature","fullName":"Spark.Core.Util.Reflection:getClassSignature","icon":"icon-method","url":"#!/class/Spark.Core.Util.Reflection-method-getClassSignature","sort":3,"meta":{"static":true}},{"name":"DOHEventHandler","fullName":"Spark.Core.Handler.DOHEventHandler","icon":"icon-class","url":"#!/class/Spark.Core.Handler.DOHEventHandler","sort":1,"meta":{"final":true}},{"name":"DOHEventHandler","fullName":"Spark.Core.Handler.DOHEventHandler:DOHEventHandler","icon":"icon-constructor","url":"#!/class/Spark.Core.Handler.DOHEventHandler-constructor-DOHEventHandler","sort":3,"meta":{}},{"name":"DOHEventHandler","fullName":"Spark.Core.Handler.DOHEventHandler:DOHEventHandler","icon":"icon-destructor","url":"#!/class/Spark.Core.Handler.DOHEventHandler-destructor-DOHEventHandler","sort":3,"meta":{}},{"name":"oLogger","fullName":"Spark.Core.Handler.DOHEventHandler:oLogger","icon":"icon-property","url":"#!/class/Spark.Core.Handler.DOHEventHandler-property-oLogger","sort":3,"meta":{"protected":true}},{"name":"oCatalogManager","fullName":"Spark.Core.Handler.DOHEventHandler:oCatalogManager","icon":"icon-property","url":"#!/class/Spark.Core.Handler.DOHEventHandler-property-oCatalogManager","sort":3,"meta":{"protected":true}},{"name":"oLoggingManager","fullName":"Spark.Core.Handler.DOHEventHandler:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Handler.DOHEventHandler-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"SessionCleanup","fullName":"Spark.Core.Handler.DOHEventHandler:SessionCleanup","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-SessionCleanup","sort":3,"meta":{"private":true}},{"name":"GetStatusReason","fullName":"Spark.Core.Handler.DOHEventHandler:GetStatusReason","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-GetStatusReason","sort":3,"meta":{"private":true}},{"name":"DefineEvents","fullName":"Spark.Core.Handler.DOHEventHandler:DefineEvents","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-DefineEvents","sort":3,"meta":{"private":true}},{"name":"InitializeRegistries","fullName":"Spark.Core.Handler.DOHEventHandler:InitializeRegistries","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-InitializeRegistries","sort":3,"meta":{"private":true}},{"name":"UpdateLogging","fullName":"Spark.Core.Handler.DOHEventHandler:UpdateLogging","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-UpdateLogging","sort":3,"meta":{"private":true}},{"name":"AuthorizeOperationHandler","fullName":"Spark.Core.Handler.DOHEventHandler:AuthorizeOperationHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-AuthorizeOperationHandler","sort":3,"meta":{"private":true}},{"name":"DiscoverServiceHandler","fullName":"Spark.Core.Handler.DOHEventHandler:DiscoverServiceHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-DiscoverServiceHandler","sort":3,"meta":{"private":true}},{"name":"LoadEntityHandler","fullName":"Spark.Core.Handler.DOHEventHandler:LoadEntityHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-LoadEntityHandler","sort":3,"meta":{"private":true}},{"name":"InvokingHandler","fullName":"Spark.Core.Handler.DOHEventHandler:InvokingHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-InvokingHandler","sort":3,"meta":{"private":true}},{"name":"InvokedHandler","fullName":"Spark.Core.Handler.DOHEventHandler:InvokedHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-InvokedHandler","sort":3,"meta":{"private":true}},{"name":"OperationErrorHandler","fullName":"Spark.Core.Handler.DOHEventHandler:OperationErrorHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-OperationErrorHandler","sort":3,"meta":{"private":true}},{"name":"UnloadEntityHandler","fullName":"Spark.Core.Handler.DOHEventHandler:UnloadEntityHandler","icon":"icon-method","url":"#!/class/Spark.Core.Handler.DOHEventHandler-method-UnloadEntityHandler","sort":3,"meta":{"private":true}},{"name":"IAbstractMessage","fullName":"Spark.Core.Message.IAbstractMessage","icon":"icon-interface","url":"#!/class/Spark.Core.Message.IAbstractMessage","sort":1,"meta":{}},{"name":"messageKeyPin","fullName":"Spark.Core.Message.IAbstractMessage:messageKeyPin","icon":"icon-property","url":"#!/class/Spark.Core.Message.IAbstractMessage-property-messageKeyPin","sort":3,"meta":{}},{"name":"promoteObject","fullName":"Spark.Core.Message.IAbstractMessage:promoteObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-promoteObject","sort":3,"meta":{}},{"name":"demoteObject","fullName":"Spark.Core.Message.IAbstractMessage:demoteObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-demoteObject","sort":3,"meta":{}},{"name":"setNullParam","fullName":"Spark.Core.Message.IAbstractMessage:setNullParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setNullParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"setParam","fullName":"Spark.Core.Message.IAbstractMessage:setParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-setParam","sort":3,"meta":{}},{"name":"getParams","fullName":"Spark.Core.Message.IAbstractMessage:getParams","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParams","sort":3,"meta":{}},{"name":"getParamCount","fullName":"Spark.Core.Message.IAbstractMessage:getParamCount","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamCount","sort":3,"meta":{}},{"name":"hasParam","fullName":"Spark.Core.Message.IAbstractMessage:hasParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-hasParam","sort":3,"meta":{}},{"name":"removeParam","fullName":"Spark.Core.Message.IAbstractMessage:removeParam","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-removeParam","sort":3,"meta":{}},{"name":"getParamObject","fullName":"Spark.Core.Message.IAbstractMessage:getParamObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamObject","sort":3,"meta":{}},{"name":"getParamType","fullName":"Spark.Core.Message.IAbstractMessage:getParamType","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamType","sort":3,"meta":{}},{"name":"getParamAsJsonText","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonText","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonText","sort":3,"meta":{}},{"name":"getParamAsJsonText","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonText","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonText","sort":3,"meta":{}},{"name":"getParamAsChar","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsChar","sort":3,"meta":{}},{"name":"getParamAsChar","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsChar","sort":3,"meta":{}},{"name":"getParamAsCharEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsCharEx","sort":3,"meta":{}},{"name":"getParamAsCharEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsCharEx","sort":3,"meta":{}},{"name":"getParamAsLongChar","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLongChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongChar","sort":3,"meta":{}},{"name":"getParamAsLongChar","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLongChar","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongChar","sort":3,"meta":{}},{"name":"getParamAsLongCharEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLongCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongCharEx","sort":3,"meta":{}},{"name":"getParamAsLongCharEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLongCharEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongCharEx","sort":3,"meta":{}},{"name":"getParamAsInt","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt","sort":3,"meta":{}},{"name":"getParamAsInt","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt","sort":3,"meta":{}},{"name":"getParamAsIntEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsIntEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsIntEx","sort":3,"meta":{}},{"name":"getParamAsIntEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsIntEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsIntEx","sort":3,"meta":{}},{"name":"getParamAsInt64","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64","sort":3,"meta":{}},{"name":"getParamAsInt64","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64","sort":3,"meta":{}},{"name":"getParamAsInt64Ex","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt64Ex","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64Ex","sort":3,"meta":{}},{"name":"getParamAsInt64Ex","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsInt64Ex","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64Ex","sort":3,"meta":{}},{"name":"getParamAsDec","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDec","sort":3,"meta":{}},{"name":"getParamAsDec","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDec","sort":3,"meta":{}},{"name":"getParamAsDecEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDecEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDecEx","sort":3,"meta":{}},{"name":"getParamAsDecEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDecEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDecEx","sort":3,"meta":{}},{"name":"getParamAsDate","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDate","sort":3,"meta":{}},{"name":"getParamAsDate","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDate","sort":3,"meta":{}},{"name":"getParamAsDateEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDateEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDateEx","sort":3,"meta":{}},{"name":"getParamAsDateEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDateEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDateEx","sort":3,"meta":{}},{"name":"getParamAsDatetime","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetime","sort":3,"meta":{}},{"name":"getParamAsDatetime","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetime","sort":3,"meta":{}},{"name":"getParamAsDatetimeEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZ","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZ","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZ","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZ","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZ","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZ","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZEx","sort":3,"meta":{}},{"name":"getParamAsDatetimeTZEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZEx","sort":3,"meta":{}},{"name":"getParamAsLog","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLog","sort":3,"meta":{}},{"name":"getParamAsLog","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLog","sort":3,"meta":{}},{"name":"getParamAsLogEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLogEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLogEx","sort":3,"meta":{}},{"name":"getParamAsLogEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsLogEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLogEx","sort":3,"meta":{}},{"name":"getParamAsRowid","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRowid","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowid","sort":3,"meta":{}},{"name":"getParamAsRowid","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRowid","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowid","sort":3,"meta":{}},{"name":"getParamAsRowidEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRowidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowidEx","sort":3,"meta":{}},{"name":"getParamAsRowidEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRowidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowidEx","sort":3,"meta":{}},{"name":"getParamAsRecid","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRecid","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecid","sort":3,"meta":{}},{"name":"getParamAsRecid","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRecid","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecid","sort":3,"meta":{}},{"name":"getParamAsRecidEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRecidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecidEx","sort":3,"meta":{}},{"name":"getParamAsRecidEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsRecidEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecidEx","sort":3,"meta":{}},{"name":"getParamAsMemptr","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsMemptr","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptr","sort":3,"meta":{}},{"name":"getParamAsMemptr","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsMemptr","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptr","sort":3,"meta":{}},{"name":"getParamAsMemptrEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsMemptrEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptrEx","sort":3,"meta":{}},{"name":"getParamAsMemptrEx","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsMemptrEx","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptrEx","sort":3,"meta":{}},{"name":"getParamAsJsonObject","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonObject","sort":3,"meta":{}},{"name":"getParamAsJsonObject","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonObject","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonObject","sort":3,"meta":{}},{"name":"getParamAsJsonArray","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonArray","sort":3,"meta":{}},{"name":"getParamAsJsonArray","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsJsonArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonArray","sort":3,"meta":{}},{"name":"getParamAsHandle","fullName":"Spark.Core.Message.IAbstractMessage:getParamAsHandle","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsHandle","sort":3,"meta":{}},{"name":"serializeMessage","fullName":"Spark.Core.Message.IAbstractMessage:serializeMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.IAbstractMessage-method-serializeMessage","sort":3,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.NamedQuery","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery","sort":1,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.NamedQuery:NamedQuery","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery","sort":3,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.NamedQuery:NamedQuery","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery","sort":3,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.NamedQuery:NamedQuery","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery","sort":3,"meta":{}},{"name":"NamedQuery","fullName":"OpenEdge.BusinessLogic.NamedQuery:NamedQuery","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery","sort":3,"meta":{}},{"name":"Name","fullName":"OpenEdge.BusinessLogic.NamedQuery:Name","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-property-Name","sort":3,"meta":{}},{"name":"Parameters","fullName":"OpenEdge.BusinessLogic.NamedQuery:Parameters","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-property-Parameters","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.NamedQuery:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.NamedQuery:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.NamedQuery-method-FromJson","sort":3,"meta":{}},{"name":"EnumNameMember","fullName":"Spark.Core.Util.EnumNameMember","icon":"icon-class","url":"#!/class/Spark.Core.Util.EnumNameMember","sort":1,"meta":{"abstract":true}},{"name":"EnumNameMember","fullName":"Spark.Core.Util.EnumNameMember:EnumNameMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumNameMember-constructor-EnumNameMember","sort":3,"meta":{}},{"name":"name","fullName":"Spark.Core.Util.EnumNameMember:name","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumNameMember-property-name","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumNameMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameMember-method-equals","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumNameMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameMember-method-equals","sort":3,"meta":{"override":true}},{"name":"toString","fullName":"Spark.Core.Util.EnumNameMember:toString","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameMember-method-toString","sort":3,"meta":{"override":true}},{"name":"LoggingManager","fullName":"Spark.Core.Manager.LoggingManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.LoggingManager","sort":1,"meta":{}},{"name":"LoggingManager","fullName":"Spark.Core.Manager.LoggingManager:LoggingManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.LoggingManager-constructor-LoggingManager","sort":3,"meta":{}},{"name":"LogConfigPath","fullName":"Spark.Core.Manager.LoggingManager:LogConfigPath","icon":"icon-property","url":"#!/class/Spark.Core.Manager.LoggingManager-property-LogConfigPath","sort":3,"meta":{"protected":true}},{"name":"oLogConfig","fullName":"Spark.Core.Manager.LoggingManager:oLogConfig","icon":"icon-property","url":"#!/class/Spark.Core.Manager.LoggingManager-property-oLogConfig","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.LoggingManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.LoggingManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"updateLoggingLevel","fullName":"Spark.Core.Manager.LoggingManager:updateLoggingLevel","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-updateLoggingLevel","sort":3,"meta":{}},{"name":"updateLogEntryTypes","fullName":"Spark.Core.Manager.LoggingManager:updateLogEntryTypes","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-updateLogEntryTypes","sort":3,"meta":{}},{"name":"logMessage","fullName":"Spark.Core.Manager.LoggingManager:logMessage","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-logMessage","sort":3,"meta":{}},{"name":"logError","fullName":"Spark.Core.Manager.LoggingManager:logError","icon":"icon-method","url":"#!/class/Spark.Core.Manager.LoggingManager-method-logError","sort":3,"meta":{}},{"name":"OERealmDefs","fullName":"Spark.Core.Constant.OERealmDefs","icon":"icon-class","url":"#!/class/Spark.Core.Constant.OERealmDefs","sort":1,"meta":{"final":true}},{"name":"REALM_ATTR_LOCKED","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_LOCKED","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_LOCKED","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_USERID","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERID","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERID","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_ROLES","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_ROLES","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_ROLES","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_USERNAME","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERNAME","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERNAME","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_USERNUMBER","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERNUMBER","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERNUMBER","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_GROUPNUMBER","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_GROUPNUMBER","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_GROUPNUMBER","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_GIVENNAME","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_GIVENNAME","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_GIVENNAME","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_MIDDLEINITIAL","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_MIDDLEINITIAL","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_MIDDLEINITIAL","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_SURNAME","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_SURNAME","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_SURNAME","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_TELEPHONE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_TELEPHONE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_TELEPHONE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_EMAIL","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_EMAIL","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EMAIL","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_DESCRIPTION","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_DESCRIPTION","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DESCRIPTION","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_ENABLED","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_ENABLED","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_ENABLED","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_CREATEDATE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_CREATEDATE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CREATEDATE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_EXPIRED","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_EXPIRED","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EXPIRED","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_DOMAIN","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_DOMAIN","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DOMAIN","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_CN","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_CN","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CN","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_SN","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_SN","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_SN","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_UID","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_UID","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_UID","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_TITLE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_TITLE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_TITLE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_STREET","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_STREET","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_STREET","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_POBOX","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_POBOX","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_POBOX","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_POSTALCODE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_POSTALCODE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_POSTALCODE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_CITY","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_CITY","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CITY","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_STATE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_STATE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_STATE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_DISPLAYNAME","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_DISPLAYNAME","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DISPLAYNAME","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_LANGUAGE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_LANGUAGE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_LANGUAGE","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_EMPLOYEENUM","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_EMPLOYEENUM","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EMPLOYEENUM","sort":3,"meta":{"static":true}},{"name":"REALM_ATTR_MOBILE","fullName":"Spark.Core.Constant.OERealmDefs:REALM_ATTR_MOBILE","icon":"icon-property","url":"#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_MOBILE","sort":3,"meta":{"static":true}},{"name":"AblFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser","sort":1,"meta":{}},{"name":"AblFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser","sort":3,"meta":{}},{"name":"AblFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser","sort":3,"meta":{}},{"name":"AblFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser","sort":3,"meta":{}},{"name":"ParseSortString","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseSortString","sort":3,"meta":{"protected":true}},{"name":"ParseWhereString","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhereString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseWhereString","sort":3,"meta":{"protected":true}},{"name":"IsMatchesExpression","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:IsMatchesExpression","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-IsMatchesExpression","sort":3,"meta":{"private":true}},{"name":"GetGroupParent","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:GetGroupParent","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetGroupParent","sort":3,"meta":{"private":true}},{"name":"AddToGroup","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:AddToGroup","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-AddToGroup","sort":3,"meta":{"private":true}},{"name":"ParseSortBy","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortBy","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseSortBy","sort":3,"meta":{"override":true}},{"name":"ParseWhere","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhere","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseWhere","sort":3,"meta":{"override":true}},{"name":"Parse","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:Parse","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-Parse","sort":3,"meta":{"override":true}},{"name":"ParseTableRequest","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseTableRequest","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseTableRequest","sort":3,"meta":{"protected":true}},{"name":"GetFieldValue","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:GetFieldValue","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetFieldValue","sort":3,"meta":{"private":true}},{"name":"GetJoin","fullName":"OpenEdge.BusinessLogic.Filter.AblFilterParser:GetJoin","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetJoin","sort":3,"meta":{"private":true}},{"name":"OSTools","fullName":"Spark.Core.Util.OSTools","icon":"icon-class","url":"#!/class/Spark.Core.Util.OSTools","sort":1,"meta":{}},{"name":"configProjectDir","fullName":"Spark.Core.Util.OSTools:configProjectDir","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-configProjectDir","sort":3,"meta":{"static":true}},{"name":"dlcdir","fullName":"Spark.Core.Util.OSTools:dlcdir","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-dlcdir","sort":3,"meta":{"static":true}},{"name":"wrkdir","fullName":"Spark.Core.Util.OSTools:wrkdir","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-wrkdir","sort":3,"meta":{"static":true}},{"name":"tmpdir","fullName":"Spark.Core.Util.OSTools:tmpdir","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-tmpdir","sort":3,"meta":{"static":true}},{"name":"sparkConf","fullName":"Spark.Core.Util.OSTools:sparkConf","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-sparkConf","sort":3,"meta":{"static":true}},{"name":"catalinaBase","fullName":"Spark.Core.Util.OSTools:catalinaBase","icon":"icon-property","url":"#!/class/Spark.Core.Util.OSTools-property-catalinaBase","sort":3,"meta":{"static":true}},{"name":"getFullPathname","fullName":"Spark.Core.Util.OSTools:getFullPathname","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-getFullPathname","sort":3,"meta":{"static":true}},{"name":"osCopyDir","fullName":"Spark.Core.Util.OSTools:osCopyDir","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-osCopyDir","sort":3,"meta":{"static":true}},{"name":"recurseDir","fullName":"Spark.Core.Util.OSTools:recurseDir","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-recurseDir","sort":3,"meta":{"static":true}},{"name":"drillDir","fullName":"Spark.Core.Util.OSTools:drillDir","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-drillDir","sort":3,"meta":{"private":true,"static":true}},{"name":"processDir","fullName":"Spark.Core.Util.OSTools:processDir","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-processDir","sort":3,"meta":{"private":true,"static":true}},{"name":"osCopyFile","fullName":"Spark.Core.Util.OSTools:osCopyFile","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-osCopyFile","sort":3,"meta":{"static":true}},{"name":"osCreateDirTree","fullName":"Spark.Core.Util.OSTools:osCreateDirTree","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-osCreateDirTree","sort":3,"meta":{"static":true}},{"name":"osErrorMsg","fullName":"Spark.Core.Util.OSTools:osErrorMsg","icon":"icon-method","url":"#!/class/Spark.Core.Util.OSTools-method-osErrorMsg","sort":3,"meta":{"static":true}},{"name":"ttDirStruct","fullName":"Spark.Core.Util.OSTools:ttDirStruct","icon":"icon-temptable","url":"#!/class/Spark.Core.Util.OSTools-temptable-ttDirStruct","sort":3,"meta":{"private":true,"static":true,"global":true,"noundo":true}},{"name":"JfpFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.JfpFilterParser","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser","sort":1,"meta":{}},{"name":"JfpFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser","sort":3,"meta":{}},{"name":"JfpFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser","sort":3,"meta":{}},{"name":"JfpFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser","sort":3,"meta":{}},{"name":"ParseTableRequest","fullName":"OpenEdge.BusinessLogic.Filter.JfpFilterParser:ParseTableRequest","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-method-ParseTableRequest","sort":3,"meta":{"protected":true,"override":true}},{"name":"StopError","fullName":"Spark.Core.Util.StopError","icon":"icon-class","url":"#!/class/Spark.Core.Util.StopError","sort":1,"meta":{}},{"name":"StopError","fullName":"Spark.Core.Util.StopError:StopError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.StopError-constructor-StopError","sort":3,"meta":{}},{"name":"KendoFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser","sort":1,"meta":{}},{"name":"KendoFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser","sort":3,"meta":{}},{"name":"KendoFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser","sort":3,"meta":{}},{"name":"KendoFilterParser","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser","sort":3,"meta":{}},{"name":"ParsePredicate","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParsePredicate","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParsePredicate","sort":3,"meta":{"protected":true}},{"name":"ParseWhere","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseWhere","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseWhere","sort":3,"meta":{"protected":true}},{"name":"ParseWhere","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseWhere","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseWhere","sort":3,"meta":{"override":true}},{"name":"ParseSortBy","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseSortBy","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseSortBy","sort":3,"meta":{"override":true}},{"name":"Parse","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:Parse","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-Parse","sort":3,"meta":{"override":true}},{"name":"ParseTableRequest","fullName":"OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseTableRequest","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseTableRequest","sort":3,"meta":{"protected":true}},{"name":"EnumNameDescMember","fullName":"Spark.Core.Util.EnumNameDescMember","icon":"icon-class","url":"#!/class/Spark.Core.Util.EnumNameDescMember","sort":1,"meta":{"abstract":true}},{"name":"EnumNameDescMember","fullName":"Spark.Core.Util.EnumNameDescMember:EnumNameDescMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumNameDescMember-constructor-EnumNameDescMember","sort":3,"meta":{}},{"name":"name","fullName":"Spark.Core.Util.EnumNameDescMember:name","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumNameDescMember-property-name","sort":3,"meta":{}},{"name":"description","fullName":"Spark.Core.Util.EnumNameDescMember:description","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumNameDescMember-property-description","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumNameDescMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameDescMember-method-equals","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumNameDescMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameDescMember-method-equals","sort":3,"meta":{"override":true}},{"name":"toString","fullName":"Spark.Core.Util.EnumNameDescMember:toString","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumNameDescMember-method-toString","sort":3,"meta":{"override":true}},{"name":"Service","fullName":"Spark.Core.Service.Service","icon":"icon-class","url":"#!/class/Spark.Core.Service.Service","sort":1,"meta":{"abstract":true}},{"name":"Service","fullName":"Spark.Core.Service.Service:Service","icon":"icon-constructor","url":"#!/class/Spark.Core.Service.Service-constructor-Service","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Service.Service:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Service.Service-method-initialize","sort":3,"meta":{"abstract":true}},{"name":"dispose","fullName":"Spark.Core.Service.Service:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Service.Service-method-dispose","sort":3,"meta":{"abstract":true}},{"name":"FilterParserRegistry","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserRegistry","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry","sort":1,"meta":{}},{"name":"Registry","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserRegistry:Registry","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry-property-Registry","sort":3,"meta":{"static":true}},{"name":"InitializeRegistry","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserRegistry:InitializeRegistry","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry-method-InitializeRegistry","sort":3,"meta":{"private":true,"static":true}},{"name":"RequestScope","fullName":"Spark.Core.Util.RequestScope","icon":"icon-class","url":"#!/class/Spark.Core.Util.RequestScope","sort":1,"meta":{}},{"name":"RequestScope","fullName":"Spark.Core.Util.RequestScope:RequestScope","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.RequestScope-constructor-RequestScope","sort":3,"meta":{}},{"name":"TimeOutError","fullName":"Spark.Core.Util.TimeOutError","icon":"icon-class","url":"#!/class/Spark.Core.Util.TimeOutError","sort":1,"meta":{}},{"name":"TimeOutError","fullName":"Spark.Core.Util.TimeOutError:TimeOutError","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.TimeOutError-constructor-TimeOutError","sort":3,"meta":{}},{"name":"SessionManager","fullName":"Spark.Core.Manager.SessionManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.SessionManager","sort":1,"meta":{}},{"name":"SessionManager","fullName":"Spark.Core.Manager.SessionManager:SessionManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.SessionManager-constructor-SessionManager","sort":3,"meta":{}},{"name":"CurrentClientContext","fullName":"Spark.Core.Manager.SessionManager:CurrentClientContext","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SessionManager-property-CurrentClientContext","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.SessionManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.SessionManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"loadConfig","fullName":"Spark.Core.Manager.SessionManager:loadConfig","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-loadConfig","sort":3,"meta":{"protected":true}},{"name":"endRequestEnvironment","fullName":"Spark.Core.Manager.SessionManager:endRequestEnvironment","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-endRequestEnvironment","sort":3,"meta":{}},{"name":"resetSession","fullName":"Spark.Core.Manager.SessionManager:resetSession","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-resetSession","sort":3,"meta":{"private":true}},{"name":"databasesConnected","fullName":"Spark.Core.Manager.SessionManager:databasesConnected","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-databasesConnected","sort":3,"meta":{}},{"name":"establishRequestEnvironment","fullName":"Spark.Core.Manager.SessionManager:establishRequestEnvironment","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment","sort":3,"meta":{}},{"name":"establishRequestEnvironment","fullName":"Spark.Core.Manager.SessionManager:establishRequestEnvironment","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment","sort":3,"meta":{}},{"name":"establishRequestEnvironment","fullName":"Spark.Core.Manager.SessionManager:establishRequestEnvironment","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment","sort":3,"meta":{}},{"name":"assertUserCredentials","fullName":"Spark.Core.Manager.SessionManager:assertUserCredentials","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-assertUserCredentials","sort":3,"meta":{"protected":true}},{"name":"getDatabaseOptions","fullName":"Spark.Core.Manager.SessionManager:getDatabaseOptions","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-getDatabaseOptions","sort":3,"meta":{"protected":true}},{"name":"registerDomains","fullName":"Spark.Core.Manager.SessionManager:registerDomains","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-registerDomains","sort":3,"meta":{"protected":true}},{"name":"userLogin","fullName":"Spark.Core.Manager.SessionManager:userLogin","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-userLogin","sort":3,"meta":{}},{"name":"decryptPassword","fullName":"Spark.Core.Manager.SessionManager:decryptPassword","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-decryptPassword","sort":3,"meta":{"protected":true}},{"name":"setClientPrincipalAttributes","fullName":"Spark.Core.Manager.SessionManager:setClientPrincipalAttributes","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-setClientPrincipalAttributes","sort":3,"meta":{"protected":true}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.SessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.SessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.SessionManager:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext","sort":3,"meta":{}},{"name":"setSessionAttribute","fullName":"Spark.Core.Manager.SessionManager:setSessionAttribute","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-setSessionAttribute","sort":3,"meta":{}},{"name":"resetSessionAttributes","fullName":"Spark.Core.Manager.SessionManager:resetSessionAttributes","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-resetSessionAttributes","sort":3,"meta":{"protected":true}},{"name":"getUserSSOToken","fullName":"Spark.Core.Manager.SessionManager:getUserSSOToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-getUserSSOToken","sort":3,"meta":{}},{"name":"getUserSSOToken","fullName":"Spark.Core.Manager.SessionManager:getUserSSOToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-getUserSSOToken","sort":3,"meta":{}},{"name":"getDomainAccessCode","fullName":"Spark.Core.Manager.SessionManager:getDomainAccessCode","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SessionManager-method-getDomainAccessCode","sort":3,"meta":{"protected":true}},{"name":"ttConfig","fullName":"Spark.Core.Manager.SessionManager:ttConfig","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SessionManager-temptable-ttConfig","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttDomains","fullName":"Spark.Core.Manager.SessionManager:ttDomains","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SessionManager-temptable-ttDomains","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttDatabase","fullName":"Spark.Core.Manager.SessionManager:ttDatabase","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SessionManager-temptable-ttDatabase","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"dsConfig","fullName":"Spark.Core.Manager.SessionManager:dsConfig","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.SessionManager-dataset-dsConfig","sort":3,"meta":{"private":true}},{"name":"ServiceLifeCycleEnum","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum","icon":"icon-class","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum","sort":1,"meta":{"final":true}},{"name":"ServiceLifeCycleEnum","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:ServiceLifeCycleEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-constructor-ServiceLifeCycleEnum","sort":3,"meta":{"static":true}},{"name":"default","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:default","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-default","sort":3,"meta":{"static":true}},{"name":"session","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:session","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-session","sort":3,"meta":{"static":true}},{"name":"request","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:request","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-request","sort":3,"meta":{"static":true}},{"name":"none","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:none","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-none","sort":3,"meta":{"static":true}},{"name":"enumFromString","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:enumFromString","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-method-enumFromString","sort":3,"meta":{"static":true}},{"name":"stringFromEnum","fullName":"Spark.Core.Manager.ServiceLifeCycleEnum:stringFromEnum","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-method-stringFromEnum","sort":3,"meta":{"static":true}},{"name":"TransientScope","fullName":"Spark.Core.Util.TransientScope","icon":"icon-class","url":"#!/class/Spark.Core.Util.TransientScope","sort":1,"meta":{}},{"name":"TransientScope","fullName":"Spark.Core.Util.TransientScope:TransientScope","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.TransientScope-constructor-TransientScope","sort":3,"meta":{}},{"name":"JsonPropertyNameEnum","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum","icon":"icon-enum","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum","sort":1,"meta":{}},{"name":"commitScope","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:commitScope","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-commitScope","sort":3,"meta":{}},{"name":"customParameter","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customParameter","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customParameter","sort":3,"meta":{}},{"name":"customRequest","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customRequest","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customRequest","sort":3,"meta":{}},{"name":"customResponse","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customResponse","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customResponse","sort":3,"meta":{}},{"name":"entries","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:entries","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-entries","sort":3,"meta":{}},{"name":"exact","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:exact","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-exact","sort":3,"meta":{}},{"name":"fieldName","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:fieldName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-fieldName","sort":3,"meta":{}},{"name":"filter","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:filter","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-filter","sort":3,"meta":{}},{"name":"join","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:join","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-join","sort":3,"meta":{}},{"name":"name","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:name","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-name","sort":3,"meta":{}},{"name":"namedQuery","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:namedQuery","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-namedQuery","sort":3,"meta":{}},{"name":"nextPagingCtx","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:nextPagingCtx","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-nextPagingCtx","sort":3,"meta":{}},{"name":"numResults","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:numResults","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-numResults","sort":3,"meta":{}},{"name":"object","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:object","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-object","sort":3,"meta":{}},{"name":"operator","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:operator","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-operator","sort":3,"meta":{}},{"name":"order","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:order","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-order","sort":3,"meta":{}},{"name":"pagingCtx","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:pagingCtx","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-pagingCtx","sort":3,"meta":{}},{"name":"params","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:params","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-params","sort":3,"meta":{}},{"name":"prevPagingCtx","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:prevPagingCtx","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-prevPagingCtx","sort":3,"meta":{}},{"name":"query","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:query","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-query","sort":3,"meta":{}},{"name":"resultCounts","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:resultCounts","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-resultCounts","sort":3,"meta":{}},{"name":"tableName","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:tableName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-tableName","sort":3,"meta":{}},{"name":"request","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:request","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-request","sort":3,"meta":{}},{"name":"requests","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:requests","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-requests","sort":3,"meta":{}},{"name":"response","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:response","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-response","sort":3,"meta":{}},{"name":"responses","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:responses","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-responses","sort":3,"meta":{}},{"name":"skip","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:skip","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-skip","sort":3,"meta":{}},{"name":"sort","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:sort","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-sort","sort":3,"meta":{}},{"name":"top","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:top","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-top","sort":3,"meta":{}},{"name":"typeName","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:typeName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-typeName","sort":3,"meta":{}},{"name":"value","fullName":"OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:value","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-value","sort":3,"meta":{}},{"name":"GetDataTableRequest","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest","sort":1,"meta":{}},{"name":"GetDataTableRequest","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:GetDataTableRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-constructor-GetDataTableRequest","sort":3,"meta":{}},{"name":"GetDataTableRequest","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:GetDataTableRequest","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-constructor-GetDataTableRequest","sort":3,"meta":{}},{"name":"NumRecords","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:NumRecords","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-NumRecords","sort":3,"meta":{}},{"name":"PagingContext","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:PagingContext","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-PagingContext","sort":3,"meta":{}},{"name":"QueryDefinition","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:QueryDefinition","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-QueryDefinition","sort":3,"meta":{}},{"name":"QueryString","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:QueryString","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-QueryString","sort":3,"meta":{}},{"name":"Skip","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:Skip","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-Skip","sort":3,"meta":{}},{"name":"TableName","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:TableName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-TableName","sort":3,"meta":{}},{"name":"ToString","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:ToString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-ToString","sort":3,"meta":{"override":true}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetDataTableRequest:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-FromJson","sort":3,"meta":{}},{"name":"String","fullName":"OpenEdge.Core.String","icon":"icon-class","url":"#!/class/OpenEdge.Core.String","sort":1,"meta":{}},{"name":"String","fullName":"OpenEdge.Core.String:String","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.String-constructor-String","sort":3,"meta":{}},{"name":"String","fullName":"OpenEdge.Core.String:String","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.String-constructor-String","sort":3,"meta":{}},{"name":"String","fullName":"OpenEdge.Core.String:String","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.String-constructor-String","sort":3,"meta":{}},{"name":"Encoding","fullName":"OpenEdge.Core.String:Encoding","icon":"icon-property","url":"#!/class/OpenEdge.Core.String-property-Encoding","sort":3,"meta":{}},{"name":"Value","fullName":"OpenEdge.Core.String:Value","icon":"icon-property","url":"#!/class/OpenEdge.Core.String-property-Value","sort":3,"meta":{}},{"name":"Size","fullName":"OpenEdge.Core.String:Size","icon":"icon-property","url":"#!/class/OpenEdge.Core.String-property-Size","sort":3,"meta":{}},{"name":"Trim","fullName":"OpenEdge.Core.String:Trim","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Trim","sort":3,"meta":{}},{"name":"Trim","fullName":"OpenEdge.Core.String:Trim","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Trim","sort":3,"meta":{}},{"name":"Empty","fullName":"OpenEdge.Core.String:Empty","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Empty","sort":3,"meta":{"static":true}},{"name":"Unknown","fullName":"OpenEdge.Core.String:Unknown","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Unknown","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.String:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Equals","sort":3,"meta":{"override":true}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{"static":true}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{"static":true}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{"static":true}},{"name":"Split","fullName":"OpenEdge.Core.String:Split","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Split","sort":3,"meta":{"static":true}},{"name":"Join","fullName":"OpenEdge.Core.String:Join","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Join","sort":3,"meta":{"static":true}},{"name":"Join","fullName":"OpenEdge.Core.String:Join","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Join","sort":3,"meta":{"static":true}},{"name":"Join","fullName":"OpenEdge.Core.String:Join","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Join","sort":3,"meta":{"static":true}},{"name":"ToString","fullName":"OpenEdge.Core.String:ToString","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-ToString","sort":3,"meta":{"override":true}},{"name":"Append","fullName":"OpenEdge.Core.String:Append","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Append","sort":3,"meta":{}},{"name":"Append","fullName":"OpenEdge.Core.String:Append","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Append","sort":3,"meta":{}},{"name":"Prepend","fullName":"OpenEdge.Core.String:Prepend","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Prepend","sort":3,"meta":{}},{"name":"Prepend","fullName":"OpenEdge.Core.String:Prepend","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-Prepend","sort":3,"meta":{}},{"name":"IsQuoted","fullName":"OpenEdge.Core.String:IsQuoted","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-IsQuoted","sort":3,"meta":{"static":true}},{"name":"IsQuoted","fullName":"OpenEdge.Core.String:IsQuoted","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-IsQuoted","sort":3,"meta":{"static":true}},{"name":"IsNullOrEmpty","fullName":"OpenEdge.Core.String:IsNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-IsNullOrEmpty","sort":3,"meta":{}},{"name":"IsNullOrEmpty","fullName":"OpenEdge.Core.String:IsNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.String-method-IsNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"ICatalogManager","fullName":"Spark.Core.Manager.ICatalogManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.ICatalogManager","sort":1,"meta":{}},{"name":"ApiVersion","fullName":"Spark.Core.Manager.ICatalogManager:ApiVersion","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ICatalogManager-property-ApiVersion","sort":3,"meta":{}},{"name":"IdProperty","fullName":"Spark.Core.Manager.ICatalogManager:IdProperty","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ICatalogManager-property-IdProperty","sort":3,"meta":{}},{"name":"ReadFilter","fullName":"Spark.Core.Manager.ICatalogManager:ReadFilter","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ICatalogManager-property-ReadFilter","sort":3,"meta":{}},{"name":"ServicePrefix","fullName":"Spark.Core.Manager.ICatalogManager:ServicePrefix","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ICatalogManager-property-ServicePrefix","sort":3,"meta":{}},{"name":"UseRequestObj","fullName":"Spark.Core.Manager.ICatalogManager:UseRequestObj","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ICatalogManager-property-UseRequestObj","sort":3,"meta":{}},{"name":"loadResources","fullName":"Spark.Core.Manager.ICatalogManager:loadResources","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-loadResources","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Manager.ICatalogManager:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-addProperty","sort":3,"meta":{}},{"name":"describeEntity","fullName":"Spark.Core.Manager.ICatalogManager:describeEntity","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-describeEntity","sort":3,"meta":{}},{"name":"describeFields","fullName":"Spark.Core.Manager.ICatalogManager:describeFields","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-describeFields","sort":3,"meta":{}},{"name":"describeResource","fullName":"Spark.Core.Manager.ICatalogManager:describeResource","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-describeResource","sort":3,"meta":{}},{"name":"getCatalog","fullName":"Spark.Core.Manager.ICatalogManager:getCatalog","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-getCatalog","sort":3,"meta":{}},{"name":"stopProcedures","fullName":"Spark.Core.Manager.ICatalogManager:stopProcedures","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-stopProcedures","sort":3,"meta":{}},{"name":"registerAllServices","fullName":"Spark.Core.Manager.ICatalogManager:registerAllServices","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-registerAllServices","sort":3,"meta":{}},{"name":"registerService","fullName":"Spark.Core.Manager.ICatalogManager:registerService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ICatalogManager-method-registerService","sort":3,"meta":{}},{"name":"AnnotationWriter","fullName":"OpenEdge.Core.Util.AnnotationWriter","icon":"icon-class","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter","sort":1,"meta":{}},{"name":"AnnotationWriter","fullName":"OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter","sort":3,"meta":{}},{"name":"AnnotationWriter","fullName":"OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter","sort":3,"meta":{}},{"name":"AnnotationWriter","fullName":"OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter","sort":3,"meta":{}},{"name":"Initialize","fullName":"OpenEdge.Core.Util.AnnotationWriter:Initialize","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-Initialize","sort":3,"meta":{}},{"name":"Destroy","fullName":"OpenEdge.Core.Util.AnnotationWriter:Destroy","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-Destroy","sort":3,"meta":{}},{"name":"ParseXref","fullName":"OpenEdge.Core.Util.AnnotationWriter:ParseXref","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ParseXref","sort":3,"meta":{}},{"name":"ParseXref","fullName":"OpenEdge.Core.Util.AnnotationWriter:ParseXref","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ParseXref","sort":3,"meta":{}},{"name":"FindSourceRecord","fullName":"OpenEdge.Core.Util.AnnotationWriter:FindSourceRecord","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-FindSourceRecord","sort":3,"meta":{"private":true}},{"name":"GetAnnotations","fullName":"OpenEdge.Core.Util.AnnotationWriter:GetAnnotations","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetAnnotations","sort":3,"meta":{}},{"name":"GetAnnotations","fullName":"OpenEdge.Core.Util.AnnotationWriter:GetAnnotations","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetAnnotations","sort":3,"meta":{}},{"name":"GetRefName","fullName":"OpenEdge.Core.Util.AnnotationWriter:GetRefName","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetRefName","sort":3,"meta":{"protected":true}},{"name":"ExtractAnnotations","fullName":"OpenEdge.Core.Util.AnnotationWriter:ExtractAnnotations","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ExtractAnnotations","sort":3,"meta":{"protected":true}},{"name":"AddReferences","fullName":"OpenEdge.Core.Util.AnnotationWriter:AddReferences","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddReferences","sort":3,"meta":{"protected":true}},{"name":"AddAnnotationToGroup","fullName":"OpenEdge.Core.Util.AnnotationWriter:AddAnnotationToGroup","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddAnnotationToGroup","sort":3,"meta":{"protected":true}},{"name":"AddAnnotationToGroup","fullName":"OpenEdge.Core.Util.AnnotationWriter:AddAnnotationToGroup","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddAnnotationToGroup","sort":3,"meta":{"protected":true}},{"name":"Source","fullName":"OpenEdge.Core.Util.AnnotationWriter:Source","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Source","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"String-ref","fullName":"OpenEdge.Core.Util.AnnotationWriter:String-ref","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-String-ref","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Parameter-ref","fullName":"OpenEdge.Core.Util.AnnotationWriter:Parameter-ref","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Parameter-ref","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Class-ref","fullName":"OpenEdge.Core.Util.AnnotationWriter:Class-ref","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Class-ref","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Reference","fullName":"OpenEdge.Core.Util.AnnotationWriter:Reference","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Reference","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Interface-ref","fullName":"OpenEdge.Core.Util.AnnotationWriter:Interface-ref","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Interface-ref","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Dataset-ref","fullName":"OpenEdge.Core.Util.AnnotationWriter:Dataset-ref","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Dataset-ref","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"Relation","fullName":"OpenEdge.Core.Util.AnnotationWriter:Relation","icon":"icon-temptable","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Relation","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"dsXref","fullName":"OpenEdge.Core.Util.AnnotationWriter:dsXref","icon":"icon-dataset","url":"#!/class/OpenEdge.Core.Util.AnnotationWriter-dataset-dsXref","sort":3,"meta":{"private":true}},{"name":"GetTableResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse","sort":1,"meta":{}},{"name":"GetTableResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse","sort":3,"meta":{}},{"name":"GetTableResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse","sort":3,"meta":{}},{"name":"GetTableResultCountResponse","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse","sort":3,"meta":{}},{"name":"Exact","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:Exact","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-Exact","sort":3,"meta":{}},{"name":"NumResults","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:NumResults","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-NumResults","sort":3,"meta":{}},{"name":"TableName","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:TableName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-TableName","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetTableResultCountResponse:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-method-FromJson","sort":3,"meta":{}},{"name":"NamedQueryParameter","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter","sort":1,"meta":{}},{"name":"NamedQueryParameter","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter","sort":3,"meta":{}},{"name":"NamedQueryParameter","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter","sort":3,"meta":{}},{"name":"NamedQueryParameter","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter","sort":3,"meta":{}},{"name":"NamedQueryParameter","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter","sort":3,"meta":{}},{"name":"Name","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:Name","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Name","sort":3,"meta":{}},{"name":"Value","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:Value","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Value","sort":3,"meta":{}},{"name":"Values","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:Values","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Values","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.NamedQueryParameter:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-method-FromJson","sort":3,"meta":{}},{"name":"ForeignKey","fullName":"Spark.Core.Util.ForeignKey","icon":"icon-class","url":"#!/class/Spark.Core.Util.ForeignKey","sort":1,"meta":{"final":true}},{"name":"ForeignKey","fullName":"Spark.Core.Util.ForeignKey:ForeignKey","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ForeignKey-constructor-ForeignKey","sort":3,"meta":{}},{"name":"setForeignTable","fullName":"Spark.Core.Util.ForeignKey:setForeignTable","icon":"icon-method","url":"#!/class/Spark.Core.Util.ForeignKey-method-setForeignTable","sort":3,"meta":{}},{"name":"addForeignField","fullName":"Spark.Core.Util.ForeignKey:addForeignField","icon":"icon-method","url":"#!/class/Spark.Core.Util.ForeignKey-method-addForeignField","sort":3,"meta":{}},{"name":"addLocalField","fullName":"Spark.Core.Util.ForeignKey:addLocalField","icon":"icon-method","url":"#!/class/Spark.Core.Util.ForeignKey-method-addLocalField","sort":3,"meta":{}},{"name":"JsonConverter","fullName":"OpenEdge.Core.Json.JsonConverter","icon":"icon-class","url":"#!/class/OpenEdge.Core.Json.JsonConverter","sort":1,"meta":{}},{"name":"JsonConverter","fullName":"OpenEdge.Core.Json.JsonConverter:JsonConverter","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.Json.JsonConverter-constructor-JsonConverter","sort":3,"meta":{"private":true}},{"name":"ToArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray","sort":3,"meta":{"static":true}},{"name":"ToArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray","sort":3,"meta":{"static":true}},{"name":"ToArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray","sort":3,"meta":{"static":true}},{"name":"ToArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray","sort":3,"meta":{"static":true}},{"name":"ToObject","fullName":"OpenEdge.Core.Json.JsonConverter:ToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject","sort":3,"meta":{"static":true}},{"name":"ToObject","fullName":"OpenEdge.Core.Json.JsonConverter:ToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject","sort":3,"meta":{"static":true}},{"name":"ToObject","fullName":"OpenEdge.Core.Json.JsonConverter:ToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject","sort":3,"meta":{"static":true}},{"name":"ToObject","fullName":"OpenEdge.Core.Json.JsonConverter:ToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject","sort":3,"meta":{"static":true}},{"name":"ToObject","fullName":"OpenEdge.Core.Json.JsonConverter:ToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject","sort":3,"meta":{"static":true}},{"name":"AddToArray","fullName":"OpenEdge.Core.Json.JsonConverter:AddToArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-AddToArray","sort":3,"meta":{"static":true}},{"name":"AddToObject","fullName":"OpenEdge.Core.Json.JsonConverter:AddToObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-AddToObject","sort":3,"meta":{"static":true}},{"name":"Merge","fullName":"OpenEdge.Core.Json.JsonConverter:Merge","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-Merge","sort":3,"meta":{"static":true}},{"name":"ToScalar","fullName":"OpenEdge.Core.Json.JsonConverter:ToScalar","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToScalar","sort":3,"meta":{"static":true}},{"name":"ToScalar","fullName":"OpenEdge.Core.Json.JsonConverter:ToScalar","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToScalar","sort":3,"meta":{"static":true}},{"name":"ToObjectArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToObjectArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObjectArray","sort":3,"meta":{"static":true}},{"name":"ToObjectArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToObjectArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObjectArray","sort":3,"meta":{"static":true}},{"name":"ToPrimitiveArray","fullName":"OpenEdge.Core.Json.JsonConverter:ToPrimitiveArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToPrimitiveArray","sort":3,"meta":{"static":true}},{"name":"ToEnum","fullName":"OpenEdge.Core.Json.JsonConverter:ToEnum","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToEnum","sort":3,"meta":{"static":true}},{"name":"ToEnum","fullName":"OpenEdge.Core.Json.JsonConverter:ToEnum","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonConverter-method-ToEnum","sort":3,"meta":{"static":true}},{"name":"JsonSerializer","fullName":"OpenEdge.Core.Json.JsonSerializer","icon":"icon-class","url":"#!/class/OpenEdge.Core.Json.JsonSerializer","sort":1,"meta":{}},{"name":"JsonSerializer","fullName":"OpenEdge.Core.Json.JsonSerializer:JsonSerializer","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-constructor-JsonSerializer","sort":3,"meta":{"private":true}},{"name":"PROP_DATA","fullName":"OpenEdge.Core.Json.JsonSerializer:PROP_DATA","icon":"icon-property","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_DATA","sort":3,"meta":{"protected":true,"static":true}},{"name":"PROP_SERIALIZER","fullName":"OpenEdge.Core.Json.JsonSerializer:PROP_SERIALIZER","icon":"icon-property","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_SERIALIZER","sort":3,"meta":{"protected":true,"static":true}},{"name":"PROP_OBJECT","fullName":"OpenEdge.Core.Json.JsonSerializer:PROP_OBJECT","icon":"icon-property","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_OBJECT","sort":3,"meta":{"protected":true,"static":true}},{"name":"PROP_PRODS-VERSION","fullName":"OpenEdge.Core.Json.JsonSerializer:PROP_PRODS-VERSION","icon":"icon-property","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_PRODS-VERSION","sort":3,"meta":{"protected":true,"static":true}},{"name":"Serialize","fullName":"OpenEdge.Core.Json.JsonSerializer:Serialize","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-Serialize","sort":3,"meta":{"static":true}},{"name":"Serialize","fullName":"OpenEdge.Core.Json.JsonSerializer:Serialize","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-Serialize","sort":3,"meta":{"static":true}},{"name":"Deserialize","fullName":"OpenEdge.Core.Json.JsonSerializer:Deserialize","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-Deserialize","sort":3,"meta":{"static":true}},{"name":"Deserialize","fullName":"OpenEdge.Core.Json.JsonSerializer:Deserialize","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-Deserialize","sort":3,"meta":{"static":true}},{"name":"NewSerializableObject","fullName":"OpenEdge.Core.Json.JsonSerializer:NewSerializableObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-NewSerializableObject","sort":3,"meta":{"static":true}},{"name":"ToAblObject","fullName":"OpenEdge.Core.Json.JsonSerializer:ToAblObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-ToAblObject","sort":3,"meta":{"static":true}},{"name":"ToAblObject","fullName":"OpenEdge.Core.Json.JsonSerializer:ToAblObject","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.JsonSerializer-method-ToAblObject","sort":3,"meta":{"static":true}},{"name":"Serialize","fullName":"Spark.Core.Util.Serialize","icon":"icon-class","url":"#!/class/Spark.Core.Util.Serialize","sort":1,"meta":{}},{"name":"serializeClassToBinary","fullName":"Spark.Core.Util.Serialize:serializeClassToBinary","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-serializeClassToBinary","sort":3,"meta":{"static":true}},{"name":"serializeClassToBinary","fullName":"Spark.Core.Util.Serialize:serializeClassToBinary","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-serializeClassToBinary","sort":3,"meta":{"static":true}},{"name":"serializeClassToJson","fullName":"Spark.Core.Util.Serialize:serializeClassToJson","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-serializeClassToJson","sort":3,"meta":{"static":true}},{"name":"serializeClassToJson","fullName":"Spark.Core.Util.Serialize:serializeClassToJson","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-serializeClassToJson","sort":3,"meta":{"static":true}},{"name":"deserializeClassFromBinary","fullName":"Spark.Core.Util.Serialize:deserializeClassFromBinary","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromBinary","sort":3,"meta":{"static":true}},{"name":"deserializeClassFromBinary","fullName":"Spark.Core.Util.Serialize:deserializeClassFromBinary","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromBinary","sort":3,"meta":{"static":true}},{"name":"deserializeClassFromJson","fullName":"Spark.Core.Util.Serialize:deserializeClassFromJson","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromJson","sort":3,"meta":{"static":true}},{"name":"deserializeClassFromJson","fullName":"Spark.Core.Util.Serialize:deserializeClassFromJson","icon":"icon-method","url":"#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromJson","sort":3,"meta":{"static":true}},{"name":"UTF8Encoder","fullName":"OpenEdge.Core.Util.UTF8Encoder","icon":"icon-class","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder","sort":1,"meta":{}},{"name":"Encode","fullName":"OpenEdge.Core.Util.UTF8Encoder:Encode","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Encode","sort":3,"meta":{"static":true}},{"name":"Decode","fullName":"OpenEdge.Core.Util.UTF8Encoder:Decode","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Decode","sort":3,"meta":{"static":true}},{"name":"UnicodeToUtf8","fullName":"OpenEdge.Core.Util.UTF8Encoder:UnicodeToUtf8","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-UnicodeToUtf8","sort":3,"meta":{"static":true}},{"name":"UnicodeToUtf8","fullName":"OpenEdge.Core.Util.UTF8Encoder:UnicodeToUtf8","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-UnicodeToUtf8","sort":3,"meta":{"static":true}},{"name":"Utf8ToUnicode","fullName":"OpenEdge.Core.Util.UTF8Encoder:Utf8ToUnicode","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Utf8ToUnicode","sort":3,"meta":{"static":true}},{"name":"Utf8ToUnicode","fullName":"OpenEdge.Core.Util.UTF8Encoder:Utf8ToUnicode","icon":"icon-method","url":"#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Utf8ToUnicode","sort":3,"meta":{"static":true}},{"name":"ContainerScope","fullName":"Spark.Core.Util.ContainerScope","icon":"icon-class","url":"#!/class/Spark.Core.Util.ContainerScope","sort":1,"meta":{}},{"name":"ContainerScope","fullName":"Spark.Core.Util.ContainerScope:ContainerScope","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.ContainerScope-constructor-ContainerScope","sort":3,"meta":{}},{"name":"ISparkEntity","fullName":"Spark.Core.Service.ISparkEntity","icon":"icon-interface","url":"#!/class/Spark.Core.Service.ISparkEntity","sort":1,"meta":{}},{"name":"oContextMessage","fullName":"Spark.Core.Service.ISparkEntity:oContextMessage","icon":"icon-property","url":"#!/class/Spark.Core.Service.ISparkEntity-property-oContextMessage","sort":3,"meta":{}},{"name":"LastCount","fullName":"Spark.Core.Service.ISparkEntity:LastCount","icon":"icon-property","url":"#!/class/Spark.Core.Service.ISparkEntity-property-LastCount","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Service.ISparkEntity:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-getDataset","sort":3,"meta":{}},{"name":"postRowFill","fullName":"Spark.Core.Service.ISparkEntity:postRowFill","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-postRowFill","sort":3,"meta":{}},{"name":"readData","fullName":"Spark.Core.Service.ISparkEntity:readData","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-readData","sort":3,"meta":{}},{"name":"createData","fullName":"Spark.Core.Service.ISparkEntity:createData","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-createData","sort":3,"meta":{}},{"name":"updateData","fullName":"Spark.Core.Service.ISparkEntity:updateData","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-updateData","sort":3,"meta":{}},{"name":"deleteData","fullName":"Spark.Core.Service.ISparkEntity:deleteData","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-deleteData","sort":3,"meta":{}},{"name":"submitData","fullName":"Spark.Core.Service.ISparkEntity:submitData","icon":"icon-method","url":"#!/class/Spark.Core.Service.ISparkEntity-method-submitData","sort":3,"meta":{}},{"name":"BusinessEntity","fullName":"OpenEdge.BusinessLogic.BusinessEntity","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity","sort":1,"meta":{"abstract":true}},{"name":"BusinessEntity","fullName":"OpenEdge.BusinessLogic.BusinessEntity:BusinessEntity","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-constructor-BusinessEntity","sort":3,"meta":{"protected":true}},{"name":"ProDataSet","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ProDataSet","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-ProDataSet","sort":3,"meta":{"protected":true}},{"name":"ProDataSource","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ProDataSource","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-ProDataSource","sort":3,"meta":{"protected":true}},{"name":"SkipList","fullName":"OpenEdge.BusinessLogic.BusinessEntity:SkipList","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-SkipList","sort":3,"meta":{"protected":true}},{"name":"UpdateMode","fullName":"OpenEdge.BusinessLogic.BusinessEntity:UpdateMode","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-UpdateMode","sort":3,"meta":{"private":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"EmptyDataSet","fullName":"OpenEdge.BusinessLogic.BusinessEntity:EmptyDataSet","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-EmptyDataSet","sort":3,"meta":{"private":true}},{"name":"CreateData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CreateData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CreateData","sort":3,"meta":{"protected":true}},{"name":"UpdateData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:UpdateData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-UpdateData","sort":3,"meta":{"protected":true}},{"name":"DeleteData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:DeleteData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DeleteData","sort":3,"meta":{"protected":true}},{"name":"ProcessBIData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ProcessBIData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ProcessBIData","sort":3,"meta":{"private":true}},{"name":"SaveRows","fullName":"OpenEdge.BusinessLogic.BusinessEntity:SaveRows","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SaveRows","sort":3,"meta":{"protected":true}},{"name":"Submit","fullName":"OpenEdge.BusinessLogic.BusinessEntity:Submit","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-Submit","sort":3,"meta":{"protected":true}},{"name":"ProcessTransactionalError","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ProcessTransactionalError","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ProcessTransactionalError","sort":3,"meta":{"protected":true}},{"name":"GetRowErrorMessage","fullName":"OpenEdge.BusinessLogic.BusinessEntity:GetRowErrorMessage","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetRowErrorMessage","sort":3,"meta":{"private":true}},{"name":"CommitData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CommitData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitData","sort":3,"meta":{"protected":true}},{"name":"AttachDataSources","fullName":"OpenEdge.BusinessLogic.BusinessEntity:AttachDataSources","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AttachDataSources","sort":3,"meta":{"protected":true}},{"name":"AttachDataSources","fullName":"OpenEdge.BusinessLogic.BusinessEntity:AttachDataSources","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AttachDataSources","sort":3,"meta":{"protected":true}},{"name":"DetachDataSources","fullName":"OpenEdge.BusinessLogic.BusinessEntity:DetachDataSources","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DetachDataSources","sort":3,"meta":{"private":true}},{"name":"ValidateDataSources","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ValidateDataSources","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ValidateDataSources","sort":3,"meta":{"protected":true}},{"name":"ValidateFieldLists","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ValidateFieldLists","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ValidateFieldLists","sort":3,"meta":{"protected":true}},{"name":"GetSkipListEntry","fullName":"OpenEdge.BusinessLogic.BusinessEntity:GetSkipListEntry","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetSkipListEntry","sort":3,"meta":{"private":true}},{"name":"CommitChildBuffers","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CommitChildBuffers","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitChildBuffers","sort":3,"meta":{"private":true}},{"name":"GetBufferIndex","fullName":"OpenEdge.BusinessLogic.BusinessEntity:GetBufferIndex","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetBufferIndex","sort":3,"meta":{"private":true}},{"name":"CommitRows","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CommitRows","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitRows","sort":3,"meta":{"private":true}},{"name":"GetRowState","fullName":"OpenEdge.BusinessLogic.BusinessEntity:GetRowState","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetRowState","sort":3,"meta":{"private":true}},{"name":"AdjustWhere","fullName":"OpenEdge.BusinessLogic.BusinessEntity:AdjustWhere","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AdjustWhere","sort":3,"meta":{"private":true}},{"name":"AdjustWheres","fullName":"OpenEdge.BusinessLogic.BusinessEntity:AdjustWheres","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AdjustWheres","sort":3,"meta":{"private":true}},{"name":"SetFillWhereString","fullName":"OpenEdge.BusinessLogic.BusinessEntity:SetFillWhereString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetFillWhereString","sort":3,"meta":{"protected":true}},{"name":"SetFillWhereStrings","fullName":"OpenEdge.BusinessLogic.BusinessEntity:SetFillWhereStrings","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetFillWhereStrings","sort":3,"meta":{"private":true}},{"name":"SetUndos","fullName":"OpenEdge.BusinessLogic.BusinessEntity:SetUndos","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetUndos","sort":3,"meta":{"private":true}},{"name":"ReadData","fullName":"OpenEdge.BusinessLogic.BusinessEntity:ReadData","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData","sort":3,"meta":{"protected":true}},{"name":"DoFill","fullName":"OpenEdge.BusinessLogic.BusinessEntity:DoFill","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DoFill","sort":3,"meta":{"protected":true}},{"name":"CountDatasetRecords","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CountDatasetRecords","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CountDatasetRecords","sort":3,"meta":{"protected":true}},{"name":"CountBufferRecords","fullName":"OpenEdge.BusinessLogic.BusinessEntity:CountBufferRecords","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CountBufferRecords","sort":3,"meta":{"protected":true}},{"name":"OEMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics","icon":"icon-class","url":"#!/class/Spark.Diagnostic.Util.OEMetrics","sort":1,"meta":{"final":true}},{"name":"OEMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics:OEMetrics","icon":"icon-constructor","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-constructor-OEMetrics","sort":3,"meta":{}},{"name":"OEMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics:OEMetrics","icon":"icon-destructor","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-destructor-OEMetrics","sort":3,"meta":{}},{"name":"Instance","fullName":"Spark.Diagnostic.Util.OEMetrics:Instance","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-Instance","sort":3,"meta":{"static":true}},{"name":"OutputTime","fullName":"Spark.Diagnostic.Util.OEMetrics:OutputTime","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-OutputTime","sort":3,"meta":{"private":true}},{"name":"ApplicationName","fullName":"Spark.Diagnostic.Util.OEMetrics:ApplicationName","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-ApplicationName","sort":3,"meta":{"private":true}},{"name":"RequestCount","fullName":"Spark.Diagnostic.Util.OEMetrics:RequestCount","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-RequestCount","sort":3,"meta":{"private":true}},{"name":"RequestStart","fullName":"Spark.Diagnostic.Util.OEMetrics:RequestStart","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-RequestStart","sort":3,"meta":{"private":true}},{"name":"MetricsOutput","fullName":"Spark.Diagnostic.Util.OEMetrics:MetricsOutput","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-MetricsOutput","sort":3,"meta":{"private":true}},{"name":"CollectorMetricsURI","fullName":"Spark.Diagnostic.Util.OEMetrics:CollectorMetricsURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorMetricsURI","sort":3,"meta":{"private":true}},{"name":"CollectorProfileURI","fullName":"Spark.Diagnostic.Util.OEMetrics:CollectorProfileURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorProfileURI","sort":3,"meta":{"private":true}},{"name":"CollectorLogsURI","fullName":"Spark.Diagnostic.Util.OEMetrics:CollectorLogsURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorLogsURI","sort":3,"meta":{"private":true}},{"name":"oMetricsLogger","fullName":"Spark.Diagnostic.Util.OEMetrics:oMetricsLogger","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-oMetricsLogger","sort":3,"meta":{"private":true}},{"name":"oConfig","fullName":"Spark.Diagnostic.Util.OEMetrics:oConfig","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-oConfig","sort":3,"meta":{"private":true}},{"name":"oRemoteMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics:oRemoteMetrics","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-property-oRemoteMetrics","sort":3,"meta":{"private":true}},{"name":"GetRequestPath","fullName":"Spark.Diagnostic.Util.OEMetrics:GetRequestPath","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestPath","sort":3,"meta":{"private":true}},{"name":"GetSessionPath","fullName":"Spark.Diagnostic.Util.OEMetrics:GetSessionPath","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionPath","sort":3,"meta":{"private":true}},{"name":"GetObjectsPath","fullName":"Spark.Diagnostic.Util.OEMetrics:GetObjectsPath","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetObjectsPath","sort":3,"meta":{"private":true}},{"name":"InMatchList","fullName":"Spark.Diagnostic.Util.OEMetrics:InMatchList","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-InMatchList","sort":3,"meta":{"private":true}},{"name":"GetRequestInfo","fullName":"Spark.Diagnostic.Util.OEMetrics:GetRequestInfo","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestInfo","sort":3,"meta":{"private":true}},{"name":"GetProcedureName","fullName":"Spark.Diagnostic.Util.OEMetrics:GetProcedureName","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetProcedureName","sort":3,"meta":{"private":true}},{"name":"GetAgentID","fullName":"Spark.Diagnostic.Util.OEMetrics:GetAgentID","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetAgentID","sort":3,"meta":{"private":true}},{"name":"GetSessionID","fullName":"Spark.Diagnostic.Util.OEMetrics:GetSessionID","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionID","sort":3,"meta":{"private":true}},{"name":"GetRequestID","fullName":"Spark.Diagnostic.Util.OEMetrics:GetRequestID","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestID","sort":3,"meta":{"private":true}},{"name":"ResetOutput","fullName":"Spark.Diagnostic.Util.OEMetrics:ResetOutput","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-ResetOutput","sort":3,"meta":{"private":true}},{"name":"SendToCollector","fullName":"Spark.Diagnostic.Util.OEMetrics:SendToCollector","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-SendToCollector","sort":3,"meta":{"private":true}},{"name":"WriteSessionReports","fullName":"Spark.Diagnostic.Util.OEMetrics:WriteSessionReports","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteSessionReports","sort":3,"meta":{"private":true}},{"name":"StartProfiler","fullName":"Spark.Diagnostic.Util.OEMetrics:StartProfiler","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartProfiler","sort":3,"meta":{}},{"name":"StartProfiler","fullName":"Spark.Diagnostic.Util.OEMetrics:StartProfiler","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartProfiler","sort":3,"meta":{}},{"name":"WriteProfiler","fullName":"Spark.Diagnostic.Util.OEMetrics:WriteProfiler","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteProfiler","sort":3,"meta":{}},{"name":"WriteProfiler","fullName":"Spark.Diagnostic.Util.OEMetrics:WriteProfiler","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteProfiler","sort":3,"meta":{}},{"name":"ProcessAccessLogs","fullName":"Spark.Diagnostic.Util.OEMetrics:ProcessAccessLogs","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-ProcessAccessLogs","sort":3,"meta":{}},{"name":"StartTrackingObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:StartTrackingObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartTrackingObjects","sort":3,"meta":{}},{"name":"StartTrackingObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:StartTrackingObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartTrackingObjects","sort":3,"meta":{}},{"name":"StopTrackingObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:StopTrackingObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StopTrackingObjects","sort":3,"meta":{}},{"name":"StopTrackingObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:StopTrackingObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-StopTrackingObjects","sort":3,"meta":{}},{"name":"GetABLObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:GetABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetABLObjects","sort":3,"meta":{}},{"name":"TrackAllAgents","fullName":"Spark.Diagnostic.Util.OEMetrics:TrackAllAgents","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-TrackAllAgents","sort":3,"meta":{}},{"name":"GetAllABLObjectsReport","fullName":"Spark.Diagnostic.Util.OEMetrics:GetAllABLObjectsReport","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetAllABLObjectsReport","sort":3,"meta":{}},{"name":"GetSessionABLObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:GetSessionABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionABLObjects","sort":3,"meta":{}},{"name":"GetSessionABLObjects","fullName":"Spark.Diagnostic.Util.OEMetrics:GetSessionABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionABLObjects","sort":3,"meta":{}},{"name":"GetRequestMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics:GetRequestMetrics","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestMetrics","sort":3,"meta":{}},{"name":"GetSessionMetrics","fullName":"Spark.Diagnostic.Util.OEMetrics:GetSessionMetrics","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionMetrics","sort":3,"meta":{}},{"name":"PrepareSessionReports","fullName":"Spark.Diagnostic.Util.OEMetrics:PrepareSessionReports","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-PrepareSessionReports","sort":3,"meta":{}},{"name":"PrepareSessionReports","fullName":"Spark.Diagnostic.Util.OEMetrics:PrepareSessionReports","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.OEMetrics-method-PrepareSessionReports","sort":3,"meta":{}},{"name":"ServiceManager","fullName":"Spark.Core.Manager.ServiceManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.ServiceManager","sort":1,"meta":{}},{"name":"ServiceManager","fullName":"Spark.Core.Manager.ServiceManager:ServiceManager","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.ServiceManager-constructor-ServiceManager","sort":3,"meta":{}},{"name":"oLoggingManager","fullName":"Spark.Core.Manager.ServiceManager:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ServiceManager-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"initialize","fullName":"Spark.Core.Manager.ServiceManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.ServiceManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"loadConfig","fullName":"Spark.Core.Manager.ServiceManager:loadConfig","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-loadConfig","sort":3,"meta":{"protected":true}},{"name":"getServiceImplementation","fullName":"Spark.Core.Manager.ServiceManager:getServiceImplementation","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getServiceImplementation","sort":3,"meta":{}},{"name":"getLifeCycleScope","fullName":"Spark.Core.Manager.ServiceManager:getLifeCycleScope","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getLifeCycleScope","sort":3,"meta":{"protected":true}},{"name":"getLifeCycleScope","fullName":"Spark.Core.Manager.ServiceManager:getLifeCycleScope","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getLifeCycleScope","sort":3,"meta":{"protected":true}},{"name":"callServiceFunction","fullName":"Spark.Core.Manager.ServiceManager:callServiceFunction","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-callServiceFunction","sort":3,"meta":{}},{"name":"callServiceFunction","fullName":"Spark.Core.Manager.ServiceManager:callServiceFunction","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-callServiceFunction","sort":3,"meta":{}},{"name":"getService","fullName":"Spark.Core.Manager.ServiceManager:getService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getService","sort":3,"meta":{}},{"name":"getService","fullName":"Spark.Core.Manager.ServiceManager:getService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getService","sort":3,"meta":{}},{"name":"getService","fullName":"Spark.Core.Manager.ServiceManager:getService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-getService","sort":3,"meta":{}},{"name":"startService","fullName":"Spark.Core.Manager.ServiceManager:startService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-startService","sort":3,"meta":{"private":true}},{"name":"stopServices","fullName":"Spark.Core.Manager.ServiceManager:stopServices","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-stopServices","sort":3,"meta":{}},{"name":"stopService","fullName":"Spark.Core.Manager.ServiceManager:stopService","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ServiceManager-method-stopService","sort":3,"meta":{"private":true}},{"name":"ttImplMapping","fullName":"Spark.Core.Manager.ServiceManager:ttImplMapping","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ServiceManager-temptable-ttImplMapping","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttLifeCycle","fullName":"Spark.Core.Manager.ServiceManager:ttLifeCycle","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ServiceManager-temptable-ttLifeCycle","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttLifeCycleMapping","fullName":"Spark.Core.Manager.ServiceManager:ttLifeCycleMapping","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ServiceManager-temptable-ttLifeCycleMapping","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"ttServices","fullName":"Spark.Core.Manager.ServiceManager:ttServices","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ServiceManager-temptable-ttServices","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"dsConfig","fullName":"Spark.Core.Manager.ServiceManager:dsConfig","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.ServiceManager-dataset-dsConfig","sort":3,"meta":{"private":true}},{"name":"FilterParserBuilder","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder","sort":1,"meta":{}},{"name":"FilterParserBuilder","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:FilterParserBuilder","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-constructor-FilterParserBuilder","sort":3,"meta":{}},{"name":"FilterPattern","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:FilterPattern","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-FilterPattern","sort":3,"meta":{}},{"name":"Parser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Parser","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-Parser","sort":3,"meta":{}},{"name":"Registry","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Registry","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-Registry","sort":3,"meta":{"static":true}},{"name":"Build","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build","sort":3,"meta":{"static":true}},{"name":"Build","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build","sort":3,"meta":{"static":true}},{"name":"Build","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build","sort":3,"meta":{"static":true}},{"name":"BuildParser","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:BuildParser","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-BuildParser","sort":3,"meta":{"protected":true}},{"name":"TableName","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:TableName","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-TableName","sort":3,"meta":{}},{"name":"TableName","fullName":"OpenEdge.BusinessLogic.Filter.FilterParserBuilder:TableName","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-TableName","sort":3,"meta":{}},{"name":"ClientContext","fullName":"Spark.Core.Manager.ClientContext","icon":"icon-class","url":"#!/class/Spark.Core.Manager.ClientContext","sort":1,"meta":{}},{"name":"ClientContext","fullName":"Spark.Core.Manager.ClientContext:ClientContext","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.ClientContext-constructor-ClientContext","sort":3,"meta":{}},{"name":"ClientContext","fullName":"Spark.Core.Manager.ClientContext:ClientContext","icon":"icon-destructor","url":"#!/class/Spark.Core.Manager.ClientContext-destructor-ClientContext","sort":3,"meta":{}},{"name":"oStateManager","fullName":"Spark.Core.Manager.ClientContext:oStateManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-oStateManager","sort":3,"meta":{"protected":true}},{"name":"clientPrincipal","fullName":"Spark.Core.Manager.ClientContext:clientPrincipal","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-clientPrincipal","sort":3,"meta":{}},{"name":"contextID","fullName":"Spark.Core.Manager.ClientContext:contextID","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-contextID","sort":3,"meta":{}},{"name":"userDomain","fullName":"Spark.Core.Manager.ClientContext:userDomain","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-userDomain","sort":3,"meta":{}},{"name":"userID","fullName":"Spark.Core.Manager.ClientContext:userID","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-userID","sort":3,"meta":{}},{"name":"userExtra","fullName":"Spark.Core.Manager.ClientContext:userExtra","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-userExtra","sort":3,"meta":{}},{"name":"loginExpiration","fullName":"Spark.Core.Manager.ClientContext:loginExpiration","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-loginExpiration","sort":3,"meta":{}},{"name":"activityPassword","fullName":"Spark.Core.Manager.ClientContext:activityPassword","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-activityPassword","sort":3,"meta":{}},{"name":"stateClassID","fullName":"Spark.Core.Manager.ClientContext:stateClassID","icon":"icon-property","url":"#!/class/Spark.Core.Manager.ClientContext-property-stateClassID","sort":3,"meta":{"static":true}},{"name":"initializeContext","fullName":"Spark.Core.Manager.ClientContext:initializeContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-initializeContext","sort":3,"meta":{}},{"name":"initializeContext","fullName":"Spark.Core.Manager.ClientContext:initializeContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-initializeContext","sort":3,"meta":{}},{"name":"initializeContext","fullName":"Spark.Core.Manager.ClientContext:initializeContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-initializeContext","sort":3,"meta":{"protected":true}},{"name":"initializeUserProperties","fullName":"Spark.Core.Manager.ClientContext:initializeUserProperties","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-initializeUserProperties","sort":3,"meta":{"protected":true}},{"name":"initializeUserProperty","fullName":"Spark.Core.Manager.ClientContext:initializeUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-initializeUserProperty","sort":3,"meta":{}},{"name":"getSSOToken","fullName":"Spark.Core.Manager.ClientContext:getSSOToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getSSOToken","sort":3,"meta":{}},{"name":"getSSORawToken","fullName":"Spark.Core.Manager.ClientContext:getSSORawToken","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getSSORawToken","sort":3,"meta":{}},{"name":"prepareForSerializeContext","fullName":"Spark.Core.Manager.ClientContext:prepareForSerializeContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-prepareForSerializeContext","sort":3,"meta":{"protected":true}},{"name":"serializeContext","fullName":"Spark.Core.Manager.ClientContext:serializeContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-serializeContext","sort":3,"meta":{}},{"name":"saveContext","fullName":"Spark.Core.Manager.ClientContext:saveContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-saveContext","sort":3,"meta":{}},{"name":"setTrackingChangesOnUserProperties","fullName":"Spark.Core.Manager.ClientContext:setTrackingChangesOnUserProperties","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setTrackingChangesOnUserProperties","sort":3,"meta":{"protected":true}},{"name":"getUserPropertyArray","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyArray","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyArray","sort":3,"meta":{}},{"name":"getUserProperties","fullName":"Spark.Core.Manager.ClientContext:getUserProperties","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserProperties","sort":3,"meta":{}},{"name":"getUserPropertyArray","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyArray","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyArray","sort":3,"meta":{}},{"name":"getUserProperty","fullName":"Spark.Core.Manager.ClientContext:getUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserProperty","sort":3,"meta":{}},{"name":"getUserPropertyAsLongchar","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsLongchar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsLongchar","sort":3,"meta":{}},{"name":"getUserPropertyAsChar","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsChar","sort":3,"meta":{}},{"name":"getUserPropertyAsInt","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsInt","sort":3,"meta":{}},{"name":"getUserPropertyAsInt64","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsInt64","sort":3,"meta":{}},{"name":"getUserPropertyAsDec","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDec","sort":3,"meta":{}},{"name":"getUserPropertyAsLog","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsLog","sort":3,"meta":{}},{"name":"getUserPropertyAsDate","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDate","sort":3,"meta":{}},{"name":"getUserPropertyAsDatetime","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDatetime","sort":3,"meta":{}},{"name":"getUserPropertyAsDatetimeTz","fullName":"Spark.Core.Manager.ClientContext:getUserPropertyAsDatetimeTz","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDatetimeTz","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsChar","fullName":"Spark.Core.Manager.ClientContext:getUserArrayPropertyAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsChar","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsDec","fullName":"Spark.Core.Manager.ClientContext:getUserArrayPropertyAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsDec","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsInt","fullName":"Spark.Core.Manager.ClientContext:getUserArrayPropertyAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsInt","sort":3,"meta":{}},{"name":"hasUserProperty","fullName":"Spark.Core.Manager.ClientContext:hasUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-hasUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.ClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"removeUserProperty","fullName":"Spark.Core.Manager.ClientContext:removeUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-removeUserProperty","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.ClientContext:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-invalidateContext","sort":3,"meta":{}},{"name":"setActivityPassword","fullName":"Spark.Core.Manager.ClientContext:setActivityPassword","icon":"icon-method","url":"#!/class/Spark.Core.Manager.ClientContext-method-setActivityPassword","sort":3,"meta":{}},{"name":"ttUserSessionProp","fullName":"Spark.Core.Manager.ClientContext:ttUserSessionProp","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ClientContext-temptable-ttUserSessionProp","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"dbUserSessionProp","fullName":"Spark.Core.Manager.ClientContext:dbUserSessionProp","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.ClientContext-temptable-dbUserSessionProp","sort":3,"meta":{"private":true,"global":true}},{"name":"dsTtUserSessionProp","fullName":"Spark.Core.Manager.ClientContext:dsTtUserSessionProp","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.ClientContext-dataset-dsTtUserSessionProp","sort":3,"meta":{"private":true}},{"name":"dsDbUserSessionProp","fullName":"Spark.Core.Manager.ClientContext:dsDbUserSessionProp","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.ClientContext-dataset-dsDbUserSessionProp","sort":3,"meta":{"private":true}},{"name":"ContextMessage","fullName":"Spark.Core.Message.ContextMessage","icon":"icon-class","url":"#!/class/Spark.Core.Message.ContextMessage","sort":1,"meta":{}},{"name":"ContextMessage","fullName":"Spark.Core.Message.ContextMessage:ContextMessage","icon":"icon-constructor","url":"#!/class/Spark.Core.Message.ContextMessage-constructor-ContextMessage","sort":3,"meta":{}},{"name":"ValidationErrorTableName","fullName":"Spark.Core.Message.ContextMessage:ValidationErrorTableName","icon":"icon-property","url":"#!/class/Spark.Core.Message.ContextMessage-property-ValidationErrorTableName","sort":3,"meta":{"protected":true}},{"name":"ContextPropName","fullName":"Spark.Core.Message.ContextMessage:ContextPropName","icon":"icon-property","url":"#!/class/Spark.Core.Message.ContextMessage-property-ContextPropName","sort":3,"meta":{}},{"name":"ReturnValueName","fullName":"Spark.Core.Message.ContextMessage:ReturnValueName","icon":"icon-property","url":"#!/class/Spark.Core.Message.ContextMessage-property-ReturnValueName","sort":3,"meta":{}},{"name":"ReturnValue","fullName":"Spark.Core.Message.ContextMessage:ReturnValue","icon":"icon-property","url":"#!/class/Spark.Core.Message.ContextMessage-property-ReturnValue","sort":3,"meta":{}},{"name":"storeProperties","fullName":"Spark.Core.Message.ContextMessage:storeProperties","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-storeProperties","sort":3,"meta":{"protected":true,"override":true}},{"name":"setContextPropName","fullName":"Spark.Core.Message.ContextMessage:setContextPropName","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-setContextPropName","sort":3,"meta":{}},{"name":"setReturnValueName","fullName":"Spark.Core.Message.ContextMessage:setReturnValueName","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-setReturnValueName","sort":3,"meta":{}},{"name":"addMessage","fullName":"Spark.Core.Message.ContextMessage:addMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-addMessage","sort":3,"meta":{}},{"name":"addMessage","fullName":"Spark.Core.Message.ContextMessage:addMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-addMessage","sort":3,"meta":{}},{"name":"createMessage","fullName":"Spark.Core.Message.ContextMessage:createMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-createMessage","sort":3,"meta":{"private":true}},{"name":"createMessage","fullName":"Spark.Core.Message.ContextMessage:createMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-createMessage","sort":3,"meta":{"private":true}},{"name":"getMessageArray","fullName":"Spark.Core.Message.ContextMessage:getMessageArray","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-getMessageArray","sort":3,"meta":{}},{"name":"hasAnyMessages","fullName":"Spark.Core.Message.ContextMessage:hasAnyMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-hasAnyMessages","sort":3,"meta":{}},{"name":"hasInformation","fullName":"Spark.Core.Message.ContextMessage:hasInformation","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-hasInformation","sort":3,"meta":{}},{"name":"hasWarnings","fullName":"Spark.Core.Message.ContextMessage:hasWarnings","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-hasWarnings","sort":3,"meta":{}},{"name":"hasErrors","fullName":"Spark.Core.Message.ContextMessage:hasErrors","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-hasErrors","sort":3,"meta":{}},{"name":"removeWarningMessages","fullName":"Spark.Core.Message.ContextMessage:removeWarningMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-removeWarningMessages","sort":3,"meta":{}},{"name":"removeMessages","fullName":"Spark.Core.Message.ContextMessage:removeMessages","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-removeMessages","sort":3,"meta":{}},{"name":"translateMessage","fullName":"Spark.Core.Message.ContextMessage:translateMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-translateMessage","sort":3,"meta":{"private":true}},{"name":"translateMessage","fullName":"Spark.Core.Message.ContextMessage:translateMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ContextMessage-method-translateMessage","sort":3,"meta":{"private":true}},{"name":"ttMessage","fullName":"Spark.Core.Message.ContextMessage:ttMessage","icon":"icon-temptable","url":"#!/class/Spark.Core.Message.ContextMessage-temptable-ttMessage","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"EnumMember","fullName":"Spark.Core.Util.EnumMember","icon":"icon-class","url":"#!/class/Spark.Core.Util.EnumMember","sort":1,"meta":{"abstract":true}},{"name":"EnumMember","fullName":"Spark.Core.Util.EnumMember:EnumMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember","sort":3,"meta":{}},{"name":"EnumMember","fullName":"Spark.Core.Util.EnumMember:EnumMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember","sort":3,"meta":{}},{"name":"EnumMember","fullName":"Spark.Core.Util.EnumMember:EnumMember","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember","sort":3,"meta":{}},{"name":"name","fullName":"Spark.Core.Util.EnumMember:name","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumMember-property-name","sort":3,"meta":{}},{"name":"value","fullName":"Spark.Core.Util.EnumMember:value","icon":"icon-property","url":"#!/class/Spark.Core.Util.EnumMember-property-value","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumMember-method-equals","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumMember-method-equals","sort":3,"meta":{}},{"name":"equals","fullName":"Spark.Core.Util.EnumMember:equals","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumMember-method-equals","sort":3,"meta":{"override":true}},{"name":"toString","fullName":"Spark.Core.Util.EnumMember:toString","icon":"icon-method","url":"#!/class/Spark.Core.Util.EnumMember-method-toString","sort":3,"meta":{"override":true}},{"name":"FieldInfo","fullName":"Spark.Core.Util.FieldInfo","icon":"icon-class","url":"#!/class/Spark.Core.Util.FieldInfo","sort":1,"meta":{"final":true}},{"name":"FieldInfo","fullName":"Spark.Core.Util.FieldInfo:FieldInfo","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.FieldInfo-constructor-FieldInfo","sort":3,"meta":{}},{"name":"FieldInfo","fullName":"Spark.Core.Util.FieldInfo:FieldInfo","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.FieldInfo-constructor-FieldInfo","sort":3,"meta":{}},{"name":"DatasetName","fullName":"Spark.Core.Util.FieldInfo:DatasetName","icon":"icon-property","url":"#!/class/Spark.Core.Util.FieldInfo-property-DatasetName","sort":3,"meta":{}},{"name":"TempTableName","fullName":"Spark.Core.Util.FieldInfo:TempTableName","icon":"icon-property","url":"#!/class/Spark.Core.Util.FieldInfo-property-TempTableName","sort":3,"meta":{}},{"name":"getField","fullName":"Spark.Core.Util.FieldInfo:getField","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-getField","sort":3,"meta":{}},{"name":"makeRequired","fullName":"Spark.Core.Util.FieldInfo:makeRequired","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-makeRequired","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"addProperty","fullName":"Spark.Core.Util.FieldInfo:addProperty","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-addProperty","sort":3,"meta":{}},{"name":"serialize","fullName":"Spark.Core.Util.FieldInfo:serialize","icon":"icon-method","url":"#!/class/Spark.Core.Util.FieldInfo-method-serialize","sort":3,"meta":{}},{"name":"SchemaManager","fullName":"Spark.Core.Manager.SchemaManager","icon":"icon-class","url":"#!/class/Spark.Core.Manager.SchemaManager","sort":1,"meta":{}},{"name":"oLoggingManager","fullName":"Spark.Core.Manager.SchemaManager:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Manager.SchemaManager-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"addSchemaToSignature","fullName":"Spark.Core.Manager.SchemaManager:addSchemaToSignature","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-addSchemaToSignature","sort":3,"meta":{"protected":true}},{"name":"examineDatabases","fullName":"Spark.Core.Manager.SchemaManager:examineDatabases","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-examineDatabases","sort":3,"meta":{"protected":true}},{"name":"examineTables","fullName":"Spark.Core.Manager.SchemaManager:examineTables","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-examineTables","sort":3,"meta":{"protected":true}},{"name":"examineTables","fullName":"Spark.Core.Manager.SchemaManager:examineTables","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-examineTables","sort":3,"meta":{"protected":true}},{"name":"registerDatabases","fullName":"Spark.Core.Manager.SchemaManager:registerDatabases","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-registerDatabases","sort":3,"meta":{"protected":true}},{"name":"fixSerializedNames","fullName":"Spark.Core.Manager.SchemaManager:fixSerializedNames","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-fixSerializedNames","sort":3,"meta":{"static":true}},{"name":"deleteObjects","fullName":"Spark.Core.Manager.SchemaManager:deleteObjects","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-deleteObjects","sort":3,"meta":{}},{"name":"dumpObjects","fullName":"Spark.Core.Manager.SchemaManager:dumpObjects","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-dumpObjects","sort":3,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Manager.SchemaManager:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-initialize","sort":3,"meta":{"override":true}},{"name":"dispose","fullName":"Spark.Core.Manager.SchemaManager:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-dispose","sort":3,"meta":{"override":true}},{"name":"getObject","fullName":"Spark.Core.Manager.SchemaManager:getObject","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getObject","sort":3,"meta":{}},{"name":"getObjectChildren","fullName":"Spark.Core.Manager.SchemaManager:getObjectChildren","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getObjectChildren","sort":3,"meta":{}},{"name":"getObjectList","fullName":"Spark.Core.Manager.SchemaManager:getObjectList","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getObjectList","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Manager.SchemaManager:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getDataset","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Manager.SchemaManager:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getDataset","sort":3,"meta":{}},{"name":"getTempTable","fullName":"Spark.Core.Manager.SchemaManager:getTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-getTempTable","sort":3,"meta":{}},{"name":"initMethodSignature","fullName":"Spark.Core.Manager.SchemaManager:initMethodSignature","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-initMethodSignature","sort":3,"meta":{}},{"name":"initSchema","fullName":"Spark.Core.Manager.SchemaManager:initSchema","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-initSchema","sort":3,"meta":{}},{"name":"registerDataset","fullName":"Spark.Core.Manager.SchemaManager:registerDataset","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-registerDataset","sort":3,"meta":{}},{"name":"registerTempTable","fullName":"Spark.Core.Manager.SchemaManager:registerTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-registerTempTable","sort":3,"meta":{}},{"name":"registerTempTable","fullName":"Spark.Core.Manager.SchemaManager:registerTempTable","icon":"icon-method","url":"#!/class/Spark.Core.Manager.SchemaManager-method-registerTempTable","sort":3,"meta":{}},{"name":"SchemaObject","fullName":"Spark.Core.Manager.SchemaManager:SchemaObject","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SchemaManager-temptable-SchemaObject","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ConfigDB","fullName":"Spark.Core.Manager.SchemaManager:ConfigDB","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigDB","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ConfigTable","fullName":"Spark.Core.Manager.SchemaManager:ConfigTable","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigTable","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"ConfigField","fullName":"Spark.Core.Manager.SchemaManager:ConfigField","icon":"icon-temptable","url":"#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigField","sort":3,"meta":{"protected":true,"global":true,"noundo":true}},{"name":"dsConfig","fullName":"Spark.Core.Manager.SchemaManager:dsConfig","icon":"icon-dataset","url":"#!/class/Spark.Core.Manager.SchemaManager-dataset-dsConfig","sort":3,"meta":{"protected":true}},{"name":"TOTP","fullName":"Spark.Core.Security.TOTP","icon":"icon-class","url":"#!/class/Spark.Core.Security.TOTP","sort":1,"meta":{"final":true}},{"name":"TOTP","fullName":"Spark.Core.Security.TOTP:TOTP","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.TOTP-constructor-TOTP","sort":3,"meta":{}},{"name":"TOTP","fullName":"Spark.Core.Security.TOTP:TOTP","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.TOTP-constructor-TOTP","sort":3,"meta":{}},{"name":"TOTP","fullName":"Spark.Core.Security.TOTP:TOTP","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.TOTP-constructor-TOTP","sort":3,"meta":{}},{"name":"TOTP","fullName":"Spark.Core.Security.TOTP:TOTP","icon":"icon-destructor","url":"#!/class/Spark.Core.Security.TOTP-destructor-TOTP","sort":3,"meta":{}},{"name":"Token","fullName":"Spark.Core.Security.TOTP:Token","icon":"icon-property","url":"#!/class/Spark.Core.Security.TOTP-property-Token","sort":3,"meta":{}},{"name":"UnixEpoch","fullName":"Spark.Core.Security.TOTP:UnixEpoch","icon":"icon-property","url":"#!/class/Spark.Core.Security.TOTP-property-UnixEpoch","sort":3,"meta":{}},{"name":"EpochCounter","fullName":"Spark.Core.Security.TOTP:EpochCounter","icon":"icon-property","url":"#!/class/Spark.Core.Security.TOTP-property-EpochCounter","sort":3,"meta":{}},{"name":"newToken","fullName":"Spark.Core.Security.TOTP:newToken","icon":"icon-method","url":"#!/class/Spark.Core.Security.TOTP-method-newToken","sort":3,"meta":{"private":true}},{"name":"QuerySortEntry","fullName":"OpenEdge.BusinessLogic.QuerySortEntry","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry","sort":1,"meta":{}},{"name":"QuerySortEntry","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry","sort":3,"meta":{}},{"name":"QuerySortEntry","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry","sort":3,"meta":{}},{"name":"QuerySortEntry","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry","sort":3,"meta":{}},{"name":"FieldName","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:FieldName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-property-FieldName","sort":3,"meta":{}},{"name":"SortOrder","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:SortOrder","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-property-SortOrder","sort":3,"meta":{}},{"name":"ToString","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:ToString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-ToString","sort":3,"meta":{"override":true}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.QuerySortEntry:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-FromJson","sort":3,"meta":{}},{"name":"HMAC","fullName":"Spark.Core.Security.HMAC","icon":"icon-class","url":"#!/class/Spark.Core.Security.HMAC","sort":1,"meta":{"final":true}},{"name":"GenHash","fullName":"Spark.Core.Security.HMAC:GenHash","icon":"icon-method","url":"#!/class/Spark.Core.Security.HMAC-method-GenHash","sort":3,"meta":{"static":true}},{"name":"TruncateHMAC","fullName":"Spark.Core.Security.HMAC:TruncateHMAC","icon":"icon-method","url":"#!/class/Spark.Core.Security.HMAC-method-TruncateHMAC","sort":3,"meta":{"static":true}},{"name":"Base32","fullName":"Spark.Core.Util.Base32","icon":"icon-class","url":"#!/class/Spark.Core.Util.Base32","sort":1,"meta":{}},{"name":"Base32","fullName":"Spark.Core.Util.Base32:Base32","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.Base32-constructor-Base32","sort":3,"meta":{"static":true}},{"name":"DecodeToBinary","fullName":"Spark.Core.Util.Base32:DecodeToBinary","icon":"icon-method","url":"#!/class/Spark.Core.Util.Base32-method-DecodeToBinary","sort":3,"meta":{"private":true,"static":true}},{"name":"ConvertToHex","fullName":"Spark.Core.Util.Base32:ConvertToHex","icon":"icon-method","url":"#!/class/Spark.Core.Util.Base32-method-ConvertToHex","sort":3,"meta":{"static":true}},{"name":"EncodeData","fullName":"Spark.Core.Util.Base32:EncodeData","icon":"icon-method","url":"#!/class/Spark.Core.Util.Base32-method-EncodeData","sort":3,"meta":{"static":true}},{"name":"DecodeData","fullName":"Spark.Core.Util.Base32:DecodeData","icon":"icon-method","url":"#!/class/Spark.Core.Util.Base32-method-DecodeData","sort":3,"meta":{"static":true}},{"name":"Timer","fullName":"Spark.Core.Util.Timer","icon":"icon-class","url":"#!/class/Spark.Core.Util.Timer","sort":1,"meta":{}},{"name":"Timer","fullName":"Spark.Core.Util.Timer:Timer","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.Timer-constructor-Timer","sort":3,"meta":{"static":true}},{"name":"purgeTimers","fullName":"Spark.Core.Util.Timer:purgeTimers","icon":"icon-method","url":"#!/class/Spark.Core.Util.Timer-method-purgeTimers","sort":3,"meta":{"static":true}},{"name":"startTimer","fullName":"Spark.Core.Util.Timer:startTimer","icon":"icon-method","url":"#!/class/Spark.Core.Util.Timer-method-startTimer","sort":3,"meta":{"static":true}},{"name":"endTimer","fullName":"Spark.Core.Util.Timer:endTimer","icon":"icon-method","url":"#!/class/Spark.Core.Util.Timer-method-endTimer","sort":3,"meta":{"static":true}},{"name":"IJsonSerializer","fullName":"OpenEdge.Core.Json.IJsonSerializer","icon":"icon-interface","url":"#!/class/OpenEdge.Core.Json.IJsonSerializer","sort":1,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.Core.Json.IJsonSerializer:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.IJsonSerializer-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.Core.Json.IJsonSerializer:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.Core.Json.IJsonSerializer-method-FromJson","sort":3,"meta":{}},{"name":"CryptoTools","fullName":"Spark.Core.Util.CryptoTools","icon":"icon-class","url":"#!/class/Spark.Core.Util.CryptoTools","sort":1,"meta":{}},{"name":"encryptCode","fullName":"Spark.Core.Util.CryptoTools:encryptCode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-encryptCode","sort":3,"meta":{"static":true}},{"name":"encryptCode","fullName":"Spark.Core.Util.CryptoTools:encryptCode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-encryptCode","sort":3,"meta":{"static":true}},{"name":"encryptValue","fullName":"Spark.Core.Util.CryptoTools:encryptValue","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-encryptValue","sort":3,"meta":{"static":true}},{"name":"decryptCode","fullName":"Spark.Core.Util.CryptoTools:decryptCode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-decryptCode","sort":3,"meta":{"static":true}},{"name":"decryptCode","fullName":"Spark.Core.Util.CryptoTools:decryptCode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-decryptCode","sort":3,"meta":{"static":true}},{"name":"decryptValue","fullName":"Spark.Core.Util.CryptoTools:decryptValue","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-decryptValue","sort":3,"meta":{"static":true}},{"name":"getEncryptKey","fullName":"Spark.Core.Util.CryptoTools:getEncryptKey","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-getEncryptKey","sort":3,"meta":{"static":true}},{"name":"getEncryptKey","fullName":"Spark.Core.Util.CryptoTools:getEncryptKey","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-getEncryptKey","sort":3,"meta":{"static":true}},{"name":"getRandomEncryptKey","fullName":"Spark.Core.Util.CryptoTools:getRandomEncryptKey","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-getRandomEncryptKey","sort":3,"meta":{"static":true}},{"name":"getEncryptInitVector","fullName":"Spark.Core.Util.CryptoTools:getEncryptInitVector","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-getEncryptInitVector","sort":3,"meta":{"static":true}},{"name":"base64Encode","fullName":"Spark.Core.Util.CryptoTools:base64Encode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-base64Encode","sort":3,"meta":{"static":true}},{"name":"base64Decode","fullName":"Spark.Core.Util.CryptoTools:base64Decode","icon":"icon-method","url":"#!/class/Spark.Core.Util.CryptoTools-method-base64Decode","sort":3,"meta":{"static":true}},{"name":"RemoteMetrics","fullName":"Spark.Diagnostic.Util.RemoteMetrics","icon":"icon-class","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics","sort":1,"meta":{"final":true}},{"name":"RemoteMetrics","fullName":"Spark.Diagnostic.Util.RemoteMetrics:RemoteMetrics","icon":"icon-constructor","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-constructor-RemoteMetrics","sort":3,"meta":{}},{"name":"RemoteMetrics","fullName":"Spark.Diagnostic.Util.RemoteMetrics:RemoteMetrics","icon":"icon-destructor","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-destructor-RemoteMetrics","sort":3,"meta":{}},{"name":"Applications","fullName":"Spark.Diagnostic.Util.RemoteMetrics:Applications","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-Applications","sort":3,"meta":{"static":true}},{"name":"MetricSource","fullName":"Spark.Diagnostic.Util.RemoteMetrics:MetricSource","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-MetricSource","sort":3,"meta":{"private":true}},{"name":"InstanceURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:InstanceURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-InstanceURI","sort":3,"meta":{}},{"name":"ManagerRealm","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ManagerRealm","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerRealm","sort":3,"meta":{}},{"name":"ManagerUsername","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ManagerUsername","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerUsername","sort":3,"meta":{}},{"name":"ManagerPassword","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ManagerPassword","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerPassword","sort":3,"meta":{}},{"name":"ManagerURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ManagerURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerURI","sort":3,"meta":{"private":true}},{"name":"GetAllAgentsURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetAllAgentsURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAllAgentsURI","sort":3,"meta":{"private":true}},{"name":"GetAgentURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetAgentURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAgentURI","sort":3,"meta":{"private":true}},{"name":"GetRequestsURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetRequestsURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetRequestsURI","sort":3,"meta":{"private":true}},{"name":"GetAgentSessionURI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetAgentSessionURI","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAgentSessionURI","sort":3,"meta":{"private":true}},{"name":"TrackObjects","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackObjects","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackObjects","sort":3,"meta":{"private":true}},{"name":"GetObjectsReport","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetObjectsReport","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetObjectsReport","sort":3,"meta":{"private":true}},{"name":"GetSessionObjectsReport","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetSessionObjectsReport","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetSessionObjectsReport","sort":3,"meta":{"private":true}},{"name":"OEJMXBinary","fullName":"Spark.Diagnostic.Util.RemoteMetrics:OEJMXBinary","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-OEJMXBinary","sort":3,"meta":{"private":true}},{"name":"AgentsQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:AgentsQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-AgentsQuery","sort":3,"meta":{"private":true}},{"name":"SessionsQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:SessionsQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-SessionsQuery","sort":3,"meta":{"private":true}},{"name":"RequestsQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:RequestsQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-RequestsQuery","sort":3,"meta":{"private":true}},{"name":"TrackOnQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackOnQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackOnQuery","sort":3,"meta":{"private":true}},{"name":"TrackOffQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackOffQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackOffQuery","sort":3,"meta":{"private":true}},{"name":"TrackingQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackingQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackingQuery","sort":3,"meta":{"private":true}},{"name":"ABLObjectsQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ABLObjectsQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ABLObjectsQuery","sort":3,"meta":{"private":true}},{"name":"ABLSessionObjectsQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:ABLSessionObjectsQuery","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ABLSessionObjectsQuery","sort":3,"meta":{"private":true}},{"name":"CheckTempPath","fullName":"Spark.Diagnostic.Util.RemoteMetrics:CheckTempPath","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CheckTempPath","sort":3,"meta":{"private":true}},{"name":"InvokeAPI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:InvokeAPI","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeAPI","sort":3,"meta":{"private":true}},{"name":"InvokeAPI","fullName":"Spark.Diagnostic.Util.RemoteMetrics:InvokeAPI","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeAPI","sort":3,"meta":{"private":true}},{"name":"InvokeJMX","fullName":"Spark.Diagnostic.Util.RemoteMetrics:InvokeJMX","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeJMX","sort":3,"meta":{"private":true}},{"name":"CreateTempQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery","sort":3,"meta":{"private":true}},{"name":"CreateTempQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery","sort":3,"meta":{"private":true}},{"name":"CreateTempQuery","fullName":"Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery","sort":3,"meta":{"private":true}},{"name":"FilterABLObjects","fullName":"Spark.Diagnostic.Util.RemoteMetrics:FilterABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterABLObjects","sort":3,"meta":{"private":true}},{"name":"GetApplication","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetApplication","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetApplication","sort":3,"meta":{}},{"name":"GetAgents","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetAgents","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetAgents","sort":3,"meta":{}},{"name":"GetSessions","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetSessions","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetSessions","sort":3,"meta":{}},{"name":"TrackABLObjects","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-TrackABLObjects","sort":3,"meta":{}},{"name":"TrackingABLObjects","fullName":"Spark.Diagnostic.Util.RemoteMetrics:TrackingABLObjects","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-TrackingABLObjects","sort":3,"meta":{}},{"name":"GetRequestMetrics","fullName":"Spark.Diagnostic.Util.RemoteMetrics:GetRequestMetrics","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetRequestMetrics","sort":3,"meta":{}},{"name":"FilterABLObjectReport","fullName":"Spark.Diagnostic.Util.RemoteMetrics:FilterABLObjectReport","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterABLObjectReport","sort":3,"meta":{}},{"name":"FilterSessionABLObjectReport","fullName":"Spark.Diagnostic.Util.RemoteMetrics:FilterSessionABLObjectReport","icon":"icon-method","url":"#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterSessionABLObjectReport","sort":3,"meta":{}},{"name":"ICatalog","fullName":"Spark.Core.Service.ICatalog","icon":"icon-interface","url":"#!/class/Spark.Core.Service.ICatalog","sort":1,"meta":{}},{"name":"getCatalog","fullName":"Spark.Core.Service.ICatalog:getCatalog","icon":"icon-method","url":"#!/class/Spark.Core.Service.ICatalog-method-getCatalog","sort":3,"meta":{}},{"name":"GetDataResponse","fullName":"OpenEdge.BusinessLogic.GetDataResponse","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse","sort":1,"meta":{}},{"name":"GetDataResponse","fullName":"OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse","sort":3,"meta":{}},{"name":"GetDataResponse","fullName":"OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse","sort":3,"meta":{}},{"name":"GetDataResponse","fullName":"OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse","sort":3,"meta":{}},{"name":"CustomResponse","fullName":"OpenEdge.BusinessLogic.GetDataResponse:CustomResponse","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-property-CustomResponse","sort":3,"meta":{}},{"name":"TableResponses","fullName":"OpenEdge.BusinessLogic.GetDataResponse:TableResponses","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-property-TableResponses","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.GetDataResponse:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-method-FromJson","sort":3,"meta":{}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.GetDataResponse:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.GetDataResponse-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"IStartupManager","fullName":"Spark.Core.Manager.IStartupManager","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.IStartupManager","sort":1,"meta":{}},{"name":"interfaceStopAfter","fullName":"Spark.Core.Manager.IStartupManager:interfaceStopAfter","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IStartupManager-property-interfaceStopAfter","sort":3,"meta":{}},{"name":"stopManagers","fullName":"Spark.Core.Manager.IStartupManager:stopManagers","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IStartupManager-method-stopManagers","sort":3,"meta":{}},{"name":"OSPath","fullName":"Spark.Diagnostic.Util.OSPath","icon":"icon-class","url":"#!/class/Spark.Diagnostic.Util.OSPath","sort":1,"meta":{"abstract":true}},{"name":"CatalinaBase","fullName":"Spark.Diagnostic.Util.OSPath:CatalinaBase","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OSPath-property-CatalinaBase","sort":3,"meta":{"protected":true}},{"name":"TemporaryDir","fullName":"Spark.Diagnostic.Util.OSPath:TemporaryDir","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.OSPath-property-TemporaryDir","sort":3,"meta":{"protected":true}},{"name":"OEUserRealm","fullName":"Spark.Core.Security.OEUserRealm","icon":"icon-class","url":"#!/class/Spark.Core.Security.OEUserRealm","sort":1,"meta":{"abstract":true}},{"name":"OEUserRealm","fullName":"Spark.Core.Security.OEUserRealm:OEUserRealm","icon":"icon-constructor","url":"#!/class/Spark.Core.Security.OEUserRealm-constructor-OEUserRealm","sort":3,"meta":{}},{"name":"loadConfig","fullName":"Spark.Core.Security.OEUserRealm:loadConfig","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-loadConfig","sort":3,"meta":{"protected":true}},{"name":"validateRequest","fullName":"Spark.Core.Security.OEUserRealm:validateRequest","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-validateRequest","sort":3,"meta":{"protected":true}},{"name":"validateRequest","fullName":"Spark.Core.Security.OEUserRealm:validateRequest","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-validateRequest","sort":3,"meta":{"protected":true}},{"name":"checkPasswordHash","fullName":"Spark.Core.Security.OEUserRealm:checkPasswordHash","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-checkPasswordHash","sort":3,"meta":{"protected":true}},{"name":"checkPasswordHash","fullName":"Spark.Core.Security.OEUserRealm:checkPasswordHash","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-checkPasswordHash","sort":3,"meta":{"protected":true}},{"name":"getPassword","fullName":"Spark.Core.Security.OEUserRealm:getPassword","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-getPassword","sort":3,"meta":{"protected":true}},{"name":"postAuthenticate","fullName":"Spark.Core.Security.OEUserRealm:postAuthenticate","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-postAuthenticate","sort":3,"meta":{"protected":true}},{"name":"getUserID","fullName":"Spark.Core.Security.OEUserRealm:getUserID","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-getUserID","sort":3,"meta":{}},{"name":"isActive","fullName":"Spark.Core.Security.OEUserRealm:isActive","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-isActive","sort":3,"meta":{}},{"name":"isExpired","fullName":"Spark.Core.Security.OEUserRealm:isExpired","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-isExpired","sort":3,"meta":{}},{"name":"isLocked","fullName":"Spark.Core.Security.OEUserRealm:isLocked","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-isLocked","sort":3,"meta":{}},{"name":"getUserRoles","fullName":"Spark.Core.Security.OEUserRealm:getUserRoles","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-getUserRoles","sort":3,"meta":{}},{"name":"GetAttribute","fullName":"Spark.Core.Security.OEUserRealm:GetAttribute","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-GetAttribute","sort":3,"meta":{}},{"name":"GetAttributeNames","fullName":"Spark.Core.Security.OEUserRealm:GetAttributeNames","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-GetAttributeNames","sort":3,"meta":{}},{"name":"GetUsernames","fullName":"Spark.Core.Security.OEUserRealm:GetUsernames","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernames","sort":3,"meta":{}},{"name":"GetUsernamesByQuery","fullName":"Spark.Core.Security.OEUserRealm:GetUsernamesByQuery","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernamesByQuery","sort":3,"meta":{}},{"name":"GetUsernamesByQuery","fullName":"Spark.Core.Security.OEUserRealm:GetUsernamesByQuery","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernamesByQuery","sort":3,"meta":{}},{"name":"RemoveAttribute","fullName":"Spark.Core.Security.OEUserRealm:RemoveAttribute","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-RemoveAttribute","sort":3,"meta":{}},{"name":"SetAttribute","fullName":"Spark.Core.Security.OEUserRealm:SetAttribute","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-SetAttribute","sort":3,"meta":{}},{"name":"ValidatePassword","fullName":"Spark.Core.Security.OEUserRealm:ValidatePassword","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-ValidatePassword","sort":3,"meta":{}},{"name":"ValidatePassword","fullName":"Spark.Core.Security.OEUserRealm:ValidatePassword","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-ValidatePassword","sort":3,"meta":{}},{"name":"ValidateUser","fullName":"Spark.Core.Security.OEUserRealm:ValidateUser","icon":"icon-method","url":"#!/class/Spark.Core.Security.OEUserRealm-method-ValidateUser","sort":3,"meta":{}},{"name":"DynamicEntity","fullName":"Spark.Core.Service.DynamicEntity","icon":"icon-class","url":"#!/class/Spark.Core.Service.DynamicEntity","sort":1,"meta":{"abstract":true}},{"name":"entityName","fullName":"Spark.Core.Service.DynamicEntity:entityName","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-entityName","sort":3,"meta":{}},{"name":"serviceURI","fullName":"Spark.Core.Service.DynamicEntity:serviceURI","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-serviceURI","sort":3,"meta":{"abstract":true}},{"name":"resourceName","fullName":"Spark.Core.Service.DynamicEntity:resourceName","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-resourceName","sort":3,"meta":{"abstract":true}},{"name":"primaryKeys","fullName":"Spark.Core.Service.DynamicEntity:primaryKeys","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-primaryKeys","sort":3,"meta":{"abstract":true}},{"name":"foreignKeys","fullName":"Spark.Core.Service.DynamicEntity:foreignKeys","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-foreignKeys","sort":3,"meta":{"abstract":true}},{"name":"mappingType","fullName":"Spark.Core.Service.DynamicEntity:mappingType","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-mappingType","sort":3,"meta":{"abstract":true}},{"name":"capabilities","fullName":"Spark.Core.Service.DynamicEntity:capabilities","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-capabilities","sort":3,"meta":{"abstract":true}},{"name":"operations","fullName":"Spark.Core.Service.DynamicEntity:operations","icon":"icon-property","url":"#!/class/Spark.Core.Service.DynamicEntity-property-operations","sort":3,"meta":{"abstract":true}},{"name":"Strings","fullName":"Spark.Core.Util.Strings","icon":"icon-class","url":"#!/class/Spark.Core.Util.Strings","sort":1,"meta":{}},{"name":"doXOR","fullName":"Spark.Core.Util.Strings:doXOR","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-doXOR","sort":3,"meta":{"protected":true,"static":true}},{"name":"getXOR","fullName":"Spark.Core.Util.Strings:getXOR","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-getXOR","sort":3,"meta":{"static":true}},{"name":"getDigitsOnly","fullName":"Spark.Core.Util.Strings:getDigitsOnly","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-getDigitsOnly","sort":3,"meta":{"static":true}},{"name":"camelCaseWord","fullName":"Spark.Core.Util.Strings:camelCaseWord","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-camelCaseWord","sort":3,"meta":{"static":true}},{"name":"properWords","fullName":"Spark.Core.Util.Strings:properWords","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-properWords","sort":3,"meta":{"static":true}},{"name":"stripKeywords","fullName":"Spark.Core.Util.Strings:stripKeywords","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-stripKeywords","sort":3,"meta":{"static":true}},{"name":"containsBadChar","fullName":"Spark.Core.Util.Strings:containsBadChar","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-containsBadChar","sort":3,"meta":{"static":true}},{"name":"stripBadChars","fullName":"Spark.Core.Util.Strings:stripBadChars","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-stripBadChars","sort":3,"meta":{"static":true}},{"name":"stripBadLabel","fullName":"Spark.Core.Util.Strings:stripBadLabel","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-stripBadLabel","sort":3,"meta":{"static":true}},{"name":"stripOperators","fullName":"Spark.Core.Util.Strings:stripOperators","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-stripOperators","sort":3,"meta":{"static":true}},{"name":"stripPunctuation","fullName":"Spark.Core.Util.Strings:stripPunctuation","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-stripPunctuation","sort":3,"meta":{"static":true}},{"name":"getUniqueWords","fullName":"Spark.Core.Util.Strings:getUniqueWords","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-getUniqueWords","sort":3,"meta":{"static":true}},{"name":"booleanConvert","fullName":"Spark.Core.Util.Strings:booleanConvert","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-booleanConvert","sort":3,"meta":{"static":true}},{"name":"unixSafe","fullName":"Spark.Core.Util.Strings:unixSafe","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-unixSafe","sort":3,"meta":{"static":true}},{"name":"maskString","fullName":"Spark.Core.Util.Strings:maskString","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-maskString","sort":3,"meta":{"static":true}},{"name":"inArray","fullName":"Spark.Core.Util.Strings:inArray","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-inArray","sort":3,"meta":{"static":true}},{"name":"sortArray","fullName":"Spark.Core.Util.Strings:sortArray","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-sortArray","sort":3,"meta":{"static":true}},{"name":"mergeProperties","fullName":"Spark.Core.Util.Strings:mergeProperties","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-mergeProperties","sort":3,"meta":{"static":true}},{"name":"reverse","fullName":"Spark.Core.Util.Strings:reverse","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-reverse","sort":3,"meta":{"static":true}},{"name":"leftPad","fullName":"Spark.Core.Util.Strings:leftPad","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-leftPad","sort":3,"meta":{"static":true}},{"name":"rightPad","fullName":"Spark.Core.Util.Strings:rightPad","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-rightPad","sort":3,"meta":{"static":true}},{"name":"appendWithComma","fullName":"Spark.Core.Util.Strings:appendWithComma","icon":"icon-method","url":"#!/class/Spark.Core.Util.Strings-method-appendWithComma","sort":3,"meta":{"static":true}},{"name":"tSort","fullName":"Spark.Core.Util.Strings:tSort","icon":"icon-temptable","url":"#!/class/Spark.Core.Util.Strings-temptable-tSort","sort":3,"meta":{"private":true,"static":true,"global":true,"noundo":true}},{"name":"QueryPredicate","fullName":"OpenEdge.BusinessLogic.QueryPredicate","icon":"icon-class","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate","sort":1,"meta":{}},{"name":"QueryPredicate","fullName":"OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate","sort":3,"meta":{}},{"name":"QueryPredicate","fullName":"OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate","sort":3,"meta":{}},{"name":"QueryPredicate","fullName":"OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate","icon":"icon-constructor","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate","sort":3,"meta":{}},{"name":"FieldName","fullName":"OpenEdge.BusinessLogic.QueryPredicate:FieldName","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-FieldName","sort":3,"meta":{}},{"name":"Join","fullName":"OpenEdge.BusinessLogic.QueryPredicate:Join","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Join","sort":3,"meta":{}},{"name":"Operator","fullName":"OpenEdge.BusinessLogic.QueryPredicate:Operator","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Operator","sort":3,"meta":{}},{"name":"Value","fullName":"OpenEdge.BusinessLogic.QueryPredicate:Value","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Value","sort":3,"meta":{}},{"name":"Values","fullName":"OpenEdge.BusinessLogic.QueryPredicate:Values","icon":"icon-property","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Values","sort":3,"meta":{}},{"name":"ToString","fullName":"OpenEdge.BusinessLogic.QueryPredicate:ToString","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-ToString","sort":3,"meta":{"override":true}},{"name":"ToJsonConstruct","fullName":"OpenEdge.BusinessLogic.QueryPredicate:ToJsonConstruct","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-ToJsonConstruct","sort":3,"meta":{}},{"name":"FromJson","fullName":"OpenEdge.BusinessLogic.QueryPredicate:FromJson","icon":"icon-method","url":"#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-FromJson","sort":3,"meta":{}},{"name":"MemptrInputStream","fullName":"OpenEdge.Core.MemptrInputStream","icon":"icon-class","url":"#!/class/OpenEdge.Core.MemptrInputStream","sort":1,"meta":{}},{"name":"MemptrInputStream","fullName":"OpenEdge.Core.MemptrInputStream:MemptrInputStream","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.MemptrInputStream-constructor-MemptrInputStream","sort":3,"meta":{}},{"name":"MemptrInputStream","fullName":"OpenEdge.Core.MemptrInputStream:MemptrInputStream","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.MemptrInputStream-constructor-MemptrInputStream","sort":3,"meta":{}},{"name":"MemptrInputStream","fullName":"OpenEdge.Core.MemptrInputStream:MemptrInputStream","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.MemptrInputStream-constructor-MemptrInputStream","sort":3,"meta":{}},{"name":"Position","fullName":"OpenEdge.Core.MemptrInputStream:Position","icon":"icon-property","url":"#!/class/OpenEdge.Core.MemptrInputStream-property-Position","sort":3,"meta":{}},{"name":"Data","fullName":"OpenEdge.Core.MemptrInputStream:Data","icon":"icon-property","url":"#!/class/OpenEdge.Core.MemptrInputStream-property-Data","sort":3,"meta":{}},{"name":"Read","fullName":"OpenEdge.Core.MemptrInputStream:Read","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"Read","fullName":"OpenEdge.Core.MemptrInputStream:Read","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"Read","fullName":"OpenEdge.Core.MemptrInputStream:Read","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrInputStream-method-Read","sort":3,"meta":{"override":true}},{"name":"SkipBytes","fullName":"OpenEdge.Core.MemptrInputStream:SkipBytes","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrInputStream-method-SkipBytes","sort":3,"meta":{"override":true}},{"name":"Close","fullName":"OpenEdge.Core.MemptrInputStream:Close","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrInputStream-method-Close","sort":3,"meta":{"override":true}},{"name":"DynamicCaller","fullName":"Spark.Core.Util.DynamicCaller","icon":"icon-class","url":"#!/class/Spark.Core.Util.DynamicCaller","sort":1,"meta":{"final":true}},{"name":"DynamicCaller","fullName":"Spark.Core.Util.DynamicCaller:DynamicCaller","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.DynamicCaller-constructor-DynamicCaller","sort":3,"meta":{}},{"name":"DynamicCaller","fullName":"Spark.Core.Util.DynamicCaller:DynamicCaller","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.DynamicCaller-constructor-DynamicCaller","sort":3,"meta":{}},{"name":"DynamicCaller","fullName":"Spark.Core.Util.DynamicCaller:DynamicCaller","icon":"icon-destructor","url":"#!/class/Spark.Core.Util.DynamicCaller-destructor-DynamicCaller","sort":3,"meta":{}},{"name":"oLoggingManager","fullName":"Spark.Core.Util.DynamicCaller:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Util.DynamicCaller-property-oLoggingManager","sort":3,"meta":{"private":true}},{"name":"oSchemaManager","fullName":"Spark.Core.Util.DynamicCaller:oSchemaManager","icon":"icon-property","url":"#!/class/Spark.Core.Util.DynamicCaller-property-oSchemaManager","sort":3,"meta":{"protected":true}},{"name":"valueBuffer","fullName":"Spark.Core.Util.DynamicCaller:valueBuffer","icon":"icon-property","url":"#!/class/Spark.Core.Util.DynamicCaller-property-valueBuffer","sort":3,"meta":{"private":true}},{"name":"getParameterHandle","fullName":"Spark.Core.Util.DynamicCaller:getParameterHandle","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameterHandle","sort":3,"meta":{}},{"name":"isInitialized","fullName":"Spark.Core.Util.DynamicCaller:isInitialized","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-isInitialized","sort":3,"meta":{}},{"name":"parameterExists","fullName":"Spark.Core.Util.DynamicCaller:parameterExists","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-parameterExists","sort":3,"meta":{}},{"name":"executeMethod","fullName":"Spark.Core.Util.DynamicCaller:executeMethod","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-executeMethod","sort":3,"meta":{}},{"name":"executeMethod","fullName":"Spark.Core.Util.DynamicCaller:executeMethod","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-executeMethod","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getParameter","fullName":"Spark.Core.Util.DynamicCaller:getParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getParameter","sort":3,"meta":{}},{"name":"getJsonArrayParam","fullName":"Spark.Core.Util.DynamicCaller:getJsonArrayParam","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getJsonArrayParam","sort":3,"meta":{}},{"name":"getJsonObjectParam","fullName":"Spark.Core.Util.DynamicCaller:getJsonObjectParam","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-getJsonObjectParam","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"setParameter","fullName":"Spark.Core.Util.DynamicCaller:setParameter","icon":"icon-method","url":"#!/class/Spark.Core.Util.DynamicCaller-method-setParameter","sort":3,"meta":{}},{"name":"ParamObject","fullName":"Spark.Core.Util.DynamicCaller:ParamObject","icon":"icon-temptable","url":"#!/class/Spark.Core.Util.DynamicCaller-temptable-ParamObject","sort":3,"meta":{"private":true,"global":true,"noundo":true}},{"name":"MemptrOutputStream","fullName":"OpenEdge.Core.MemptrOutputStream","icon":"icon-class","url":"#!/class/OpenEdge.Core.MemptrOutputStream","sort":1,"meta":{}},{"name":"MemptrOutputStream","fullName":"OpenEdge.Core.MemptrOutputStream:MemptrOutputStream","icon":"icon-constructor","url":"#!/class/OpenEdge.Core.MemptrOutputStream-constructor-MemptrOutputStream","sort":3,"meta":{}},{"name":"Data","fullName":"OpenEdge.Core.MemptrOutputStream:Data","icon":"icon-property","url":"#!/class/OpenEdge.Core.MemptrOutputStream-property-Data","sort":3,"meta":{}},{"name":"Flush","fullName":"OpenEdge.Core.MemptrOutputStream:Flush","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrOutputStream-method-Flush","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"OpenEdge.Core.MemptrOutputStream:Write","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"OpenEdge.Core.MemptrOutputStream:Write","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"OpenEdge.Core.MemptrOutputStream:Write","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"Write","fullName":"OpenEdge.Core.MemptrOutputStream:Write","icon":"icon-method","url":"#!/class/OpenEdge.Core.MemptrOutputStream-method-Write","sort":3,"meta":{"override":true}},{"name":"SparkEntity","fullName":"Spark.Core.Service.SparkEntity","icon":"icon-class","url":"#!/class/Spark.Core.Service.SparkEntity","sort":1,"meta":{"abstract":true}},{"name":"SparkEntity","fullName":"Spark.Core.Service.SparkEntity:SparkEntity","icon":"icon-constructor","url":"#!/class/Spark.Core.Service.SparkEntity-constructor-SparkEntity","sort":3,"meta":{}},{"name":"SparkEntity","fullName":"Spark.Core.Service.SparkEntity:SparkEntity","icon":"icon-constructor","url":"#!/class/Spark.Core.Service.SparkEntity-constructor-SparkEntity","sort":3,"meta":{}},{"name":"oClientContext","fullName":"Spark.Core.Service.SparkEntity:oClientContext","icon":"icon-property","url":"#!/class/Spark.Core.Service.SparkEntity-property-oClientContext","sort":3,"meta":{"protected":true}},{"name":"oLoggingManager","fullName":"Spark.Core.Service.SparkEntity:oLoggingManager","icon":"icon-property","url":"#!/class/Spark.Core.Service.SparkEntity-property-oLoggingManager","sort":3,"meta":{"protected":true}},{"name":"oCatalogManager","fullName":"Spark.Core.Service.SparkEntity:oCatalogManager","icon":"icon-property","url":"#!/class/Spark.Core.Service.SparkEntity-property-oCatalogManager","sort":3,"meta":{"protected":true}},{"name":"oContextMessage","fullName":"Spark.Core.Service.SparkEntity:oContextMessage","icon":"icon-property","url":"#!/class/Spark.Core.Service.SparkEntity-property-oContextMessage","sort":3,"meta":{}},{"name":"LastCount","fullName":"Spark.Core.Service.SparkEntity:LastCount","icon":"icon-property","url":"#!/class/Spark.Core.Service.SparkEntity-property-LastCount","sort":3,"meta":{}},{"name":"getClassName","fullName":"Spark.Core.Service.SparkEntity:getClassName","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getClassName","sort":3,"meta":{"protected":true,"final":true}},{"name":"getFilterObject","fullName":"Spark.Core.Service.SparkEntity:getFilterObject","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getFilterObject","sort":3,"meta":{"protected":true}},{"name":"filterData","fullName":"Spark.Core.Service.SparkEntity:filterData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-filterData","sort":3,"meta":{"protected":true}},{"name":"getFilterOnly","fullName":"Spark.Core.Service.SparkEntity:getFilterOnly","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getFilterOnly","sort":3,"meta":{"protected":true}},{"name":"getRecCount","fullName":"Spark.Core.Service.SparkEntity:getRecCount","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getRecCount","sort":3,"meta":{"protected":true}},{"name":"getRecCount","fullName":"Spark.Core.Service.SparkEntity:getRecCount","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getRecCount","sort":3,"meta":{"protected":true}},{"name":"preCommitLogic","fullName":"Spark.Core.Service.SparkEntity:preCommitLogic","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-preCommitLogic","sort":3,"meta":{"protected":true}},{"name":"postCommitLogic","fullName":"Spark.Core.Service.SparkEntity:postCommitLogic","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-postCommitLogic","sort":3,"meta":{"protected":true}},{"name":"postFetchRecord","fullName":"Spark.Core.Service.SparkEntity:postFetchRecord","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-postFetchRecord","sort":3,"meta":{"protected":true}},{"name":"validateData","fullName":"Spark.Core.Service.SparkEntity:validateData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-validateData","sort":3,"meta":{"protected":true}},{"name":"initialize","fullName":"Spark.Core.Service.SparkEntity:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-initialize","sort":3,"meta":{}},{"name":"dispose","fullName":"Spark.Core.Service.SparkEntity:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-dispose","sort":3,"meta":{}},{"name":"getDataset","fullName":"Spark.Core.Service.SparkEntity:getDataset","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getDataset","sort":3,"meta":{}},{"name":"postRowFill","fullName":"Spark.Core.Service.SparkEntity:postRowFill","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-postRowFill","sort":3,"meta":{}},{"name":"readData","fullName":"Spark.Core.Service.SparkEntity:readData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-readData","sort":3,"meta":{}},{"name":"createData","fullName":"Spark.Core.Service.SparkEntity:createData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-createData","sort":3,"meta":{"override":true}},{"name":"updateData","fullName":"Spark.Core.Service.SparkEntity:updateData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-updateData","sort":3,"meta":{"override":true}},{"name":"deleteData","fullName":"Spark.Core.Service.SparkEntity:deleteData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-deleteData","sort":3,"meta":{"override":true}},{"name":"submitData","fullName":"Spark.Core.Service.SparkEntity:submitData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-submitData","sort":3,"meta":{}},{"name":"getData","fullName":"Spark.Core.Service.SparkEntity:getData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getData","sort":3,"meta":{}},{"name":"getResultCount","fullName":"Spark.Core.Service.SparkEntity:getResultCount","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-getResultCount","sort":3,"meta":{}},{"name":"updateData","fullName":"Spark.Core.Service.SparkEntity:updateData","icon":"icon-method","url":"#!/class/Spark.Core.Service.SparkEntity-method-updateData","sort":3,"meta":{}},{"name":"GenTools","fullName":"Spark.Core.Util.GenTools","icon":"icon-class","url":"#!/class/Spark.Core.Util.GenTools","sort":1,"meta":{}},{"name":"getAblError","fullName":"Spark.Core.Util.GenTools:getAblError","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-getAblError","sort":3,"meta":{"static":true}},{"name":"getLastAblError","fullName":"Spark.Core.Util.GenTools:getLastAblError","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-getLastAblError","sort":3,"meta":{"static":true}},{"name":"getDateTime","fullName":"Spark.Core.Util.GenTools:getDateTime","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-getDateTime","sort":3,"meta":{"static":true}},{"name":"getLocalTimeZoneOffset","fullName":"Spark.Core.Util.GenTools:getLocalTimeZoneOffset","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-getLocalTimeZoneOffset","sort":3,"meta":{"static":true}},{"name":"getLocalTimeZoneOffset","fullName":"Spark.Core.Util.GenTools:getLocalTimeZoneOffset","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-getLocalTimeZoneOffset","sort":3,"meta":{"static":true}},{"name":"encodeURL","fullName":"Spark.Core.Util.GenTools:encodeURL","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-encodeURL","sort":3,"meta":{"static":true}},{"name":"encodeURL","fullName":"Spark.Core.Util.GenTools:encodeURL","icon":"icon-method","url":"#!/class/Spark.Core.Util.GenTools-method-encodeURL","sort":3,"meta":{"static":true}},{"name":"Logger","fullName":"Spark.Diagnostic.Util.Logger","icon":"icon-class","url":"#!/class/Spark.Diagnostic.Util.Logger","sort":1,"meta":{"abstract":true}},{"name":"oLogger","fullName":"Spark.Diagnostic.Util.Logger:oLogger","icon":"icon-property","url":"#!/class/Spark.Diagnostic.Util.Logger-property-oLogger","sort":3,"meta":{"protected":true}},{"name":"SessionScope","fullName":"Spark.Core.Util.SessionScope","icon":"icon-class","url":"#!/class/Spark.Core.Util.SessionScope","sort":1,"meta":{}},{"name":"SessionScope","fullName":"Spark.Core.Util.SessionScope:SessionScope","icon":"icon-constructor","url":"#!/class/Spark.Core.Util.SessionScope-constructor-SessionScope","sort":3,"meta":{}},{"name":"StateLifeCycleEnum","fullName":"Spark.Core.Manager.StateLifeCycleEnum","icon":"icon-class","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum","sort":1,"meta":{"final":true}},{"name":"StateLifeCycleEnum","fullName":"Spark.Core.Manager.StateLifeCycleEnum:StateLifeCycleEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-constructor-StateLifeCycleEnum","sort":3,"meta":{"static":true}},{"name":"StateLifeCycleEnum","fullName":"Spark.Core.Manager.StateLifeCycleEnum:StateLifeCycleEnum","icon":"icon-constructor","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-constructor-StateLifeCycleEnum","sort":3,"meta":{"private":true}},{"name":"application","fullName":"Spark.Core.Manager.StateLifeCycleEnum:application","icon":"icon-property","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-application","sort":3,"meta":{"static":true}},{"name":"session","fullName":"Spark.Core.Manager.StateLifeCycleEnum:session","icon":"icon-property","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-session","sort":3,"meta":{"static":true}},{"name":"default","fullName":"Spark.Core.Manager.StateLifeCycleEnum:default","icon":"icon-property","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-default","sort":3,"meta":{"static":true}},{"name":"enumFromString","fullName":"Spark.Core.Manager.StateLifeCycleEnum:enumFromString","icon":"icon-method","url":"#!/class/Spark.Core.Manager.StateLifeCycleEnum-method-enumFromString","sort":3,"meta":{"static":true}},{"name":"Password","fullName":"Spark.Core.Security.Password","icon":"icon-class","url":"#!/class/Spark.Core.Security.Password","sort":1,"meta":{"final":true}},{"name":"createCode","fullName":"Spark.Core.Security.Password:createCode","icon":"icon-method","url":"#!/class/Spark.Core.Security.Password-method-createCode","sort":3,"meta":{"static":true}},{"name":"checkPassword","fullName":"Spark.Core.Security.Password:checkPassword","icon":"icon-method","url":"#!/class/Spark.Core.Security.Password-method-checkPassword","sort":3,"meta":{"static":true}},{"name":"encodePassword","fullName":"Spark.Core.Security.Password:encodePassword","icon":"icon-method","url":"#!/class/Spark.Core.Security.Password-method-encodePassword","sort":3,"meta":{"static":true}},{"name":"IDynamicResource","fullName":"Spark.Core.Service.IDynamicResource","icon":"icon-interface","url":"#!/class/Spark.Core.Service.IDynamicResource","sort":1,"meta":{}},{"name":"oContextMessage","fullName":"Spark.Core.Service.IDynamicResource:oContextMessage","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicResource-property-oContextMessage","sort":3,"meta":{}},{"name":"serviceURI","fullName":"Spark.Core.Service.IDynamicResource:serviceURI","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicResource-property-serviceURI","sort":3,"meta":{}},{"name":"resourceName","fullName":"Spark.Core.Service.IDynamicResource:resourceName","icon":"icon-property","url":"#!/class/Spark.Core.Service.IDynamicResource-property-resourceName","sort":3,"meta":{}},{"name":"IClientContext","fullName":"Spark.Core.Manager.IClientContext","icon":"icon-interface","url":"#!/class/Spark.Core.Manager.IClientContext","sort":1,"meta":{}},{"name":"userDomain","fullName":"Spark.Core.Manager.IClientContext:userDomain","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IClientContext-property-userDomain","sort":3,"meta":{}},{"name":"userID","fullName":"Spark.Core.Manager.IClientContext:userID","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IClientContext-property-userID","sort":3,"meta":{}},{"name":"userExtra","fullName":"Spark.Core.Manager.IClientContext:userExtra","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IClientContext-property-userExtra","sort":3,"meta":{}},{"name":"loginExpiration","fullName":"Spark.Core.Manager.IClientContext:loginExpiration","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IClientContext-property-loginExpiration","sort":3,"meta":{}},{"name":"activityPassword","fullName":"Spark.Core.Manager.IClientContext:activityPassword","icon":"icon-property","url":"#!/class/Spark.Core.Manager.IClientContext-property-activityPassword","sort":3,"meta":{}},{"name":"hasUserProperty","fullName":"Spark.Core.Manager.IClientContext:hasUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-hasUserProperty","sort":3,"meta":{}},{"name":"getUserProperties","fullName":"Spark.Core.Manager.IClientContext:getUserProperties","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserProperties","sort":3,"meta":{}},{"name":"getUserPropertyArray","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyArray","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyArray","sort":3,"meta":{}},{"name":"getUserPropertyArray","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyArray","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyArray","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsChar","fullName":"Spark.Core.Manager.IClientContext:getUserArrayPropertyAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsChar","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsDec","fullName":"Spark.Core.Manager.IClientContext:getUserArrayPropertyAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsDec","sort":3,"meta":{}},{"name":"getUserArrayPropertyAsInt","fullName":"Spark.Core.Manager.IClientContext:getUserArrayPropertyAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsInt","sort":3,"meta":{}},{"name":"getUserProperty","fullName":"Spark.Core.Manager.IClientContext:getUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserProperty","sort":3,"meta":{}},{"name":"getUserPropertyAsChar","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsChar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsChar","sort":3,"meta":{}},{"name":"getUserPropertyAsLongchar","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsLongchar","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsLongchar","sort":3,"meta":{}},{"name":"getUserPropertyAsInt","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsInt","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsInt","sort":3,"meta":{}},{"name":"getUserPropertyAsInt64","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsInt64","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsInt64","sort":3,"meta":{}},{"name":"getUserPropertyAsDec","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsDec","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDec","sort":3,"meta":{}},{"name":"getUserPropertyAsLog","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsLog","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsLog","sort":3,"meta":{}},{"name":"getUserPropertyAsDate","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsDate","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDate","sort":3,"meta":{}},{"name":"getUserPropertyAsDatetime","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsDatetime","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDatetime","sort":3,"meta":{}},{"name":"getUserPropertyAsDatetimeTz","fullName":"Spark.Core.Manager.IClientContext:getUserPropertyAsDatetimeTz","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDatetimeTz","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"setUserProperty","fullName":"Spark.Core.Manager.IClientContext:setUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty","sort":3,"meta":{}},{"name":"removeUserProperty","fullName":"Spark.Core.Manager.IClientContext:removeUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-removeUserProperty","sort":3,"meta":{}},{"name":"initializeUserProperty","fullName":"Spark.Core.Manager.IClientContext:initializeUserProperty","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-initializeUserProperty","sort":3,"meta":{}},{"name":"invalidateContext","fullName":"Spark.Core.Manager.IClientContext:invalidateContext","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-invalidateContext","sort":3,"meta":{}},{"name":"setActivityPassword","fullName":"Spark.Core.Manager.IClientContext:setActivityPassword","icon":"icon-method","url":"#!/class/Spark.Core.Manager.IClientContext-method-setActivityPassword","sort":3,"meta":{}},{"name":"OperationEnum","fullName":"Spark.Core.Util.OperationEnum","icon":"icon-enum","url":"#!/class/Spark.Core.Util.OperationEnum","sort":1,"meta":{}},{"name":"read","fullName":"Spark.Core.Util.OperationEnum:read","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-read","sort":3,"meta":{}},{"name":"create","fullName":"Spark.Core.Util.OperationEnum:create","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-create","sort":3,"meta":{}},{"name":"update","fullName":"Spark.Core.Util.OperationEnum:update","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-update","sort":3,"meta":{}},{"name":"delete","fullName":"Spark.Core.Util.OperationEnum:delete","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-delete","sort":3,"meta":{}},{"name":"submit","fullName":"Spark.Core.Util.OperationEnum:submit","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-submit","sort":3,"meta":{}},{"name":"invoke","fullName":"Spark.Core.Util.OperationEnum:invoke","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-invoke","sort":3,"meta":{}},{"name":"count","fullName":"Spark.Core.Util.OperationEnum:count","icon":"icon-property","url":"#!/class/Spark.Core.Util.OperationEnum-property-count","sort":3,"meta":{}},{"name":"Assert","fullName":"OpenEdge.Core.Assert","icon":"icon-class","url":"#!/class/OpenEdge.Core.Assert","sort":1,"meta":{}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"Equals","fullName":"OpenEdge.Core.Assert:Equals","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-Equals","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"NotEqual","fullName":"OpenEdge.Core.Assert:NotEqual","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEqual","sort":3,"meta":{"static":true}},{"name":"IsTrue","fullName":"OpenEdge.Core.Assert:IsTrue","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsTrue","sort":3,"meta":{"static":true}},{"name":"IsFalse","fullName":"OpenEdge.Core.Assert:IsFalse","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsFalse","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"IsEmpty","fullName":"OpenEdge.Core.Assert:IsEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsEmpty","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"NotEmpty","fullName":"OpenEdge.Core.Assert:NotEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NotNullOrEmpty","fullName":"OpenEdge.Core.Assert:NotNullOrEmpty","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"NonZero","fullName":"OpenEdge.Core.Assert:NonZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NonZero","sort":3,"meta":{"static":true}},{"name":"IsInterface","fullName":"OpenEdge.Core.Assert:IsInterface","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsInterface","sort":3,"meta":{"static":true}},{"name":"NotInterface","fullName":"OpenEdge.Core.Assert:NotInterface","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotInterface","sort":3,"meta":{"static":true}},{"name":"IsAbstract","fullName":"OpenEdge.Core.Assert:IsAbstract","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsAbstract","sort":3,"meta":{"static":true}},{"name":"NotAbstract","fullName":"OpenEdge.Core.Assert:NotAbstract","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotAbstract","sort":3,"meta":{"static":true}},{"name":"IsFinal","fullName":"OpenEdge.Core.Assert:IsFinal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsFinal","sort":3,"meta":{"static":true}},{"name":"NotFinal","fullName":"OpenEdge.Core.Assert:NotFinal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotFinal","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assert:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsType","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assert:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assert:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotType","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assert:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsType","sort":3,"meta":{"static":true}},{"name":"IsType","fullName":"OpenEdge.Core.Assert:IsType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assert:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotType","sort":3,"meta":{"static":true}},{"name":"NotType","fullName":"OpenEdge.Core.Assert:NotType","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotType","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"HasDeterminateExtent","fullName":"OpenEdge.Core.Assert:HasDeterminateExtent","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsIndeterminateArray","fullName":"OpenEdge.Core.Assert:IsIndeterminateArray","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray","sort":3,"meta":{"static":true}},{"name":"IsAvailable","fullName":"OpenEdge.Core.Assert:IsAvailable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsAvailable","sort":3,"meta":{"static":true}},{"name":"IsAvailable","fullName":"OpenEdge.Core.Assert:IsAvailable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsAvailable","sort":3,"meta":{"static":true}},{"name":"NotAvailable","fullName":"OpenEdge.Core.Assert:NotAvailable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotAvailable","sort":3,"meta":{"static":true}},{"name":"NotAvailable","fullName":"OpenEdge.Core.Assert:NotAvailable","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotAvailable","sort":3,"meta":{"static":true}},{"name":"IsInteger","fullName":"OpenEdge.Core.Assert:IsInteger","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsInteger","sort":3,"meta":{"static":true}},{"name":"IsInteger","fullName":"OpenEdge.Core.Assert:IsInteger","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsInteger","sort":3,"meta":{"static":true}},{"name":"IsDecimal","fullName":"OpenEdge.Core.Assert:IsDecimal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsDecimal","sort":3,"meta":{"static":true}},{"name":"IsDecimal","fullName":"OpenEdge.Core.Assert:IsDecimal","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsDecimal","sort":3,"meta":{"static":true}},{"name":"IsInt64","fullName":"OpenEdge.Core.Assert:IsInt64","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsInt64","sort":3,"meta":{"static":true}},{"name":"IsInt64","fullName":"OpenEdge.Core.Assert:IsInt64","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsInt64","sort":3,"meta":{"static":true}},{"name":"IsTrue","fullName":"OpenEdge.Core.Assert:IsTrue","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsTrue","sort":3,"meta":{"static":true}},{"name":"IsFalse","fullName":"OpenEdge.Core.Assert:IsFalse","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsFalse","sort":3,"meta":{"static":true}},{"name":"IsUnknown","fullName":"OpenEdge.Core.Assert:IsUnknown","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsUnknown","sort":3,"meta":{"static":true}},{"name":"IsUnknown","fullName":"OpenEdge.Core.Assert:IsUnknown","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsUnknown","sort":3,"meta":{"static":true}},{"name":"NotTrue","fullName":"OpenEdge.Core.Assert:NotTrue","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotTrue","sort":3,"meta":{"static":true}},{"name":"NotTrue","fullName":"OpenEdge.Core.Assert:NotTrue","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotTrue","sort":3,"meta":{"static":true}},{"name":"NotFalse","fullName":"OpenEdge.Core.Assert:NotFalse","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotFalse","sort":3,"meta":{"static":true}},{"name":"NotFalse","fullName":"OpenEdge.Core.Assert:NotFalse","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotFalse","sort":3,"meta":{"static":true}},{"name":"NotUnknown","fullName":"OpenEdge.Core.Assert:NotUnknown","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotUnknown","sort":3,"meta":{"static":true}},{"name":"NotUnknown","fullName":"OpenEdge.Core.Assert:NotUnknown","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotUnknown","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"NotNull","fullName":"OpenEdge.Core.Assert:NotNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"IsNull","fullName":"OpenEdge.Core.Assert:IsNull","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNull","sort":3,"meta":{"static":true}},{"name":"NotNullOrZero","fullName":"OpenEdge.Core.Assert:NotNullOrZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrZero","sort":3,"meta":{"static":true}},{"name":"NotNullOrZero","fullName":"OpenEdge.Core.Assert:NotNullOrZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotNullOrZero","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"NotZero","fullName":"OpenEdge.Core.Assert:NotZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotZero","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsZero","fullName":"OpenEdge.Core.Assert:IsZero","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZero","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsNegative","fullName":"OpenEdge.Core.Assert:IsNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsNegative","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsPositive","fullName":"OpenEdge.Core.Assert:IsPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrNegative","fullName":"OpenEdge.Core.Assert:IsZeroOrNegative","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"IsZeroOrPositive","fullName":"OpenEdge.Core.Assert:IsZeroOrPositive","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive","sort":3,"meta":{"static":true}},{"name":"IsLogical","fullName":"OpenEdge.Core.Assert:IsLogical","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsLogical","sort":3,"meta":{"static":true}},{"name":"IsLogical","fullName":"OpenEdge.Core.Assert:IsLogical","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsLogical","sort":3,"meta":{"static":true}},{"name":"IsLogical","fullName":"OpenEdge.Core.Assert:IsLogical","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsLogical","sort":3,"meta":{"static":true}},{"name":"RaiseError","fullName":"OpenEdge.Core.Assert:RaiseError","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-RaiseError","sort":3,"meta":{"static":true}},{"name":"IsIn","fullName":"OpenEdge.Core.Assert:IsIn","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIn","sort":3,"meta":{"static":true}},{"name":"IsIn","fullName":"OpenEdge.Core.Assert:IsIn","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-IsIn","sort":3,"meta":{"static":true}},{"name":"NotIn","fullName":"OpenEdge.Core.Assert:NotIn","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotIn","sort":3,"meta":{"static":true}},{"name":"NotIn","fullName":"OpenEdge.Core.Assert:NotIn","icon":"icon-method","url":"#!/class/OpenEdge.Core.Assert-method-NotIn","sort":3,"meta":{"static":true}},{"name":"Catalog","fullName":"Spark.Core.Service.Catalog","icon":"icon-class","url":"#!/class/Spark.Core.Service.Catalog","sort":1,"meta":{}},{"name":"initialize","fullName":"Spark.Core.Service.Catalog:initialize","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-initialize","sort":3,"meta":{}},{"name":"dispose","fullName":"Spark.Core.Service.Catalog:dispose","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-dispose","sort":3,"meta":{}},{"name":"Discovery","fullName":"Spark.Core.Service.Catalog:Discovery","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-Discovery","sort":3,"meta":{"protected":true}},{"name":"getDataObjectServiceCatalogs","fullName":"Spark.Core.Service.Catalog:getDataObjectServiceCatalogs","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-getDataObjectServiceCatalogs","sort":3,"meta":{"protected":true}},{"name":"getOpenApiCatalog","fullName":"Spark.Core.Service.Catalog:getOpenApiCatalog","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-getOpenApiCatalog","sort":3,"meta":{}},{"name":"getCatalog","fullName":"Spark.Core.Service.Catalog:getCatalog","icon":"icon-method","url":"#!/class/Spark.Core.Service.Catalog-method-getCatalog","sort":3,"meta":{}},{"name":"ConfigMessage","fullName":"Spark.Core.Message.ConfigMessage","icon":"icon-class","url":"#!/class/Spark.Core.Message.ConfigMessage","sort":1,"meta":{}},{"name":"ConfigMessage","fullName":"Spark.Core.Message.ConfigMessage:ConfigMessage","icon":"icon-constructor","url":"#!/class/Spark.Core.Message.ConfigMessage-constructor-ConfigMessage","sort":3,"meta":{}},{"name":"deserializeMessageFromFile","fullName":"Spark.Core.Message.ConfigMessage:deserializeMessageFromFile","icon":"icon-method","url":"#!/class/Spark.Core.Message.ConfigMessage-method-deserializeMessageFromFile","sort":3,"meta":{"override":true}},{"name":"deserializeMessage","fullName":"Spark.Core.Message.ConfigMessage:deserializeMessage","icon":"icon-method","url":"#!/class/Spark.Core.Message.ConfigMessage-method-deserializeMessage","sort":3,"meta":{"override":true}},{"name":"storeProperties","fullName":"Spark.Core.Message.ConfigMessage:storeProperties","icon":"icon-method","url":"#!/class/Spark.Core.Message.ConfigMessage-method-storeProperties","sort":3,"meta":{"protected":true,"override":true}}],"signatures":[{"long":"private","short":"PRI","tagname":"private"},{"long":"protected","short":"PRO","tagname":"protected"},{"long":"static","short":"STA","tagname":"static"},{"long":"abstract","short":"ABS","tagname":"abstract"},{"long":"override","short":"OVR","tagname":"override"},{"long":"final","short":"FIN","tagname":"final"},{"long":"super","short":"SUP","tagname":"super"},{"long":"new","short":"NEW","tagname":"new"},{"long":"global","short":"GLO","tagname":"global"},{"long":"shared","short":"SHA","tagname":"shared"},{"long":"noundo","short":"N-U","tagname":"noundo"},{"long":"internal","short":"INT","tagname":"internal"},{"long":"deprecated","short":"DEP","tagname":"deprecated"}],"memberTypes":[{"name":"constructor","title":"Constructors","icon":"icons/event.png","position":1},{"name":"destructor","title":"Destructors","icon":"icons/event.png","position":2},{"name":"event","title":"Events","icon":"icons/event.png","position":3},{"name":"property","title":"Properties","icon":"icons/property.png","position":4},{"name":"method","title":"Methods","icon":"icons/method.png","position":5},{"name":"procedure","title":"Procedures","icon":"icons/method.png","position":6},{"name":"function","title":"Functions","icon":"icons/method.png","position":7},{"name":"temptable","title":"Temp Tables","icon":"icons/property.png","position":8},{"name":"dataset","title":"Datasets","icon":"icons/property.png","position":9}]}} \ No newline at end of file +Docs = { + "data": { + "guides": [], + "videos": [], + "examples": [], + "guideSearch": {}, + "localStorageDb": "docs", + "message": "", + "tests": false, + "showPrintButton": false, + "source": false, + "classes": [ + { + "name": "Spark.Core.Manager.IConnectionManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Message.IConfigMessage", + "extends": "Spark.Core.Message.IAbstractMessage", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.LongcharInputStream", + "extends": "Progress.IO.InputStream", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.SessionAttributeEnum", + "extends": "Progress.Lang.Enum", + "icon": "icon-enum" + }, + { + "name": "OpenEdge.Core.Assertion.AssertObject", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.DataSetTools", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.FormatTools", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Message.IContextMessage", + "extends": "Spark.Core.Message.IAbstractMessage", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.BusinessLogic.QueryGroup", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.IStateManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Manager.StartupManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ISessionManager", + "extends": "Ccs.Common.ISessionManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Service.IDynamicEntity", + "extends": "Ccs.Common.IService", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.ApplicationError", + "extends": "Progress.Lang.AppError", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.GetDataRequest", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum", + "extends": "Spark.Core.Util.EnumMember", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.FilterParser", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Convert", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.MethodSignature", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.IO.QueryEntryDeserializer", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Binary", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.HOTP", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.Manager", + "extends": "Spark.Core.Service.Service", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.Util.MathUtil", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ITranslationManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.BusinessLogic.GetDataTableResponse", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.StateManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.IAuthHandler", + "extends": "", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.Annotate", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Message.AbstractMessage", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.IServiceManager", + "extends": "Ccs.Common.IServiceManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Manager.TranslationManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.DynamicResource", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ConnectionManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.LifecycleScope", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Handler.StatusHandler", + "extends": "OpenEdge.Web.WebHandler", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Sendmail", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.QueryDefinition", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.GetResultCountResponse", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.QueryOperatorHelper", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.UpdateModeEnum", + "extends": "Progress.Lang.Enum", + "icon": "icon-enum" + }, + { + "name": "Spark.Core.Manager.ISchemaManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Manager.CatalogManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.EnumValueMember", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.UpdateDataRequest", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.CryptoEncryptAlgorithmEnum", + "extends": "Spark.Core.Util.EnumMember", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.LongcharOutputStream", + "extends": "Progress.IO.OutputStream", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ILoggingManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.ErrorTypeEnum", + "extends": "Spark.Core.Util.EnumMember", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Query.QueryBuilder", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Reflection", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Handler.DOHEventHandler", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Message.IAbstractMessage", + "extends": "", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.BusinessLogic.NamedQuery", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.EnumNameMember", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.LoggingManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Constant.OERealmDefs", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.AblFilterParser", + "extends": "OpenEdge.BusinessLogic.Filter.FilterParser", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.OSTools", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.JfpFilterParser", + "extends": "OpenEdge.BusinessLogic.Filter.AblFilterParser", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.StopError", + "extends": "Spark.Core.Util.ApplicationError", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.KendoFilterParser", + "extends": "OpenEdge.BusinessLogic.Filter.FilterParser", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.EnumNameDescMember", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.Service", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.FilterParserRegistry", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.RequestScope", + "extends": "Spark.Core.Util.LifecycleScope", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.TimeOutError", + "extends": "Spark.Core.Util.ApplicationError", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.SessionManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ServiceLifeCycleEnum", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.TransientScope", + "extends": "Spark.Core.Util.LifecycleScope", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum", + "extends": "Progress.Lang.Enum", + "icon": "icon-enum" + }, + { + "name": "OpenEdge.BusinessLogic.GetDataTableRequest", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.String", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ICatalogManager", + "extends": "Ccs.Common.IManager", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.Core.Util.AnnotationWriter", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.GetTableResultCountResponse", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.NamedQueryParameter", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.ForeignKey", + "extends": "Progress.Json.ObjectModel.JsonObject", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.Json.JsonConverter", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.Json.JsonSerializer", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Serialize", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.Util.UTF8Encoder", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.ContainerScope", + "extends": "Spark.Core.Util.LifecycleScope", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.ISparkEntity", + "extends": "Ccs.BusinessLogic.IUpdatableBusinessEntity", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.BusinessLogic.BusinessEntity", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ServiceManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder", + "extends": "OpenEdge.Core.Util.ConfigBuilder", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.ClientContext", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Message.ContextMessage", + "extends": "Spark.Core.Message.AbstractMessage", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.EnumMember", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.FieldInfo", + "extends": "Progress.Json.ObjectModel.JsonObject", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.SchemaManager", + "extends": "Spark.Core.Manager.Manager", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.TOTP", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.QuerySortEntry", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.HMAC", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Base32", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Timer", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.Json.IJsonSerializer", + "extends": "", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.CryptoTools", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.ICatalog", + "extends": "Ccs.Common.IService", + "icon": "icon-interface" + }, + { + "name": "OpenEdge.BusinessLogic.GetDataResponse", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.IStartupManager", + "extends": "Ccs.Common.IStartupManager", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.OSPath", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.OEUserRealm", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.DynamicEntity", + "extends": "Spark.Core.Service.SparkEntity", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.Strings", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.BusinessLogic.QueryPredicate", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.MemptrInputStream", + "extends": "Progress.IO.MemoryInputStream", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.DynamicCaller", + "extends": "", + "icon": "icon-class" + }, + { + "name": "OpenEdge.Core.MemptrOutputStream", + "extends": "Progress.IO.MemoryOutputStream", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.SparkEntity", + "extends": "OpenEdge.BusinessLogic.BusinessEntity", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.GenTools", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Util.SessionScope", + "extends": "Spark.Core.Util.LifecycleScope", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Manager.StateLifeCycleEnum", + "extends": "Spark.Core.Util.EnumMember", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Security.Password", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.IDynamicResource", + "extends": "Ccs.Common.IService", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Manager.IClientContext", + "extends": "Ccs.Common.IClientContext", + "icon": "icon-interface" + }, + { + "name": "Spark.Core.Util.OperationEnum", + "extends": "Progress.Lang.Enum", + "icon": "icon-enum" + }, + { + "name": "OpenEdge.Core.Assert", + "extends": "", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Service.Catalog", + "extends": "Spark.Core.Util.OSPath", + "icon": "icon-class" + }, + { + "name": "Spark.Core.Message.ConfigMessage", + "extends": "Spark.Core.Message.AbstractMessage", + "icon": "icon-class" + } + ], + "procedures": [ + { + "name": "Spark/shutdown.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/Interface/StartTrackingObjects.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/metrics_activate.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/metrics_deactivate.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/metrics_shutdown.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/Interface/PrepareSessionReports.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/startup.p", + "icon": "icon-procedure" + }, + { + "name": "Spark/Diagnostic/metrics_startup.p", + "icon": "icon-procedure" + } + ], + "search": [ + { + "name": "shutdown.p", + "fullName": "Spark/shutdown.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/shutdown.p", + "sort": 1, + "meta": {} + }, + { + "name": "logObjects", + "fullName": "Spark/shutdown.p:logObjects", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/shutdown.p-procedure-logObjects", + "sort": 3, + "meta": {} + }, + { + "name": "logMessage", + "fullName": "Spark/shutdown.p:logMessage", + "icon": "icon-function", + "url": "#!/procedure/Spark/shutdown.p-function-logMessage", + "sort": 3, + "meta": {} + }, + { + "name": "logError", + "fullName": "Spark/shutdown.p:logError", + "icon": "icon-function", + "url": "#!/procedure/Spark/shutdown.p-function-logError", + "sort": 3, + "meta": {} + }, + { + "name": "ttServerObjects", + "fullName": "Spark/shutdown.p:ttServerObjects", + "icon": "icon-temptable", + "url": "#!/procedure/Spark/shutdown.p-temptable-ttServerObjects", + "sort": 3, + "meta": {} + }, + { + "name": "StartTrackingObjects.p", + "fullName": "Spark/Diagnostic/Interface/StartTrackingObjects.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/Interface/StartTrackingObjects.p", + "sort": 1, + "meta": {} + }, + { + "name": "metrics_activate.p", + "fullName": "Spark/Diagnostic/metrics_activate.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/metrics_activate.p", + "sort": 1, + "meta": {} + }, + { + "name": "metrics_deactivate.p", + "fullName": "Spark/Diagnostic/metrics_deactivate.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/metrics_deactivate.p", + "sort": 1, + "meta": {} + }, + { + "name": "metrics_shutdown.p", + "fullName": "Spark/Diagnostic/metrics_shutdown.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/metrics_shutdown.p", + "sort": 1, + "meta": {} + }, + { + "name": "PrepareSessionReports.p", + "fullName": "Spark/Diagnostic/Interface/PrepareSessionReports.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/Interface/PrepareSessionReports.p", + "sort": 1, + "meta": {} + }, + { + "name": "startup.p", + "fullName": "Spark/startup.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/startup.p", + "sort": 1, + "meta": {} + }, + { + "name": "getStartupParams", + "fullName": "Spark/startup.p:getStartupParams", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/startup.p-procedure-getStartupParams", + "sort": 3, + "meta": {} + }, + { + "name": "logMessage", + "fullName": "Spark/startup.p:logMessage", + "icon": "icon-function", + "url": "#!/procedure/Spark/startup.p-function-logMessage", + "sort": 3, + "meta": {} + }, + { + "name": "logError", + "fullName": "Spark/startup.p:logError", + "icon": "icon-function", + "url": "#!/procedure/Spark/startup.p-function-logError", + "sort": 3, + "meta": {} + }, + { + "name": "metrics_startup.p", + "fullName": "Spark/Diagnostic/metrics_startup.p", + "icon": "icon-procedure", + "url": "#!/procedure/Spark/Diagnostic/metrics_startup.p", + "sort": 1, + "meta": {} + }, + { + "name": "IConnectionManager", + "fullName": "Spark.Core.Manager.IConnectionManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.IConnectionManager", + "sort": 1, + "meta": {} + }, + { + "name": "getServer", + "fullName": "Spark.Core.Manager.IConnectionManager:getServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-getServer", + "sort": 3, + "meta": {} + }, + { + "name": "stopLifeCycle", + "fullName": "Spark.Core.Manager.IConnectionManager:stopLifeCycle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-stopLifeCycle", + "sort": 3, + "meta": {} + }, + { + "name": "stopServer", + "fullName": "Spark.Core.Manager.IConnectionManager:stopServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-stopServer", + "sort": 3, + "meta": {} + }, + { + "name": "reconnectServer", + "fullName": "Spark.Core.Manager.IConnectionManager:reconnectServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-reconnectServer", + "sort": 3, + "meta": {} + }, + { + "name": "validContext", + "fullName": "Spark.Core.Manager.IConnectionManager:validContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-validContext", + "sort": 3, + "meta": {} + }, + { + "name": "getConnectionParam", + "fullName": "Spark.Core.Manager.IConnectionManager:getConnectionParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-getConnectionParam", + "sort": 3, + "meta": {} + }, + { + "name": "getProcHandle", + "fullName": "Spark.Core.Manager.IConnectionManager:getProcHandle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IConnectionManager-method-getProcHandle", + "sort": 3, + "meta": {} + }, + { + "name": "IConfigMessage", + "fullName": "Spark.Core.Message.IConfigMessage", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Message.IConfigMessage", + "sort": 1, + "meta": {} + }, + { + "name": "deserializeMessageFromFile", + "fullName": "Spark.Core.Message.IConfigMessage:deserializeMessageFromFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IConfigMessage-method-deserializeMessageFromFile", + "sort": 3, + "meta": {} + }, + { + "name": "deserializeMessage", + "fullName": "Spark.Core.Message.IConfigMessage:deserializeMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IConfigMessage-method-deserializeMessage", + "sort": 3, + "meta": {} + }, + { + "name": "LongcharInputStream", + "fullName": "Spark.Core.Util.LongcharInputStream", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.LongcharInputStream", + "sort": 1, + "meta": {} + }, + { + "name": "StreamData", + "fullName": "Spark.Core.Util.LongcharInputStream:StreamData", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.LongcharInputStream-property-StreamData", + "sort": 3, + "meta": {} + }, + { + "name": "Read", + "fullName": "Spark.Core.Util.LongcharInputStream:Read", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharInputStream-method-Read", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Read", + "fullName": "Spark.Core.Util.LongcharInputStream:Read", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharInputStream-method-Read", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Read", + "fullName": "Spark.Core.Util.LongcharInputStream:Read", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharInputStream-method-Read", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "SessionAttributeEnum", + "fullName": "Spark.Core.Manager.SessionAttributeEnum", + "icon": "icon-enum", + "url": "#!/class/Spark.Core.Manager.SessionAttributeEnum", + "sort": 1, + "meta": {} + }, + { + "name": "timezoneOffset", + "fullName": "Spark.Core.Manager.SessionAttributeEnum:timezoneOffset", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SessionAttributeEnum-property-timezoneOffset", + "sort": 3, + "meta": {} + }, + { + "name": "dateFormat", + "fullName": "Spark.Core.Manager.SessionAttributeEnum:dateFormat", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SessionAttributeEnum-property-dateFormat", + "sort": 3, + "meta": {} + }, + { + "name": "numericDecimalPoint", + "fullName": "Spark.Core.Manager.SessionAttributeEnum:numericDecimalPoint", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SessionAttributeEnum-property-numericDecimalPoint", + "sort": 3, + "meta": {} + }, + { + "name": "numericSeparator", + "fullName": "Spark.Core.Manager.SessionAttributeEnum:numericSeparator", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SessionAttributeEnum-property-numericSeparator", + "sort": 3, + "meta": {} + }, + { + "name": "AssertObject", + "fullName": "OpenEdge.Core.Assertion.AssertObject", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject", + "sort": 1, + "meta": {} + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assertion.AssertObject:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInterface", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsInterface", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsInterface", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotInterface", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotInterface", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotInterface", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsAbstract", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsAbstract", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsAbstract", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotAbstract", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotAbstract", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotAbstract", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsFinal", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsFinal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsFinal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotFinal", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotFinal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotFinal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assertion.AssertObject:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assertion.AssertObject:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsSerializable", + "fullName": "OpenEdge.Core.Assertion.AssertObject:IsSerializable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-IsSerializable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotSerializable", + "fullName": "OpenEdge.Core.Assertion.AssertObject:NotSerializable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assertion.AssertObject-method-NotSerializable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "DataSetTools", + "fullName": "Spark.Core.Util.DataSetTools", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.DataSetTools", + "sort": 1, + "meta": {} + }, + { + "name": "emptyDataSet", + "fullName": "Spark.Core.Util.DataSetTools:emptyDataSet", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DataSetTools-method-emptyDataSet", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "resetAsNew", + "fullName": "Spark.Core.Util.DataSetTools:resetAsNew", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DataSetTools-method-resetAsNew", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "setTrackingChanges", + "fullName": "Spark.Core.Util.DataSetTools:setTrackingChanges", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DataSetTools-method-setTrackingChanges", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "FormatTools", + "fullName": "Spark.Core.Util.FormatTools", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.FormatTools", + "sort": 1, + "meta": {} + }, + { + "name": "screenToDate", + "fullName": "Spark.Core.Util.FormatTools:screenToDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToDate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToDateTime", + "fullName": "Spark.Core.Util.FormatTools:screenToDateTime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToDateTime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToDateTimeTz", + "fullName": "Spark.Core.Util.FormatTools:screenToDateTimeTz", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToDateTimeTz", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToDateRange", + "fullName": "Spark.Core.Util.FormatTools:screenToDateRange", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToDateRange", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToLog", + "fullName": "Spark.Core.Util.FormatTools:screenToLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToLog", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToInt", + "fullName": "Spark.Core.Util.FormatTools:screenToInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToInt", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToInt64", + "fullName": "Spark.Core.Util.FormatTools:screenToInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToInt64", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToDec", + "fullName": "Spark.Core.Util.FormatTools:screenToDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToDec", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "screenToRowid", + "fullName": "Spark.Core.Util.FormatTools:screenToRowid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-screenToRowid", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2DateTZ", + "fullName": "Spark.Core.Util.FormatTools:iso2DateTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2DateTZ", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2DateTZ", + "fullName": "Spark.Core.Util.FormatTools:iso2DateTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2DateTZ", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2DateTime", + "fullName": "Spark.Core.Util.FormatTools:iso2DateTime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2DateTime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2DateTime", + "fullName": "Spark.Core.Util.FormatTools:iso2DateTime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2DateTime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2Date", + "fullName": "Spark.Core.Util.FormatTools:iso2Date", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2Date", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "iso2Date", + "fullName": "Spark.Core.Util.FormatTools:iso2Date", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-iso2Date", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "decimalOf", + "fullName": "Spark.Core.Util.FormatTools:decimalOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-decimalOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "integerOf", + "fullName": "Spark.Core.Util.FormatTools:integerOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-integerOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "int64Of", + "fullName": "Spark.Core.Util.FormatTools:int64Of", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-int64Of", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "logicalOf", + "fullName": "Spark.Core.Util.FormatTools:logicalOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-logicalOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "dateOf", + "fullName": "Spark.Core.Util.FormatTools:dateOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-dateOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "datetimeOf", + "fullName": "Spark.Core.Util.FormatTools:datetimeOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-datetimeOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "datetime-tzOf", + "fullName": "Spark.Core.Util.FormatTools:datetime-tzOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-datetime-tzOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "rowidOf", + "fullName": "Spark.Core.Util.FormatTools:rowidOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-rowidOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "recidOf", + "fullName": "Spark.Core.Util.FormatTools:recidOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-recidOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "rawOf", + "fullName": "Spark.Core.Util.FormatTools:rawOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-rawOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringOf", + "fullName": "Spark.Core.Util.FormatTools:stringOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-stringOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "memptrOf", + "fullName": "Spark.Core.Util.FormatTools:memptrOf", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-memptrOf", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsLongDate", + "fullName": "Spark.Core.Util.FormatTools:formatAsLongDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsLongDatetime", + "fullName": "Spark.Core.Util.FormatTools:formatAsLongDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDatetime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsLongDate", + "fullName": "Spark.Core.Util.FormatTools:formatAsLongDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsAbbreviatedLongDate", + "fullName": "Spark.Core.Util.FormatTools:formatAsAbbreviatedLongDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsAbbreviatedLongDate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsLongDatetime", + "fullName": "Spark.Core.Util.FormatTools:formatAsLongDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsLongDatetime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "formatAsAbbreviatedLongDatetime", + "fullName": "Spark.Core.Util.FormatTools:formatAsAbbreviatedLongDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-formatAsAbbreviatedLongDatetime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "convertToUTF8", + "fullName": "Spark.Core.Util.FormatTools:convertToUTF8", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-convertToUTF8", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getDateFromMetaData", + "fullName": "Spark.Core.Util.FormatTools:getDateFromMetaData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FormatTools-method-getDateFromMetaData", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IContextMessage", + "fullName": "Spark.Core.Message.IContextMessage", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Message.IContextMessage", + "sort": 1, + "meta": {} + }, + { + "name": "ContextPropName", + "fullName": "Spark.Core.Message.IContextMessage:ContextPropName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.IContextMessage-property-ContextPropName", + "sort": 3, + "meta": {} + }, + { + "name": "ReturnValueName", + "fullName": "Spark.Core.Message.IContextMessage:ReturnValueName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.IContextMessage-property-ReturnValueName", + "sort": 3, + "meta": {} + }, + { + "name": "ReturnValue", + "fullName": "Spark.Core.Message.IContextMessage:ReturnValue", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.IContextMessage-property-ReturnValue", + "sort": 3, + "meta": {} + }, + { + "name": "addMessage", + "fullName": "Spark.Core.Message.IContextMessage:addMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-addMessage", + "sort": 3, + "meta": {} + }, + { + "name": "addMessage", + "fullName": "Spark.Core.Message.IContextMessage:addMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-addMessage", + "sort": 3, + "meta": {} + }, + { + "name": "setContextPropName", + "fullName": "Spark.Core.Message.IContextMessage:setContextPropName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-setContextPropName", + "sort": 3, + "meta": {} + }, + { + "name": "setReturnValueName", + "fullName": "Spark.Core.Message.IContextMessage:setReturnValueName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-setReturnValueName", + "sort": 3, + "meta": {} + }, + { + "name": "getMessageArray", + "fullName": "Spark.Core.Message.IContextMessage:getMessageArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-getMessageArray", + "sort": 3, + "meta": {} + }, + { + "name": "hasAnyMessages", + "fullName": "Spark.Core.Message.IContextMessage:hasAnyMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-hasAnyMessages", + "sort": 3, + "meta": {} + }, + { + "name": "hasInformation", + "fullName": "Spark.Core.Message.IContextMessage:hasInformation", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-hasInformation", + "sort": 3, + "meta": {} + }, + { + "name": "hasWarnings", + "fullName": "Spark.Core.Message.IContextMessage:hasWarnings", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-hasWarnings", + "sort": 3, + "meta": {} + }, + { + "name": "hasErrors", + "fullName": "Spark.Core.Message.IContextMessage:hasErrors", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-hasErrors", + "sort": 3, + "meta": {} + }, + { + "name": "removeWarningMessages", + "fullName": "Spark.Core.Message.IContextMessage:removeWarningMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-removeWarningMessages", + "sort": 3, + "meta": {} + }, + { + "name": "removeMessages", + "fullName": "Spark.Core.Message.IContextMessage:removeMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IContextMessage-method-removeMessages", + "sort": 3, + "meta": {} + }, + { + "name": "QueryGroup", + "fullName": "OpenEdge.BusinessLogic.QueryGroup", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup", + "sort": 1, + "meta": {} + }, + { + "name": "QueryGroup", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:QueryGroup", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-constructor-QueryGroup", + "sort": 3, + "meta": {} + }, + { + "name": "QueryGroup", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:QueryGroup", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-constructor-QueryGroup", + "sort": 3, + "meta": {} + }, + { + "name": "Entries", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:Entries", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-property-Entries", + "sort": 3, + "meta": {} + }, + { + "name": "Join", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:Join", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-property-Join", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.QueryGroup:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryGroup-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "IStateManager", + "fullName": "Spark.Core.Manager.IStateManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.IStateManager", + "sort": 1, + "meta": {} + }, + { + "name": "readContextFromStore", + "fullName": "Spark.Core.Manager.IStateManager:readContextFromStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-readContextFromStore", + "sort": 3, + "meta": {} + }, + { + "name": "readContextFromStoreAndLock", + "fullName": "Spark.Core.Manager.IStateManager:readContextFromStoreAndLock", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-readContextFromStoreAndLock", + "sort": 3, + "meta": {} + }, + { + "name": "writeContextToStore", + "fullName": "Spark.Core.Manager.IStateManager:writeContextToStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-writeContextToStore", + "sort": 3, + "meta": {} + }, + { + "name": "writeContextToStore", + "fullName": "Spark.Core.Manager.IStateManager:writeContextToStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-writeContextToStore", + "sort": 3, + "meta": {} + }, + { + "name": "updateLastUsed", + "fullName": "Spark.Core.Manager.IStateManager:updateLastUsed", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-updateLastUsed", + "sort": 3, + "meta": {} + }, + { + "name": "removeContextFromStore", + "fullName": "Spark.Core.Manager.IStateManager:removeContextFromStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStateManager-method-removeContextFromStore", + "sort": 3, + "meta": {} + }, + { + "name": "StartupManager", + "fullName": "Spark.Core.Manager.StartupManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.StartupManager", + "sort": 1, + "meta": {} + }, + { + "name": "StartupManager", + "fullName": "Spark.Core.Manager.StartupManager:StartupManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.StartupManager-constructor-StartupManager", + "sort": 3, + "meta": {} + }, + { + "name": "StartupManager", + "fullName": "Spark.Core.Manager.StartupManager:StartupManager", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Manager.StartupManager-destructor-StartupManager", + "sort": 3, + "meta": {} + }, + { + "name": "Instance", + "fullName": "Spark.Core.Manager.StartupManager:Instance", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.StartupManager-property-Instance", + "sort": 3, + "meta": {} + }, + { + "name": "interfaceStopAfter", + "fullName": "Spark.Core.Manager.StartupManager:interfaceStopAfter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.StartupManager-property-interfaceStopAfter", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.StartupManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.StartupManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "loadConfig", + "fullName": "Spark.Core.Manager.StartupManager:loadConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-loadConfig", + "sort": 3, + "meta": {} + }, + { + "name": "startManagers", + "fullName": "Spark.Core.Manager.StartupManager:startManagers", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-startManagers", + "sort": 3, + "meta": {} + }, + { + "name": "checkAllManagersAreListed", + "fullName": "Spark.Core.Manager.StartupManager:checkAllManagersAreListed", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-checkAllManagersAreListed", + "sort": 3, + "meta": {} + }, + { + "name": "checkManagerIsListed", + "fullName": "Spark.Core.Manager.StartupManager:checkManagerIsListed", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-checkManagerIsListed", + "sort": 3, + "meta": {} + }, + { + "name": "checkManagerIsListed", + "fullName": "Spark.Core.Manager.StartupManager:checkManagerIsListed", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-checkManagerIsListed", + "sort": 3, + "meta": {} + }, + { + "name": "startManager", + "fullName": "Spark.Core.Manager.StartupManager:startManager", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-startManager", + "sort": 3, + "meta": {} + }, + { + "name": "stopManager", + "fullName": "Spark.Core.Manager.StartupManager:stopManager", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-stopManager", + "sort": 3, + "meta": {} + }, + { + "name": "getManager", + "fullName": "Spark.Core.Manager.StartupManager:getManager", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-getManager", + "sort": 3, + "meta": {} + }, + { + "name": "stopManagers", + "fullName": "Spark.Core.Manager.StartupManager:stopManagers", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StartupManager-method-stopManagers", + "sort": 3, + "meta": {} + }, + { + "name": "ttGeneral", + "fullName": "Spark.Core.Manager.StartupManager:ttGeneral", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.StartupManager-temptable-ttGeneral", + "sort": 3, + "meta": {} + }, + { + "name": "ttImplMapping", + "fullName": "Spark.Core.Manager.StartupManager:ttImplMapping", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.StartupManager-temptable-ttImplMapping", + "sort": 3, + "meta": {} + }, + { + "name": "ttManager", + "fullName": "Spark.Core.Manager.StartupManager:ttManager", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.StartupManager-temptable-ttManager", + "sort": 3, + "meta": {} + }, + { + "name": "dsConfig", + "fullName": "Spark.Core.Manager.StartupManager:dsConfig", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.StartupManager-dataset-dsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "ISessionManager", + "fullName": "Spark.Core.Manager.ISessionManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.ISessionManager", + "sort": 1, + "meta": {} + }, + { + "name": "databasesConnected", + "fullName": "Spark.Core.Manager.ISessionManager:databasesConnected", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-databasesConnected", + "sort": 3, + "meta": {} + }, + { + "name": "establishRequestEnvironment", + "fullName": "Spark.Core.Manager.ISessionManager:establishRequestEnvironment", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-establishRequestEnvironment", + "sort": 3, + "meta": {} + }, + { + "name": "userLogin", + "fullName": "Spark.Core.Manager.ISessionManager:userLogin", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-userLogin", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.ISessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.ISessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.ISessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "setSessionAttribute", + "fullName": "Spark.Core.Manager.ISessionManager:setSessionAttribute", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-setSessionAttribute", + "sort": 3, + "meta": {} + }, + { + "name": "getUserSSOToken", + "fullName": "Spark.Core.Manager.ISessionManager:getUserSSOToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-getUserSSOToken", + "sort": 3, + "meta": {} + }, + { + "name": "getUserSSOToken", + "fullName": "Spark.Core.Manager.ISessionManager:getUserSSOToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISessionManager-method-getUserSSOToken", + "sort": 3, + "meta": {} + }, + { + "name": "IDynamicEntity", + "fullName": "Spark.Core.Service.IDynamicEntity", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Service.IDynamicEntity", + "sort": 1, + "meta": {} + }, + { + "name": "serviceURI", + "fullName": "Spark.Core.Service.IDynamicEntity:serviceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-serviceURI", + "sort": 3, + "meta": {} + }, + { + "name": "resourceName", + "fullName": "Spark.Core.Service.IDynamicEntity:resourceName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-resourceName", + "sort": 3, + "meta": {} + }, + { + "name": "entityName", + "fullName": "Spark.Core.Service.IDynamicEntity:entityName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-entityName", + "sort": 3, + "meta": {} + }, + { + "name": "primaryKeys", + "fullName": "Spark.Core.Service.IDynamicEntity:primaryKeys", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-primaryKeys", + "sort": 3, + "meta": {} + }, + { + "name": "foreignKeys", + "fullName": "Spark.Core.Service.IDynamicEntity:foreignKeys", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-foreignKeys", + "sort": 3, + "meta": {} + }, + { + "name": "mappingType", + "fullName": "Spark.Core.Service.IDynamicEntity:mappingType", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-mappingType", + "sort": 3, + "meta": {} + }, + { + "name": "capabilities", + "fullName": "Spark.Core.Service.IDynamicEntity:capabilities", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-capabilities", + "sort": 3, + "meta": {} + }, + { + "name": "operations", + "fullName": "Spark.Core.Service.IDynamicEntity:operations", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-property-operations", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Service.IDynamicEntity:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "postRowFill", + "fullName": "Spark.Core.Service.IDynamicEntity:postRowFill", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-postRowFill", + "sort": 3, + "meta": {} + }, + { + "name": "readData", + "fullName": "Spark.Core.Service.IDynamicEntity:readData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-readData", + "sort": 3, + "meta": {} + }, + { + "name": "createData", + "fullName": "Spark.Core.Service.IDynamicEntity:createData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-createData", + "sort": 3, + "meta": {} + }, + { + "name": "updateData", + "fullName": "Spark.Core.Service.IDynamicEntity:updateData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-updateData", + "sort": 3, + "meta": {} + }, + { + "name": "deleteData", + "fullName": "Spark.Core.Service.IDynamicEntity:deleteData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-deleteData", + "sort": 3, + "meta": {} + }, + { + "name": "submitData", + "fullName": "Spark.Core.Service.IDynamicEntity:submitData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.IDynamicEntity-method-submitData", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.ApplicationError", + "sort": 1, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationError", + "fullName": "Spark.Core.Util.ApplicationError:ApplicationError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ApplicationError-constructor-ApplicationError", + "sort": 3, + "meta": {} + }, + { + "name": "errorField", + "fullName": "Spark.Core.Util.ApplicationError:errorField", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ApplicationError-property-errorField", + "sort": 3, + "meta": {} + }, + { + "name": "errorType", + "fullName": "Spark.Core.Util.ApplicationError:errorType", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ApplicationError-property-errorType", + "sort": 3, + "meta": {} + }, + { + "name": "originalErrorMessage", + "fullName": "Spark.Core.Util.ApplicationError:originalErrorMessage", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ApplicationError-property-originalErrorMessage", + "sort": 3, + "meta": {} + }, + { + "name": "createAppError", + "fullName": "Spark.Core.Util.ApplicationError:createAppError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ApplicationError-method-createAppError", + "sort": 3, + "meta": {} + }, + { + "name": "createAppError", + "fullName": "Spark.Core.Util.ApplicationError:createAppError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ApplicationError-method-createAppError", + "sort": 3, + "meta": {} + }, + { + "name": "setErrorType", + "fullName": "Spark.Core.Util.ApplicationError:setErrorType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ApplicationError-method-setErrorType", + "sort": 3, + "meta": {} + }, + { + "name": "OEMetricsConfig", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig", + "icon": "icon-class", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "OEMetricsConfig", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:OEMetricsConfig", + "icon": "icon-constructor", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-constructor-OEMetricsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "oLogger", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:oLogger", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-oLogger", + "sort": 3, + "meta": {} + }, + { + "name": "OEManagerUser", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:OEManagerUser", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OEManagerUser", + "sort": 3, + "meta": {} + }, + { + "name": "OEManagerPass", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:OEManagerPass", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OEManagerPass", + "sort": 3, + "meta": {} + }, + { + "name": "MetricsConfigFile", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:MetricsConfigFile", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-MetricsConfigFile", + "sort": 3, + "meta": {} + }, + { + "name": "MetricsConfigPath", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:MetricsConfigPath", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-MetricsConfigPath", + "sort": 3, + "meta": {} + }, + { + "name": "ABLAppList", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ABLAppList", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ABLAppList", + "sort": 3, + "meta": {} + }, + { + "name": "DefaultAppName", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:DefaultAppName", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-DefaultAppName", + "sort": 3, + "meta": {} + }, + { + "name": "PollingIgnoreList", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:PollingIgnoreList", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingIgnoreList", + "sort": 3, + "meta": {} + }, + { + "name": "PollingStartTime", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:PollingStartTime", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingStartTime", + "sort": 3, + "meta": {} + }, + { + "name": "PollingStopTime", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:PollingStopTime", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-PollingStopTime", + "sort": 3, + "meta": {} + }, + { + "name": "ProfilerEnabled", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ProfilerEnabled", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerEnabled", + "sort": 3, + "meta": {} + }, + { + "name": "ProfilerFilter", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ProfilerFilter", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerFilter", + "sort": 3, + "meta": {} + }, + { + "name": "ProfilerThreshold", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ProfilerThreshold", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerThreshold", + "sort": 3, + "meta": {} + }, + { + "name": "ProfilerTrackBy", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ProfilerTrackBy", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ProfilerTrackBy", + "sort": 3, + "meta": {} + }, + { + "name": "ClassesExcluded", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ClassesExcluded", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-ClassesExcluded", + "sort": 3, + "meta": {} + }, + { + "name": "OutputInterval", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:OutputInterval", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-OutputInterval", + "sort": 3, + "meta": {} + }, + { + "name": "RemoteSource", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:RemoteSource", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-RemoteSource", + "sort": 3, + "meta": {} + }, + { + "name": "TrackMemory", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:TrackMemory", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackMemory", + "sort": 3, + "meta": {} + }, + { + "name": "TrackObjects", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:TrackObjects", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackObjects", + "sort": 3, + "meta": {} + }, + { + "name": "TrackRequests", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:TrackRequests", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-TrackRequests", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorType", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:CollectorType", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorType", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorScheme", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:CollectorScheme", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorScheme", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorServer", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:CollectorServer", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorServer", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorPort", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:CollectorPort", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-CollectorPort", + "sort": 3, + "meta": {} + }, + { + "name": "InstanceURI", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:InstanceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-property-InstanceURI", + "sort": 3, + "meta": {} + }, + { + "name": "Discovery", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:Discovery", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-Discovery", + "sort": 3, + "meta": {} + }, + { + "name": "ParseConfig", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:ParseConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-ParseConfig", + "sort": 3, + "meta": {} + }, + { + "name": "SetLogger", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:SetLogger", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-SetLogger", + "sort": 3, + "meta": {} + }, + { + "name": "RefreshConfig", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:RefreshConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-RefreshConfig", + "sort": 3, + "meta": {} + }, + { + "name": "UpdateCredentialsOEM", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:UpdateCredentialsOEM", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-UpdateCredentialsOEM", + "sort": 3, + "meta": {} + }, + { + "name": "GetTrackingFlag", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:GetTrackingFlag", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-GetTrackingFlag", + "sort": 3, + "meta": {} + }, + { + "name": "AreObjectsEnabled", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:AreObjectsEnabled", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-AreObjectsEnabled", + "sort": 3, + "meta": {} + }, + { + "name": "IsMemoryEnabled", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:IsMemoryEnabled", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-IsMemoryEnabled", + "sort": 3, + "meta": {} + }, + { + "name": "AreRequestsEnabled", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:AreRequestsEnabled", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-AreRequestsEnabled", + "sort": 3, + "meta": {} + }, + { + "name": "IsProfilerEnabled", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:IsProfilerEnabled", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-IsProfilerEnabled", + "sort": 3, + "meta": {} + }, + { + "name": "OnValidSchedule", + "fullName": "Spark.Diagnostic.Util.OEMetricsConfig:OnValidSchedule", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetricsConfig-method-OnValidSchedule", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest", + "sort": 1, + "meta": {} + }, + { + "name": "GetDataRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:GetDataRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-constructor-GetDataRequest", + "sort": 3, + "meta": {} + }, + { + "name": "CustomParameter", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:CustomParameter", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-CustomParameter", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:NamedQuery", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-NamedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "TableRequests", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:TableRequests", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-property-TableRequests", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetDataRequest:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataRequest-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "CryptoPbeHashAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "CryptoPbeHashAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:CryptoPbeHashAlgorithmEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-constructor-CryptoPbeHashAlgorithmEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "CryptoPbeHashAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:CryptoPbeHashAlgorithmEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-constructor-CryptoPbeHashAlgorithmEnum", + "sort": 3, + "meta": {} + }, + { + "name": "MD5", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:MD5", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-MD5", + "sort": 3, + "meta": {} + }, + { + "name": "SHA-1", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-1", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-1", + "sort": 3, + "meta": {} + }, + { + "name": "SHA-256", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-256", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-256", + "sort": 3, + "meta": {} + }, + { + "name": "SHA-512", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:SHA-512", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-property-SHA-512", + "sort": 3, + "meta": {} + }, + { + "name": "enumFromString", + "fullName": "Spark.Core.Util.CryptoPbeHashAlgorithmEnum:enumFromString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoPbeHashAlgorithmEnum-method-enumFromString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "FilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "FilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "FilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "FilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:FilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-constructor-FilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "FilterTable", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:FilterTable", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-property-FilterTable", + "sort": 3, + "meta": {} + }, + { + "name": "Parse", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:Parse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-Parse", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "ParseWhere", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-ParseWhere", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "ParseSortBy", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParser-method-ParseSortBy", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "Convert", + "fullName": "Spark.Core.Util.Convert", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Convert", + "sort": 1, + "meta": {} + }, + { + "name": "BinToHex", + "fullName": "Spark.Core.Util.Convert:BinToHex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Convert-method-BinToHex", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "BinToInt", + "fullName": "Spark.Core.Util.Convert:BinToInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Convert-method-BinToInt", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IntToBin", + "fullName": "Spark.Core.Util.Convert:IntToBin", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Convert-method-IntToBin", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IntToHex", + "fullName": "Spark.Core.Util.Convert:IntToHex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Convert-method-IntToHex", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.MethodSignature", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:MethodSignature", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:MethodSignature", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:MethodSignature", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:MethodSignature", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.MethodSignature-constructor-MethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "MethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:MethodSignature", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Util.MethodSignature-destructor-MethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "parseMethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:parseMethodSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-parseMethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "parseMethodSignature", + "fullName": "Spark.Core.Util.MethodSignature:parseMethodSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-parseMethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "getClassPath", + "fullName": "Spark.Core.Util.MethodSignature:getClassPath", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getClassPath", + "sort": 3, + "meta": {} + }, + { + "name": "getMethodName", + "fullName": "Spark.Core.Util.MethodSignature:getMethodName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getMethodName", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterCount", + "fullName": "Spark.Core.Util.MethodSignature:getParameterCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterCount", + "sort": 3, + "meta": {} + }, + { + "name": "hasParameters", + "fullName": "Spark.Core.Util.MethodSignature:hasParameters", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-hasParameters", + "sort": 3, + "meta": {} + }, + { + "name": "hasParameter", + "fullName": "Spark.Core.Util.MethodSignature:hasParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-hasParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameters", + "fullName": "Spark.Core.Util.MethodSignature:getParameters", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameters", + "sort": 3, + "meta": {} + }, + { + "name": "getInputParameters", + "fullName": "Spark.Core.Util.MethodSignature:getInputParameters", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getInputParameters", + "sort": 3, + "meta": {} + }, + { + "name": "getOutputParameters", + "fullName": "Spark.Core.Util.MethodSignature:getOutputParameters", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getOutputParameters", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterNum", + "fullName": "Spark.Core.Util.MethodSignature:getParameterNum", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterNum", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterName", + "fullName": "Spark.Core.Util.MethodSignature:getParameterName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterName", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterMode", + "fullName": "Spark.Core.Util.MethodSignature:getParameterMode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterMode", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterMode", + "fullName": "Spark.Core.Util.MethodSignature:getParameterMode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterMode", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterObject", + "fullName": "Spark.Core.Util.MethodSignature:getParameterObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterType", + "fullName": "Spark.Core.Util.MethodSignature:getParameterType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterType", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterType", + "fullName": "Spark.Core.Util.MethodSignature:getParameterType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterType", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterSchema", + "fullName": "Spark.Core.Util.MethodSignature:getParameterSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterSchema", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterSchema", + "fullName": "Spark.Core.Util.MethodSignature:getParameterSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getParameterSchema", + "sort": 3, + "meta": {} + }, + { + "name": "setParameterSchema", + "fullName": "Spark.Core.Util.MethodSignature:setParameterSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-setParameterSchema", + "sort": 3, + "meta": {} + }, + { + "name": "setParameterSchema", + "fullName": "Spark.Core.Util.MethodSignature:setParameterSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-setParameterSchema", + "sort": 3, + "meta": {} + }, + { + "name": "getDatasets", + "fullName": "Spark.Core.Util.MethodSignature:getDatasets", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getDatasets", + "sort": 3, + "meta": {} + }, + { + "name": "getTempTables", + "fullName": "Spark.Core.Util.MethodSignature:getTempTables", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-getTempTables", + "sort": 3, + "meta": {} + }, + { + "name": "isInputParameter", + "fullName": "Spark.Core.Util.MethodSignature:isInputParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isInputParameter", + "sort": 3, + "meta": {} + }, + { + "name": "isInputParameter", + "fullName": "Spark.Core.Util.MethodSignature:isInputParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isInputParameter", + "sort": 3, + "meta": {} + }, + { + "name": "isOutputParameter", + "fullName": "Spark.Core.Util.MethodSignature:isOutputParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isOutputParameter", + "sort": 3, + "meta": {} + }, + { + "name": "isOutputParameter", + "fullName": "Spark.Core.Util.MethodSignature:isOutputParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isOutputParameter", + "sort": 3, + "meta": {} + }, + { + "name": "isTempTable", + "fullName": "Spark.Core.Util.MethodSignature:isTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "isTempTable", + "fullName": "Spark.Core.Util.MethodSignature:isTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "isDataset", + "fullName": "Spark.Core.Util.MethodSignature:isDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isDataset", + "sort": 3, + "meta": {} + }, + { + "name": "isDataset", + "fullName": "Spark.Core.Util.MethodSignature:isDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isDataset", + "sort": 3, + "meta": {} + }, + { + "name": "isObject", + "fullName": "Spark.Core.Util.MethodSignature:isObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isObject", + "sort": 3, + "meta": {} + }, + { + "name": "isObject", + "fullName": "Spark.Core.Util.MethodSignature:isObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isObject", + "sort": 3, + "meta": {} + }, + { + "name": "isJsonArray", + "fullName": "Spark.Core.Util.MethodSignature:isJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "isJsonArray", + "fullName": "Spark.Core.Util.MethodSignature:isJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "isJsonObject", + "fullName": "Spark.Core.Util.MethodSignature:isJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "isJsonObject", + "fullName": "Spark.Core.Util.MethodSignature:isJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.MethodSignature-method-isJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "MethodParameter", + "fullName": "Spark.Core.Util.MethodSignature:MethodParameter", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Util.MethodSignature-temptable-MethodParameter", + "sort": 3, + "meta": {} + }, + { + "name": "QueryEntryDeserializer", + "fullName": "OpenEdge.BusinessLogic.IO.QueryEntryDeserializer", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer", + "sort": 1, + "meta": {} + }, + { + "name": "QueryEntryDeserializer", + "fullName": "OpenEdge.BusinessLogic.IO.QueryEntryDeserializer:QueryEntryDeserializer", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer-constructor-QueryEntryDeserializer", + "sort": 3, + "meta": {} + }, + { + "name": "QueryEntryFromJson", + "fullName": "OpenEdge.BusinessLogic.IO.QueryEntryDeserializer:QueryEntryFromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.IO.QueryEntryDeserializer-method-QueryEntryFromJson", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Binary", + "fullName": "Spark.Core.Util.Binary", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Binary", + "sort": 1, + "meta": {} + }, + { + "name": "BinaryAND", + "fullName": "Spark.Core.Util.Binary:BinaryAND", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Binary-method-BinaryAND", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "BinaryOR", + "fullName": "Spark.Core.Util.Binary:BinaryOR", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Binary-method-BinaryOR", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "BinaryXOR", + "fullName": "Spark.Core.Util.Binary:BinaryXOR", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Binary-method-BinaryXOR", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ShiftLeft", + "fullName": "Spark.Core.Util.Binary:ShiftLeft", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Binary-method-ShiftLeft", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HOTP", + "fullName": "Spark.Core.Security.HOTP", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Security.HOTP", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "HOTP", + "fullName": "Spark.Core.Security.HOTP:HOTP", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.HOTP-constructor-HOTP", + "sort": 3, + "meta": {} + }, + { + "name": "HOTP", + "fullName": "Spark.Core.Security.HOTP:HOTP", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.HOTP-constructor-HOTP", + "sort": 3, + "meta": {} + }, + { + "name": "HOTP", + "fullName": "Spark.Core.Security.HOTP:HOTP", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Security.HOTP-destructor-HOTP", + "sort": 3, + "meta": {} + }, + { + "name": "Token", + "fullName": "Spark.Core.Security.HOTP:Token", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Security.HOTP-property-Token", + "sort": 3, + "meta": {} + }, + { + "name": "EpochCounter", + "fullName": "Spark.Core.Security.HOTP:EpochCounter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Security.HOTP-property-EpochCounter", + "sort": 3, + "meta": {} + }, + { + "name": "newToken", + "fullName": "Spark.Core.Security.HOTP:newToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.HOTP-method-newToken", + "sort": 3, + "meta": {} + }, + { + "name": "Manager", + "fullName": "Spark.Core.Manager.Manager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.Manager", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "Manager", + "fullName": "Spark.Core.Manager.Manager:Manager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.Manager-constructor-Manager", + "sort": 3, + "meta": {} + }, + { + "name": "MathUtil", + "fullName": "OpenEdge.Core.Util.MathUtil", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Util.MathUtil", + "sort": 1, + "meta": {} + }, + { + "name": "DEFAULT_BASE", + "fullName": "OpenEdge.Core.Util.MathUtil:DEFAULT_BASE", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-property-DEFAULT_BASE", + "sort": 3, + "meta": {} + }, + { + "name": "Ceiling", + "fullName": "OpenEdge.Core.Util.MathUtil:Ceiling", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-method-Ceiling", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HexToInt", + "fullName": "OpenEdge.Core.Util.MathUtil:HexToInt", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-method-HexToInt", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ExponentialToDec", + "fullName": "OpenEdge.Core.Util.MathUtil:ExponentialToDec", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-method-ExponentialToDec", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ExponentialToDec", + "fullName": "OpenEdge.Core.Util.MathUtil:ExponentialToDec", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-method-ExponentialToDec", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IntToHex", + "fullName": "OpenEdge.Core.Util.MathUtil:IntToHex", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.MathUtil-method-IntToHex", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ITranslationManager", + "fullName": "Spark.Core.Manager.ITranslationManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.ITranslationManager", + "sort": 1, + "meta": {} + }, + { + "name": "getTranslatedMessage", + "fullName": "Spark.Core.Manager.ITranslationManager:getTranslatedMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ITranslationManager-method-getTranslatedMessage", + "sort": 3, + "meta": {} + }, + { + "name": "getTranslatedMessage", + "fullName": "Spark.Core.Manager.ITranslationManager:getTranslatedMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ITranslationManager-method-getTranslatedMessage", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataTableResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse", + "sort": 1, + "meta": {} + }, + { + "name": "GetDataTableResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:GetDataTableResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-constructor-GetDataTableResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataTableResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:GetDataTableResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-constructor-GetDataTableResponse", + "sort": 3, + "meta": {} + }, + { + "name": "NextPagingContext", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:NextPagingContext", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-NextPagingContext", + "sort": 3, + "meta": {} + }, + { + "name": "PreviousPagingContext", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:PreviousPagingContext", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-PreviousPagingContext", + "sort": 3, + "meta": {} + }, + { + "name": "TableName", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:TableName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-property-TableName", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetDataTableResponse:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableResponse-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "StateManager", + "fullName": "Spark.Core.Manager.StateManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.StateManager", + "sort": 1, + "meta": {} + }, + { + "name": "StateManager", + "fullName": "Spark.Core.Manager.StateManager:StateManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.StateManager-constructor-StateManager", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.StateManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.StateManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "readContextFromStore", + "fullName": "Spark.Core.Manager.StateManager:readContextFromStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-readContextFromStore", + "sort": 3, + "meta": {} + }, + { + "name": "readContextFromStoreAndLock", + "fullName": "Spark.Core.Manager.StateManager:readContextFromStoreAndLock", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-readContextFromStoreAndLock", + "sort": 3, + "meta": {} + }, + { + "name": "writeContextToStore", + "fullName": "Spark.Core.Manager.StateManager:writeContextToStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-writeContextToStore", + "sort": 3, + "meta": {} + }, + { + "name": "writeContextToStore", + "fullName": "Spark.Core.Manager.StateManager:writeContextToStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-writeContextToStore", + "sort": 3, + "meta": {} + }, + { + "name": "updateLastUsed", + "fullName": "Spark.Core.Manager.StateManager:updateLastUsed", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-updateLastUsed", + "sort": 3, + "meta": {} + }, + { + "name": "removeContextFromStore", + "fullName": "Spark.Core.Manager.StateManager:removeContextFromStore", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-removeContextFromStore", + "sort": 3, + "meta": {} + }, + { + "name": "cleanOldContextData", + "fullName": "Spark.Core.Manager.StateManager:cleanOldContextData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateManager-method-cleanOldContextData", + "sort": 3, + "meta": {} + }, + { + "name": "IAuthHandler", + "fullName": "Spark.Core.Security.IAuthHandler", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Security.IAuthHandler", + "sort": 1, + "meta": {} + }, + { + "name": "getUserID", + "fullName": "Spark.Core.Security.IAuthHandler:getUserID", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.IAuthHandler-method-getUserID", + "sort": 3, + "meta": {} + }, + { + "name": "isActive", + "fullName": "Spark.Core.Security.IAuthHandler:isActive", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.IAuthHandler-method-isActive", + "sort": 3, + "meta": {} + }, + { + "name": "isExpired", + "fullName": "Spark.Core.Security.IAuthHandler:isExpired", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.IAuthHandler-method-isExpired", + "sort": 3, + "meta": {} + }, + { + "name": "isLocked", + "fullName": "Spark.Core.Security.IAuthHandler:isLocked", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.IAuthHandler-method-isLocked", + "sort": 3, + "meta": {} + }, + { + "name": "getUserRoles", + "fullName": "Spark.Core.Security.IAuthHandler:getUserRoles", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.IAuthHandler-method-getUserRoles", + "sort": 3, + "meta": {} + }, + { + "name": "Annotate", + "fullName": "Spark.Core.Util.Annotate", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Annotate", + "sort": 1, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.Annotate:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-addProperty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.Annotate:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-addProperty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeEntity", + "fullName": "Spark.Core.Util.Annotate:describeEntity", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeEntity", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeEntity", + "fullName": "Spark.Core.Util.Annotate:describeEntity", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeEntity", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeEntity", + "fullName": "Spark.Core.Util.Annotate:describeEntity", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeEntity", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeFields", + "fullName": "Spark.Core.Util.Annotate:describeFields", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeFields", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeFields", + "fullName": "Spark.Core.Util.Annotate:describeFields", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeFields", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeFields", + "fullName": "Spark.Core.Util.Annotate:describeFields", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeFields", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeCreate", + "fullName": "Spark.Core.Util.Annotate:describeCreate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeCreate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeRead", + "fullName": "Spark.Core.Util.Annotate:describeRead", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeRead", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeUpdate", + "fullName": "Spark.Core.Util.Annotate:describeUpdate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeUpdate", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeDelete", + "fullName": "Spark.Core.Util.Annotate:describeDelete", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeDelete", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeSubmit", + "fullName": "Spark.Core.Util.Annotate:describeSubmit", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeSubmit", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeInvoke", + "fullName": "Spark.Core.Util.Annotate:describeInvoke", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeInvoke", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "describeResource", + "fullName": "Spark.Core.Util.Annotate:describeResource", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Annotate-method-describeResource", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "AbstractMessage", + "fullName": "Spark.Core.Message.AbstractMessage", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Message.AbstractMessage", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "AbstractMessage", + "fullName": "Spark.Core.Message.AbstractMessage:AbstractMessage", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Message.AbstractMessage-constructor-AbstractMessage", + "sort": 3, + "meta": {} + }, + { + "name": "AbstractMessage", + "fullName": "Spark.Core.Message.AbstractMessage:AbstractMessage", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Message.AbstractMessage-constructor-AbstractMessage", + "sort": 3, + "meta": {} + }, + { + "name": "AbstractMessage", + "fullName": "Spark.Core.Message.AbstractMessage:AbstractMessage", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Message.AbstractMessage-destructor-AbstractMessage", + "sort": 3, + "meta": {} + }, + { + "name": "messageKeyPin", + "fullName": "Spark.Core.Message.AbstractMessage:messageKeyPin", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.AbstractMessage-property-messageKeyPin", + "sort": 3, + "meta": {} + }, + { + "name": "deserializeMessage", + "fullName": "Spark.Core.Message.AbstractMessage:deserializeMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-deserializeMessage", + "sort": 3, + "meta": {} + }, + { + "name": "deserializeMessageFromFile", + "fullName": "Spark.Core.Message.AbstractMessage:deserializeMessageFromFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-deserializeMessageFromFile", + "sort": 3, + "meta": {} + }, + { + "name": "promoteObject", + "fullName": "Spark.Core.Message.AbstractMessage:promoteObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-promoteObject", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "demoteObject", + "fullName": "Spark.Core.Message.AbstractMessage:demoteObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-demoteObject", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setNullParam", + "fullName": "Spark.Core.Message.AbstractMessage:setNullParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setNullParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.AbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-setParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "getParams", + "fullName": "Spark.Core.Message.AbstractMessage:getParams", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParams", + "sort": 3, + "meta": {} + }, + { + "name": "getParamCount", + "fullName": "Spark.Core.Message.AbstractMessage:getParamCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamCount", + "sort": 3, + "meta": {} + }, + { + "name": "hasParam", + "fullName": "Spark.Core.Message.AbstractMessage:hasParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-hasParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "removeParam", + "fullName": "Spark.Core.Message.AbstractMessage:removeParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-removeParam", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "getParamObject", + "fullName": "Spark.Core.Message.AbstractMessage:getParamObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamType", + "fullName": "Spark.Core.Message.AbstractMessage:getParamType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamType", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonText", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonText", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonText", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonText", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonText", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonText", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsChar", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsChar", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsCharEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsCharEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongChar", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLongChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongChar", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLongChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongCharEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLongCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongCharEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLongCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLongCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsIntEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsIntEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsIntEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsIntEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsIntEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsIntEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64Ex", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt64Ex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64Ex", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64Ex", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsInt64Ex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsInt64Ex", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDec", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDec", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDecEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDecEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDecEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDecEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDecEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDecEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDate", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDate", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDateEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDateEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDateEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDateEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDateEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDateEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetime", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetime", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZ", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZ", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZ", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZ", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsDatetimeTZEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsDatetimeTZEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLog", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLog", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLogEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLogEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLogEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLogEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsLogEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsLogEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowid", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRowid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowid", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRowid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowidEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRowidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowidEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRowidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRowidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecid", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRecid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecid", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRecid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecidEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRecidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecidEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsRecidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsRecidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptr", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsMemptr", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptr", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptr", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsMemptr", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptr", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptrEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsMemptrEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptrEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptrEx", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsMemptrEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsMemptrEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonObject", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonObject", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonArray", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonArray", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsHandle", + "fullName": "Spark.Core.Message.AbstractMessage:getParamAsHandle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-getParamAsHandle", + "sort": 3, + "meta": {} + }, + { + "name": "serializeMessage", + "fullName": "Spark.Core.Message.AbstractMessage:serializeMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-serializeMessage", + "sort": 3, + "meta": {} + }, + { + "name": "storeProperties", + "fullName": "Spark.Core.Message.AbstractMessage:storeProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.AbstractMessage-method-storeProperties", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "IServiceManager", + "fullName": "Spark.Core.Manager.IServiceManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.IServiceManager", + "sort": 1, + "meta": {} + }, + { + "name": "callServiceFunction", + "fullName": "Spark.Core.Manager.IServiceManager:callServiceFunction", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IServiceManager-method-callServiceFunction", + "sort": 3, + "meta": {} + }, + { + "name": "callServiceFunction", + "fullName": "Spark.Core.Manager.IServiceManager:callServiceFunction", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IServiceManager-method-callServiceFunction", + "sort": 3, + "meta": {} + }, + { + "name": "getServiceImplementation", + "fullName": "Spark.Core.Manager.IServiceManager:getServiceImplementation", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IServiceManager-method-getServiceImplementation", + "sort": 3, + "meta": {} + }, + { + "name": "TranslationManager", + "fullName": "Spark.Core.Manager.TranslationManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.TranslationManager", + "sort": 1, + "meta": {} + }, + { + "name": "TranslationManager", + "fullName": "Spark.Core.Manager.TranslationManager:TranslationManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.TranslationManager-constructor-TranslationManager", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.TranslationManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.TranslationManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.TranslationManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.TranslationManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "getTranslatedMessage", + "fullName": "Spark.Core.Manager.TranslationManager:getTranslatedMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.TranslationManager-method-getTranslatedMessage", + "sort": 3, + "meta": {} + }, + { + "name": "getTranslatedMessage", + "fullName": "Spark.Core.Manager.TranslationManager:getTranslatedMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.TranslationManager-method-getTranslatedMessage", + "sort": 3, + "meta": {} + }, + { + "name": "DynamicResource", + "fullName": "Spark.Core.Service.DynamicResource", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Service.DynamicResource", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "serviceURI", + "fullName": "Spark.Core.Service.DynamicResource:serviceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicResource-property-serviceURI", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "resourceName", + "fullName": "Spark.Core.Service.DynamicResource:resourceName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicResource-property-resourceName", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "oContextMessage", + "fullName": "Spark.Core.Service.DynamicResource:oContextMessage", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicResource-property-oContextMessage", + "sort": 3, + "meta": {} + }, + { + "name": "oClientContext", + "fullName": "Spark.Core.Service.DynamicResource:oClientContext", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicResource-property-oClientContext", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Service.DynamicResource:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicResource-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "getClassName", + "fullName": "Spark.Core.Service.DynamicResource:getClassName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.DynamicResource-method-getClassName", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "initialize", + "fullName": "Spark.Core.Service.DynamicResource:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.DynamicResource-method-initialize", + "sort": 3, + "meta": {} + }, + { + "name": "dispose", + "fullName": "Spark.Core.Service.DynamicResource:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.DynamicResource-method-dispose", + "sort": 3, + "meta": {} + }, + { + "name": "ConnectionManager", + "fullName": "Spark.Core.Manager.ConnectionManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.ConnectionManager", + "sort": 1, + "meta": {} + }, + { + "name": "ConnectionManager", + "fullName": "Spark.Core.Manager.ConnectionManager:ConnectionManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-constructor-ConnectionManager", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Manager.ConnectionManager:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.ConnectionManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.ConnectionManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "loadConfig", + "fullName": "Spark.Core.Manager.ConnectionManager:loadConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-loadConfig", + "sort": 3, + "meta": {} + }, + { + "name": "getConnectionParam", + "fullName": "Spark.Core.Manager.ConnectionManager:getConnectionParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-getConnectionParam", + "sort": 3, + "meta": {} + }, + { + "name": "getServer", + "fullName": "Spark.Core.Manager.ConnectionManager:getServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-getServer", + "sort": 3, + "meta": {} + }, + { + "name": "stopLifeCycle", + "fullName": "Spark.Core.Manager.ConnectionManager:stopLifeCycle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-stopLifeCycle", + "sort": 3, + "meta": {} + }, + { + "name": "stopServer", + "fullName": "Spark.Core.Manager.ConnectionManager:stopServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-stopServer", + "sort": 3, + "meta": {} + }, + { + "name": "reconnectServer", + "fullName": "Spark.Core.Manager.ConnectionManager:reconnectServer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-reconnectServer", + "sort": 3, + "meta": {} + }, + { + "name": "validContext", + "fullName": "Spark.Core.Manager.ConnectionManager:validContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-validContext", + "sort": 3, + "meta": {} + }, + { + "name": "getProcHandle", + "fullName": "Spark.Core.Manager.ConnectionManager:getProcHandle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-method-getProcHandle", + "sort": 3, + "meta": {} + }, + { + "name": "ttServer", + "fullName": "Spark.Core.Manager.ConnectionManager:ttServer", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-temptable-ttServer", + "sort": 3, + "meta": {} + }, + { + "name": "ttConnection", + "fullName": "Spark.Core.Manager.ConnectionManager:ttConnection", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-temptable-ttConnection", + "sort": 3, + "meta": {} + }, + { + "name": "dsConnection", + "fullName": "Spark.Core.Manager.ConnectionManager:dsConnection", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.ConnectionManager-dataset-dsConnection", + "sort": 3, + "meta": {} + }, + { + "name": "LifecycleScope", + "fullName": "Spark.Core.Util.LifecycleScope", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.LifecycleScope", + "sort": 1, + "meta": {} + }, + { + "name": "LifecycleScope", + "fullName": "Spark.Core.Util.LifecycleScope:LifecycleScope", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.LifecycleScope-constructor-LifecycleScope", + "sort": 3, + "meta": {} + }, + { + "name": "getScope", + "fullName": "Spark.Core.Util.LifecycleScope:getScope", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LifecycleScope-method-getScope", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "Spark.Core.Util.LifecycleScope:ToString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LifecycleScope-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "StatusHandler", + "fullName": "Spark.Core.Handler.StatusHandler", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Handler.StatusHandler", + "sort": 1, + "meta": {} + }, + { + "name": "HandleNotAllowedMethod", + "fullName": "Spark.Core.Handler.StatusHandler:HandleNotAllowedMethod", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.StatusHandler-method-HandleNotAllowedMethod", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "HandleNotImplemented", + "fullName": "Spark.Core.Handler.StatusHandler:HandleNotImplemented", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.StatusHandler-method-HandleNotImplemented", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "HandleGet", + "fullName": "Spark.Core.Handler.StatusHandler:HandleGet", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.StatusHandler-method-HandleGet", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Sendmail", + "fullName": "Spark.Core.Util.Sendmail", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Sendmail", + "sort": 1, + "meta": {} + }, + { + "name": "Sendmail", + "fullName": "Spark.Core.Util.Sendmail:Sendmail", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.Sendmail-constructor-Sendmail", + "sort": 3, + "meta": {} + }, + { + "name": "IsDevMode", + "fullName": "Spark.Core.Util.Sendmail:IsDevMode", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-IsDevMode", + "sort": 3, + "meta": {} + }, + { + "name": "BlatPath", + "fullName": "Spark.Core.Util.Sendmail:BlatPath", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-BlatPath", + "sort": 3, + "meta": {} + }, + { + "name": "BlatLog", + "fullName": "Spark.Core.Util.Sendmail:BlatLog", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-BlatLog", + "sort": 3, + "meta": {} + }, + { + "name": "SendmailPath", + "fullName": "Spark.Core.Util.Sendmail:SendmailPath", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SendmailPath", + "sort": 3, + "meta": {} + }, + { + "name": "SMTPServer", + "fullName": "Spark.Core.Util.Sendmail:SMTPServer", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SMTPServer", + "sort": 3, + "meta": {} + }, + { + "name": "AttachBinary", + "fullName": "Spark.Core.Util.Sendmail:AttachBinary", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-AttachBinary", + "sort": 3, + "meta": {} + }, + { + "name": "AttachText", + "fullName": "Spark.Core.Util.Sendmail:AttachText", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-AttachText", + "sort": 3, + "meta": {} + }, + { + "name": "EmailBody", + "fullName": "Spark.Core.Util.Sendmail:EmailBody", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-EmailBody", + "sort": 3, + "meta": {} + }, + { + "name": "Recipient", + "fullName": "Spark.Core.Util.Sendmail:Recipient", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-Recipient", + "sort": 3, + "meta": {} + }, + { + "name": "SubjectLine", + "fullName": "Spark.Core.Util.Sendmail:SubjectLine", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SubjectLine", + "sort": 3, + "meta": {} + }, + { + "name": "SendWithBCC", + "fullName": "Spark.Core.Util.Sendmail:SendWithBCC", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SendWithBCC", + "sort": 3, + "meta": {} + }, + { + "name": "SendWithCC", + "fullName": "Spark.Core.Util.Sendmail:SendWithCC", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SendWithCC", + "sort": 3, + "meta": {} + }, + { + "name": "SendFrom", + "fullName": "Spark.Core.Util.Sendmail:SendFrom", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.Sendmail-property-SendFrom", + "sort": 3, + "meta": {} + }, + { + "name": "createTempFile", + "fullName": "Spark.Core.Util.Sendmail:createTempFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Sendmail-method-createTempFile", + "sort": 3, + "meta": {} + }, + { + "name": "removeTempFile", + "fullName": "Spark.Core.Util.Sendmail:removeTempFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Sendmail-method-removeTempFile", + "sort": 3, + "meta": {} + }, + { + "name": "SendEmail", + "fullName": "Spark.Core.Util.Sendmail:SendEmail", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Sendmail-method-SendEmail", + "sort": 3, + "meta": {} + }, + { + "name": "SendEmail", + "fullName": "Spark.Core.Util.Sendmail:SendEmail", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Sendmail-method-SendEmail", + "sort": 3, + "meta": {} + }, + { + "name": "QueryDefinition", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition", + "sort": 1, + "meta": {} + }, + { + "name": "QueryDefinition", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition", + "sort": 3, + "meta": {} + }, + { + "name": "QueryDefinition", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition", + "sort": 3, + "meta": {} + }, + { + "name": "QueryDefinition", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:QueryDefinition", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-constructor-QueryDefinition", + "sort": 3, + "meta": {} + }, + { + "name": "QuerySelection", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:QuerySelection", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-property-QuerySelection", + "sort": 3, + "meta": {} + }, + { + "name": "QuerySort", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:QuerySort", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-property-QuerySort", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.QueryDefinition:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryDefinition-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "GetResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse", + "sort": 1, + "meta": {} + }, + { + "name": "GetResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:GetResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-constructor-GetResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "ResultCounts", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:ResultCounts", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-property-ResultCounts", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetResultCountResponse:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetResultCountResponse-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "QueryOperatorHelper", + "fullName": "OpenEdge.BusinessLogic.QueryOperatorHelper", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper", + "sort": 1, + "meta": {} + }, + { + "name": "QueryOperatorHelper", + "fullName": "OpenEdge.BusinessLogic.QueryOperatorHelper:QueryOperatorHelper", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper-constructor-QueryOperatorHelper", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToEnum", + "fullName": "OpenEdge.BusinessLogic.QueryOperatorHelper:ToEnum", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryOperatorHelper-method-ToEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "UpdateModeEnum", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum", + "icon": "icon-enum", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum", + "sort": 1, + "meta": {} + }, + { + "name": "UNDEFINED", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum:UNDEFINED", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-UNDEFINED", + "sort": 3, + "meta": {} + }, + { + "name": "TRANSACTIONAL_SUBMIT", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum:TRANSACTIONAL_SUBMIT", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-TRANSACTIONAL_SUBMIT", + "sort": 3, + "meta": {} + }, + { + "name": "BULK_SUBMIT", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum:BULK_SUBMIT", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-BULK_SUBMIT", + "sort": 3, + "meta": {} + }, + { + "name": "CUD", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum:CUD", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-CUD", + "sort": 3, + "meta": {} + }, + { + "name": "CUD_NOBI", + "fullName": "OpenEdge.BusinessLogic.UpdateModeEnum:CUD_NOBI", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateModeEnum-property-CUD_NOBI", + "sort": 3, + "meta": {} + }, + { + "name": "ISchemaManager", + "fullName": "Spark.Core.Manager.ISchemaManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.ISchemaManager", + "sort": 1, + "meta": {} + }, + { + "name": "initSchema", + "fullName": "Spark.Core.Manager.ISchemaManager:initSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-initSchema", + "sort": 3, + "meta": {} + }, + { + "name": "initMethodSignature", + "fullName": "Spark.Core.Manager.ISchemaManager:initMethodSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-initMethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "deleteObjects", + "fullName": "Spark.Core.Manager.ISchemaManager:deleteObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-deleteObjects", + "sort": 3, + "meta": {} + }, + { + "name": "dumpObjects", + "fullName": "Spark.Core.Manager.ISchemaManager:dumpObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-dumpObjects", + "sort": 3, + "meta": {} + }, + { + "name": "getObject", + "fullName": "Spark.Core.Manager.ISchemaManager:getObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getObject", + "sort": 3, + "meta": {} + }, + { + "name": "getObjectChildren", + "fullName": "Spark.Core.Manager.ISchemaManager:getObjectChildren", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getObjectChildren", + "sort": 3, + "meta": {} + }, + { + "name": "getObjectList", + "fullName": "Spark.Core.Manager.ISchemaManager:getObjectList", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getObjectList", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Manager.ISchemaManager:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Manager.ISchemaManager:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "getTempTable", + "fullName": "Spark.Core.Manager.ISchemaManager:getTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-getTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "registerDataset", + "fullName": "Spark.Core.Manager.ISchemaManager:registerDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-registerDataset", + "sort": 3, + "meta": {} + }, + { + "name": "registerTempTable", + "fullName": "Spark.Core.Manager.ISchemaManager:registerTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-registerTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "registerTempTable", + "fullName": "Spark.Core.Manager.ISchemaManager:registerTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ISchemaManager-method-registerTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "CatalogManager", + "fullName": "Spark.Core.Manager.CatalogManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.CatalogManager", + "sort": 1, + "meta": {} + }, + { + "name": "ApiVersion", + "fullName": "Spark.Core.Manager.CatalogManager:ApiVersion", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-ApiVersion", + "sort": 3, + "meta": {} + }, + { + "name": "IdProperty", + "fullName": "Spark.Core.Manager.CatalogManager:IdProperty", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-IdProperty", + "sort": 3, + "meta": {} + }, + { + "name": "SeqProperty", + "fullName": "Spark.Core.Manager.CatalogManager:SeqProperty", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-SeqProperty", + "sort": 3, + "meta": {} + }, + { + "name": "ReadFilter", + "fullName": "Spark.Core.Manager.CatalogManager:ReadFilter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-ReadFilter", + "sort": 3, + "meta": {} + }, + { + "name": "ServicePrefix", + "fullName": "Spark.Core.Manager.CatalogManager:ServicePrefix", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-ServicePrefix", + "sort": 3, + "meta": {} + }, + { + "name": "CatalogService", + "fullName": "Spark.Core.Manager.CatalogManager:CatalogService", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-CatalogService", + "sort": 3, + "meta": {} + }, + { + "name": "UseRequestObj", + "fullName": "Spark.Core.Manager.CatalogManager:UseRequestObj", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-UseRequestObj", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Manager.CatalogManager:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "oSchemaManager", + "fullName": "Spark.Core.Manager.CatalogManager:oSchemaManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-oSchemaManager", + "sort": 3, + "meta": {} + }, + { + "name": "TemporaryDir", + "fullName": "Spark.Core.Manager.CatalogManager:TemporaryDir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-TemporaryDir", + "sort": 3, + "meta": {} + }, + { + "name": "Annotations", + "fullName": "Spark.Core.Manager.CatalogManager:Annotations", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-Annotations", + "sort": 3, + "meta": {} + }, + { + "name": "ParamUUID", + "fullName": "Spark.Core.Manager.CatalogManager:ParamUUID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.CatalogManager-property-ParamUUID", + "sort": 3, + "meta": {} + }, + { + "name": "clearResourceMethods", + "fullName": "Spark.Core.Manager.CatalogManager:clearResourceMethods", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-clearResourceMethods", + "sort": 3, + "meta": {} + }, + { + "name": "getJsonType", + "fullName": "Spark.Core.Manager.CatalogManager:getJsonType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getJsonType", + "sort": 3, + "meta": {} + }, + { + "name": "getList", + "fullName": "Spark.Core.Manager.CatalogManager:getList", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getList", + "sort": 3, + "meta": {} + }, + { + "name": "processAnnotations", + "fullName": "Spark.Core.Manager.CatalogManager:processAnnotations", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-processAnnotations", + "sort": 3, + "meta": {} + }, + { + "name": "loadDynamicResource", + "fullName": "Spark.Core.Manager.CatalogManager:loadDynamicResource", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-loadDynamicResource", + "sort": 3, + "meta": {} + }, + { + "name": "registerMethods", + "fullName": "Spark.Core.Manager.CatalogManager:registerMethods", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-registerMethods", + "sort": 3, + "meta": {} + }, + { + "name": "registerMethods", + "fullName": "Spark.Core.Manager.CatalogManager:registerMethods", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-registerMethods", + "sort": 3, + "meta": {} + }, + { + "name": "registerProcedures", + "fullName": "Spark.Core.Manager.CatalogManager:registerProcedures", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-registerProcedures", + "sort": 3, + "meta": {} + }, + { + "name": "runPreloader", + "fullName": "Spark.Core.Manager.CatalogManager:runPreloader", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-runPreloader", + "sort": 3, + "meta": {} + }, + { + "name": "setResourceMethod", + "fullName": "Spark.Core.Manager.CatalogManager:setResourceMethod", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-setResourceMethod", + "sort": 3, + "meta": {} + }, + { + "name": "setResourceProcedure", + "fullName": "Spark.Core.Manager.CatalogManager:setResourceProcedure", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-setResourceProcedure", + "sort": 3, + "meta": {} + }, + { + "name": "getBeforeImageFlag", + "fullName": "Spark.Core.Manager.CatalogManager:getBeforeImageFlag", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getBeforeImageFlag", + "sort": 3, + "meta": {} + }, + { + "name": "getServices", + "fullName": "Spark.Core.Manager.CatalogManager:getServices", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getServices", + "sort": 3, + "meta": {} + }, + { + "name": "getResources", + "fullName": "Spark.Core.Manager.CatalogManager:getResources", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getResources", + "sort": 3, + "meta": {} + }, + { + "name": "getSchema", + "fullName": "Spark.Core.Manager.CatalogManager:getSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getSchema", + "sort": 3, + "meta": {} + }, + { + "name": "getRelations", + "fullName": "Spark.Core.Manager.CatalogManager:getRelations", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getRelations", + "sort": 3, + "meta": {} + }, + { + "name": "getTable", + "fullName": "Spark.Core.Manager.CatalogManager:getTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getTable", + "sort": 3, + "meta": {} + }, + { + "name": "getOperations", + "fullName": "Spark.Core.Manager.CatalogManager:getOperations", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getOperations", + "sort": 3, + "meta": {} + }, + { + "name": "getDataDefs", + "fullName": "Spark.Core.Manager.CatalogManager:getDataDefs", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getDataDefs", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.CatalogManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.CatalogManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "stripFileExtensions", + "fullName": "Spark.Core.Manager.CatalogManager:stripFileExtensions", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-stripFileExtensions", + "sort": 3, + "meta": {} + }, + { + "name": "checkForResources", + "fullName": "Spark.Core.Manager.CatalogManager:checkForResources", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-checkForResources", + "sort": 3, + "meta": {} + }, + { + "name": "loadResources", + "fullName": "Spark.Core.Manager.CatalogManager:loadResources", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-loadResources", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Manager.CatalogManager:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "describeEntity", + "fullName": "Spark.Core.Manager.CatalogManager:describeEntity", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-describeEntity", + "sort": 3, + "meta": {} + }, + { + "name": "describeFields", + "fullName": "Spark.Core.Manager.CatalogManager:describeFields", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-describeFields", + "sort": 3, + "meta": {} + }, + { + "name": "describeResource", + "fullName": "Spark.Core.Manager.CatalogManager:describeResource", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-describeResource", + "sort": 3, + "meta": {} + }, + { + "name": "getCatalog", + "fullName": "Spark.Core.Manager.CatalogManager:getCatalog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-getCatalog", + "sort": 3, + "meta": {} + }, + { + "name": "stopProcedures", + "fullName": "Spark.Core.Manager.CatalogManager:stopProcedures", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-stopProcedures", + "sort": 3, + "meta": {} + }, + { + "name": "registerAllServices", + "fullName": "Spark.Core.Manager.CatalogManager:registerAllServices", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-registerAllServices", + "sort": 3, + "meta": {} + }, + { + "name": "registerService", + "fullName": "Spark.Core.Manager.CatalogManager:registerService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.CatalogManager-method-registerService", + "sort": 3, + "meta": {} + }, + { + "name": "GeneralParam", + "fullName": "Spark.Core.Manager.CatalogManager:GeneralParam", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-GeneralParam", + "sort": 3, + "meta": {} + }, + { + "name": "ServiceList", + "fullName": "Spark.Core.Manager.CatalogManager:ServiceList", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ServiceList", + "sort": 3, + "meta": {} + }, + { + "name": "ResourceList", + "fullName": "Spark.Core.Manager.CatalogManager:ResourceList", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceList", + "sort": 3, + "meta": {} + }, + { + "name": "ServiceInfo", + "fullName": "Spark.Core.Manager.CatalogManager:ServiceInfo", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ServiceInfo", + "sort": 3, + "meta": {} + }, + { + "name": "ResourceInfo", + "fullName": "Spark.Core.Manager.CatalogManager:ResourceInfo", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceInfo", + "sort": 3, + "meta": {} + }, + { + "name": "MethodInfo", + "fullName": "Spark.Core.Manager.CatalogManager:MethodInfo", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-MethodInfo", + "sort": 3, + "meta": {} + }, + { + "name": "ParameterInfo", + "fullName": "Spark.Core.Manager.CatalogManager:ParameterInfo", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ParameterInfo", + "sort": 3, + "meta": {} + }, + { + "name": "ResourceProperty", + "fullName": "Spark.Core.Manager.CatalogManager:ResourceProperty", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-ResourceProperty", + "sort": 3, + "meta": {} + }, + { + "name": "EntityProperty", + "fullName": "Spark.Core.Manager.CatalogManager:EntityProperty", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.CatalogManager-temptable-EntityProperty", + "sort": 3, + "meta": {} + }, + { + "name": "dsConfig", + "fullName": "Spark.Core.Manager.CatalogManager:dsConfig", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.CatalogManager-dataset-dsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "dsResource", + "fullName": "Spark.Core.Manager.CatalogManager:dsResource", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.CatalogManager-dataset-dsResource", + "sort": 3, + "meta": {} + }, + { + "name": "EnumValueMember", + "fullName": "Spark.Core.Util.EnumValueMember", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.EnumValueMember", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "EnumValueMember", + "fullName": "Spark.Core.Util.EnumValueMember:EnumValueMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumValueMember-constructor-EnumValueMember", + "sort": 3, + "meta": {} + }, + { + "name": "value", + "fullName": "Spark.Core.Util.EnumValueMember:value", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumValueMember-property-value", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumValueMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumValueMember-method-equals", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumValueMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumValueMember-method-equals", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "toString", + "fullName": "Spark.Core.Util.EnumValueMember:toString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumValueMember-method-toString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "UpdateDataRequest", + "fullName": "OpenEdge.BusinessLogic.UpdateDataRequest", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateDataRequest", + "sort": 1, + "meta": {} + }, + { + "name": "CommitScope", + "fullName": "OpenEdge.BusinessLogic.UpdateDataRequest:CommitScope", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-property-CommitScope", + "sort": 3, + "meta": {} + }, + { + "name": "CustomRequest", + "fullName": "OpenEdge.BusinessLogic.UpdateDataRequest:CustomRequest", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-property-CustomRequest", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.UpdateDataRequest:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.UpdateDataRequest:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.UpdateDataRequest-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "CryptoEncryptAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "CryptoEncryptAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:CryptoEncryptAlgorithmEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-constructor-CryptoEncryptAlgorithmEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "CryptoEncryptAlgorithmEnum", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:CryptoEncryptAlgorithmEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-constructor-CryptoEncryptAlgorithmEnum", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CBC_128", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_128", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_128", + "sort": 3, + "meta": {} + }, + { + "name": "AES_OFB_256", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_256", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_256", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CBC_192", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_192", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_192", + "sort": 3, + "meta": {} + }, + { + "name": "DES_CBC_56", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_CBC_56", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_CBC_56", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CBC_256", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CBC_256", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CBC_256", + "sort": 3, + "meta": {} + }, + { + "name": "DES_CFB_56", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_CFB_56", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_CFB_56", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CFB_128", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_128", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_128", + "sort": 3, + "meta": {} + }, + { + "name": "DES_ECB_56", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_ECB_56", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_ECB_56", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CFB_192", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_192", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_192", + "sort": 3, + "meta": {} + }, + { + "name": "DES_OFB_56", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES_OFB_56", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES_OFB_56", + "sort": 3, + "meta": {} + }, + { + "name": "AES_CFB_256", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_CFB_256", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_CFB_256", + "sort": 3, + "meta": {} + }, + { + "name": "DES3_CBC_168", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_CBC_168", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_CBC_168", + "sort": 3, + "meta": {} + }, + { + "name": "AES_ECB_128", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_128", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_128", + "sort": 3, + "meta": {} + }, + { + "name": "DES3_CFB_168", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_CFB_168", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_CFB_168", + "sort": 3, + "meta": {} + }, + { + "name": "AES_ECB_192", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_192", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_192", + "sort": 3, + "meta": {} + }, + { + "name": "DES3_ECB_168", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_ECB_168", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_ECB_168", + "sort": 3, + "meta": {} + }, + { + "name": "AES_ECB_256", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_ECB_256", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_ECB_256", + "sort": 3, + "meta": {} + }, + { + "name": "DES3_OFB_168", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:DES3_OFB_168", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-DES3_OFB_168", + "sort": 3, + "meta": {} + }, + { + "name": "AES_OFB_128", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_128", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_128", + "sort": 3, + "meta": {} + }, + { + "name": "RC4_ECB_128", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:RC4_ECB_128", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-RC4_ECB_128", + "sort": 3, + "meta": {} + }, + { + "name": "AES_OFB_192", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:AES_OFB_192", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-property-AES_OFB_192", + "sort": 3, + "meta": {} + }, + { + "name": "enumFromString", + "fullName": "Spark.Core.Util.CryptoEncryptAlgorithmEnum:enumFromString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoEncryptAlgorithmEnum-method-enumFromString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "LongcharOutputStream", + "fullName": "Spark.Core.Util.LongcharOutputStream", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.LongcharOutputStream", + "sort": 1, + "meta": {} + }, + { + "name": "StreamData", + "fullName": "Spark.Core.Util.LongcharOutputStream:StreamData", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.LongcharOutputStream-property-StreamData", + "sort": 3, + "meta": {} + }, + { + "name": "Write", + "fullName": "Spark.Core.Util.LongcharOutputStream:Write", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharOutputStream-method-Write", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Write", + "fullName": "Spark.Core.Util.LongcharOutputStream:Write", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharOutputStream-method-Write", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Write", + "fullName": "Spark.Core.Util.LongcharOutputStream:Write", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.LongcharOutputStream-method-Write", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ILoggingManager", + "fullName": "Spark.Core.Manager.ILoggingManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.ILoggingManager", + "sort": 1, + "meta": {} + }, + { + "name": "oLogConfig", + "fullName": "Spark.Core.Manager.ILoggingManager:oLogConfig", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ILoggingManager-property-oLogConfig", + "sort": 3, + "meta": {} + }, + { + "name": "logMessage", + "fullName": "Spark.Core.Manager.ILoggingManager:logMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ILoggingManager-method-logMessage", + "sort": 3, + "meta": {} + }, + { + "name": "logError", + "fullName": "Spark.Core.Manager.ILoggingManager:logError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ILoggingManager-method-logError", + "sort": 3, + "meta": {} + }, + { + "name": "updateLoggingLevel", + "fullName": "Spark.Core.Manager.ILoggingManager:updateLoggingLevel", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ILoggingManager-method-updateLoggingLevel", + "sort": 3, + "meta": {} + }, + { + "name": "updateLogEntryTypes", + "fullName": "Spark.Core.Manager.ILoggingManager:updateLogEntryTypes", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ILoggingManager-method-updateLogEntryTypes", + "sort": 3, + "meta": {} + }, + { + "name": "ErrorTypeEnum", + "fullName": "Spark.Core.Util.ErrorTypeEnum", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "ErrorTypeEnum", + "fullName": "Spark.Core.Util.ErrorTypeEnum:ErrorTypeEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-constructor-ErrorTypeEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ErrorTypeEnum", + "fullName": "Spark.Core.Util.ErrorTypeEnum:ErrorTypeEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-constructor-ErrorTypeEnum", + "sort": 3, + "meta": {} + }, + { + "name": "default", + "fullName": "Spark.Core.Util.ErrorTypeEnum:default", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-default", + "sort": 3, + "meta": {} + }, + { + "name": "error", + "fullName": "Spark.Core.Util.ErrorTypeEnum:error", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-error", + "sort": 3, + "meta": {} + }, + { + "name": "fatal", + "fullName": "Spark.Core.Util.ErrorTypeEnum:fatal", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-fatal", + "sort": 3, + "meta": {} + }, + { + "name": "trace", + "fullName": "Spark.Core.Util.ErrorTypeEnum:trace", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-trace", + "sort": 3, + "meta": {} + }, + { + "name": "warning", + "fullName": "Spark.Core.Util.ErrorTypeEnum:warning", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-warning", + "sort": 3, + "meta": {} + }, + { + "name": "information", + "fullName": "Spark.Core.Util.ErrorTypeEnum:information", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-information", + "sort": 3, + "meta": {} + }, + { + "name": "success", + "fullName": "Spark.Core.Util.ErrorTypeEnum:success", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-success", + "sort": 3, + "meta": {} + }, + { + "name": "validation", + "fullName": "Spark.Core.Util.ErrorTypeEnum:validation", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-property-validation", + "sort": 3, + "meta": {} + }, + { + "name": "enumFromString", + "fullName": "Spark.Core.Util.ErrorTypeEnum:enumFromString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ErrorTypeEnum-method-enumFromString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "QueryBuilder", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder", + "sort": 1, + "meta": {} + }, + { + "name": "GetTableBuffer", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:GetTableBuffer", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-GetTableBuffer", + "sort": 3, + "meta": {} + }, + { + "name": "GetFieldBuffer", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:GetFieldBuffer", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-GetFieldBuffer", + "sort": 3, + "meta": {} + }, + { + "name": "MapOperator", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:MapOperator", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MapOperator", + "sort": 3, + "meta": {} + }, + { + "name": "MapJoin", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:MapJoin", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MapJoin", + "sort": 3, + "meta": {} + }, + { + "name": "BuildGroup", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildGroup", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildGroup", + "sort": 3, + "meta": {} + }, + { + "name": "BuildClause", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildClause", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildClause", + "sort": 3, + "meta": {} + }, + { + "name": "BuildQuery", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQuery", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQuery", + "sort": 3, + "meta": {} + }, + { + "name": "BuildQueryString", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString", + "sort": 3, + "meta": {} + }, + { + "name": "BuildQueryString", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString", + "sort": 3, + "meta": {} + }, + { + "name": "BuildQueryStrings", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryStrings", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryStrings", + "sort": 3, + "meta": {} + }, + { + "name": "BuildQueryString", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:BuildQueryString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-BuildQueryString", + "sort": 3, + "meta": {} + }, + { + "name": "MergeQueryStrings", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:MergeQueryStrings", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-MergeQueryStrings", + "sort": 3, + "meta": {} + }, + { + "name": "ParseIsoDate", + "fullName": "OpenEdge.BusinessLogic.Query.QueryBuilder:ParseIsoDate", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Query.QueryBuilder-method-ParseIsoDate", + "sort": 3, + "meta": {} + }, + { + "name": "Reflection", + "fullName": "Spark.Core.Util.Reflection", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Reflection", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "getConstructors", + "fullName": "Spark.Core.Util.Reflection:getConstructors", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getConstructors", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getProperties", + "fullName": "Spark.Core.Util.Reflection:getProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getProperties", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getVariables", + "fullName": "Spark.Core.Util.Reflection:getVariables", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getVariables", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getMethods", + "fullName": "Spark.Core.Util.Reflection:getMethods", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getMethods", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getClassSignature", + "fullName": "Spark.Core.Util.Reflection:getClassSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getClassSignature", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getClassSignature", + "fullName": "Spark.Core.Util.Reflection:getClassSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Reflection-method-getClassSignature", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "DOHEventHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "DOHEventHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:DOHEventHandler", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-constructor-DOHEventHandler", + "sort": 3, + "meta": {} + }, + { + "name": "DOHEventHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:DOHEventHandler", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-destructor-DOHEventHandler", + "sort": 3, + "meta": {} + }, + { + "name": "oLogger", + "fullName": "Spark.Core.Handler.DOHEventHandler:oLogger", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-property-oLogger", + "sort": 3, + "meta": {} + }, + { + "name": "oCatalogManager", + "fullName": "Spark.Core.Handler.DOHEventHandler:oCatalogManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-property-oCatalogManager", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Handler.DOHEventHandler:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "SessionCleanup", + "fullName": "Spark.Core.Handler.DOHEventHandler:SessionCleanup", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-SessionCleanup", + "sort": 3, + "meta": {} + }, + { + "name": "GetStatusReason", + "fullName": "Spark.Core.Handler.DOHEventHandler:GetStatusReason", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-GetStatusReason", + "sort": 3, + "meta": {} + }, + { + "name": "DefineEvents", + "fullName": "Spark.Core.Handler.DOHEventHandler:DefineEvents", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-DefineEvents", + "sort": 3, + "meta": {} + }, + { + "name": "InitializeRegistries", + "fullName": "Spark.Core.Handler.DOHEventHandler:InitializeRegistries", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-InitializeRegistries", + "sort": 3, + "meta": {} + }, + { + "name": "UpdateLogging", + "fullName": "Spark.Core.Handler.DOHEventHandler:UpdateLogging", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-UpdateLogging", + "sort": 3, + "meta": {} + }, + { + "name": "AuthorizeOperationHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:AuthorizeOperationHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-AuthorizeOperationHandler", + "sort": 3, + "meta": {} + }, + { + "name": "DiscoverServiceHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:DiscoverServiceHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-DiscoverServiceHandler", + "sort": 3, + "meta": {} + }, + { + "name": "LoadEntityHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:LoadEntityHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-LoadEntityHandler", + "sort": 3, + "meta": {} + }, + { + "name": "InvokingHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:InvokingHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-InvokingHandler", + "sort": 3, + "meta": {} + }, + { + "name": "InvokedHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:InvokedHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-InvokedHandler", + "sort": 3, + "meta": {} + }, + { + "name": "OperationErrorHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:OperationErrorHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-OperationErrorHandler", + "sort": 3, + "meta": {} + }, + { + "name": "UnloadEntityHandler", + "fullName": "Spark.Core.Handler.DOHEventHandler:UnloadEntityHandler", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Handler.DOHEventHandler-method-UnloadEntityHandler", + "sort": 3, + "meta": {} + }, + { + "name": "IAbstractMessage", + "fullName": "Spark.Core.Message.IAbstractMessage", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Message.IAbstractMessage", + "sort": 1, + "meta": {} + }, + { + "name": "messageKeyPin", + "fullName": "Spark.Core.Message.IAbstractMessage:messageKeyPin", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-property-messageKeyPin", + "sort": 3, + "meta": {} + }, + { + "name": "promoteObject", + "fullName": "Spark.Core.Message.IAbstractMessage:promoteObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-promoteObject", + "sort": 3, + "meta": {} + }, + { + "name": "demoteObject", + "fullName": "Spark.Core.Message.IAbstractMessage:demoteObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-demoteObject", + "sort": 3, + "meta": {} + }, + { + "name": "setNullParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setNullParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setNullParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParam", + "fullName": "Spark.Core.Message.IAbstractMessage:setParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-setParam", + "sort": 3, + "meta": {} + }, + { + "name": "getParams", + "fullName": "Spark.Core.Message.IAbstractMessage:getParams", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParams", + "sort": 3, + "meta": {} + }, + { + "name": "getParamCount", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamCount", + "sort": 3, + "meta": {} + }, + { + "name": "hasParam", + "fullName": "Spark.Core.Message.IAbstractMessage:hasParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-hasParam", + "sort": 3, + "meta": {} + }, + { + "name": "removeParam", + "fullName": "Spark.Core.Message.IAbstractMessage:removeParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-removeParam", + "sort": 3, + "meta": {} + }, + { + "name": "getParamObject", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamType", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamType", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamType", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonText", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonText", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonText", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonText", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonText", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonText", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsChar", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsChar", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsCharEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsCharEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongChar", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLongChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongChar", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLongChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongChar", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongCharEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLongCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLongCharEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLongCharEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLongCharEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsIntEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsIntEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsIntEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsIntEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsIntEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsIntEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64Ex", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt64Ex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64Ex", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsInt64Ex", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsInt64Ex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsInt64Ex", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDec", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDec", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDecEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDecEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDecEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDecEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDecEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDecEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDate", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDate", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDateEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDateEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDateEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDateEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDateEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDateEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetime", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetime", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZ", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZ", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZ", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZ", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZ", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsDatetimeTZEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsDatetimeTZEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsDatetimeTZEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLog", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLog", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLogEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLogEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLogEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsLogEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsLogEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsLogEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowid", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRowid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowid", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRowid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowidEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRowidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRowidEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRowidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRowidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecid", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRecid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecid", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRecid", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecid", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecidEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRecidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsRecidEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsRecidEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsRecidEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptr", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsMemptr", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptr", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptr", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsMemptr", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptr", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptrEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsMemptrEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptrEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsMemptrEx", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsMemptrEx", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsMemptrEx", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonObject", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonObject", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonObject", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonArray", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsJsonArray", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsJsonArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsJsonArray", + "sort": 3, + "meta": {} + }, + { + "name": "getParamAsHandle", + "fullName": "Spark.Core.Message.IAbstractMessage:getParamAsHandle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-getParamAsHandle", + "sort": 3, + "meta": {} + }, + { + "name": "serializeMessage", + "fullName": "Spark.Core.Message.IAbstractMessage:serializeMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.IAbstractMessage-method-serializeMessage", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.NamedQuery", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery", + "sort": 1, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:NamedQuery", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:NamedQuery", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:NamedQuery", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQuery", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:NamedQuery", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-constructor-NamedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "Name", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:Name", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-property-Name", + "sort": 3, + "meta": {} + }, + { + "name": "Parameters", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:Parameters", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-property-Parameters", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.NamedQuery:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQuery-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "EnumNameMember", + "fullName": "Spark.Core.Util.EnumNameMember", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.EnumNameMember", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "EnumNameMember", + "fullName": "Spark.Core.Util.EnumNameMember:EnumNameMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumNameMember-constructor-EnumNameMember", + "sort": 3, + "meta": {} + }, + { + "name": "name", + "fullName": "Spark.Core.Util.EnumNameMember:name", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumNameMember-property-name", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumNameMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameMember-method-equals", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumNameMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameMember-method-equals", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "toString", + "fullName": "Spark.Core.Util.EnumNameMember:toString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameMember-method-toString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "LoggingManager", + "fullName": "Spark.Core.Manager.LoggingManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.LoggingManager", + "sort": 1, + "meta": {} + }, + { + "name": "LoggingManager", + "fullName": "Spark.Core.Manager.LoggingManager:LoggingManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.LoggingManager-constructor-LoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "LogConfigPath", + "fullName": "Spark.Core.Manager.LoggingManager:LogConfigPath", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.LoggingManager-property-LogConfigPath", + "sort": 3, + "meta": {} + }, + { + "name": "oLogConfig", + "fullName": "Spark.Core.Manager.LoggingManager:oLogConfig", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.LoggingManager-property-oLogConfig", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.LoggingManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.LoggingManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "updateLoggingLevel", + "fullName": "Spark.Core.Manager.LoggingManager:updateLoggingLevel", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-updateLoggingLevel", + "sort": 3, + "meta": {} + }, + { + "name": "updateLogEntryTypes", + "fullName": "Spark.Core.Manager.LoggingManager:updateLogEntryTypes", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-updateLogEntryTypes", + "sort": 3, + "meta": {} + }, + { + "name": "logMessage", + "fullName": "Spark.Core.Manager.LoggingManager:logMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-logMessage", + "sort": 3, + "meta": {} + }, + { + "name": "logError", + "fullName": "Spark.Core.Manager.LoggingManager:logError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.LoggingManager-method-logError", + "sort": 3, + "meta": {} + }, + { + "name": "OERealmDefs", + "fullName": "Spark.Core.Constant.OERealmDefs", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Constant.OERealmDefs", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "REALM_ATTR_LOCKED", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_LOCKED", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_LOCKED", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_USERID", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERID", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_ROLES", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_ROLES", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_ROLES", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_USERNAME", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERNAME", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERNAME", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_USERNUMBER", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_USERNUMBER", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_USERNUMBER", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_GROUPNUMBER", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_GROUPNUMBER", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_GROUPNUMBER", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_GIVENNAME", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_GIVENNAME", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_GIVENNAME", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_MIDDLEINITIAL", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_MIDDLEINITIAL", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_MIDDLEINITIAL", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_SURNAME", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_SURNAME", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_SURNAME", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_TELEPHONE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_TELEPHONE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_TELEPHONE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_EMAIL", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_EMAIL", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EMAIL", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_DESCRIPTION", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_DESCRIPTION", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DESCRIPTION", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_ENABLED", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_ENABLED", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_ENABLED", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_CREATEDATE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_CREATEDATE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CREATEDATE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_EXPIRED", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_EXPIRED", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EXPIRED", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_DOMAIN", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_DOMAIN", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DOMAIN", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_CN", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_CN", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CN", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_SN", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_SN", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_SN", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_UID", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_UID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_UID", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_TITLE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_TITLE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_TITLE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_STREET", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_STREET", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_STREET", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_POBOX", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_POBOX", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_POBOX", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_POSTALCODE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_POSTALCODE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_POSTALCODE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_CITY", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_CITY", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_CITY", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_STATE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_STATE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_STATE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_DISPLAYNAME", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_DISPLAYNAME", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_DISPLAYNAME", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_LANGUAGE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_LANGUAGE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_LANGUAGE", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_EMPLOYEENUM", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_EMPLOYEENUM", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_EMPLOYEENUM", + "sort": 3, + "meta": {} + }, + { + "name": "REALM_ATTR_MOBILE", + "fullName": "Spark.Core.Constant.OERealmDefs:REALM_ATTR_MOBILE", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Constant.OERealmDefs-property-REALM_ATTR_MOBILE", + "sort": 3, + "meta": {} + }, + { + "name": "AblFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser", + "sort": 1, + "meta": {} + }, + { + "name": "AblFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "AblFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "AblFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:AblFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-constructor-AblFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "ParseSortString", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseSortString", + "sort": 3, + "meta": {} + }, + { + "name": "ParseWhereString", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhereString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseWhereString", + "sort": 3, + "meta": {} + }, + { + "name": "IsMatchesExpression", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:IsMatchesExpression", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-IsMatchesExpression", + "sort": 3, + "meta": {} + }, + { + "name": "GetGroupParent", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:GetGroupParent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetGroupParent", + "sort": 3, + "meta": {} + }, + { + "name": "AddToGroup", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:AddToGroup", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-AddToGroup", + "sort": 3, + "meta": {} + }, + { + "name": "ParseSortBy", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortBy", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseSortBy", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ParseWhere", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhere", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseWhere", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Parse", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:Parse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-Parse", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ParseTableRequest", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseTableRequest", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-ParseTableRequest", + "sort": 3, + "meta": {} + }, + { + "name": "GetFieldValue", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:GetFieldValue", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetFieldValue", + "sort": 3, + "meta": {} + }, + { + "name": "GetJoin", + "fullName": "OpenEdge.BusinessLogic.Filter.AblFilterParser:GetJoin", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.AblFilterParser-method-GetJoin", + "sort": 3, + "meta": {} + }, + { + "name": "OSTools", + "fullName": "Spark.Core.Util.OSTools", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.OSTools", + "sort": 1, + "meta": {} + }, + { + "name": "configProjectDir", + "fullName": "Spark.Core.Util.OSTools:configProjectDir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-configProjectDir", + "sort": 3, + "meta": {} + }, + { + "name": "dlcdir", + "fullName": "Spark.Core.Util.OSTools:dlcdir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-dlcdir", + "sort": 3, + "meta": {} + }, + { + "name": "wrkdir", + "fullName": "Spark.Core.Util.OSTools:wrkdir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-wrkdir", + "sort": 3, + "meta": {} + }, + { + "name": "tmpdir", + "fullName": "Spark.Core.Util.OSTools:tmpdir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-tmpdir", + "sort": 3, + "meta": {} + }, + { + "name": "sparkConf", + "fullName": "Spark.Core.Util.OSTools:sparkConf", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-sparkConf", + "sort": 3, + "meta": {} + }, + { + "name": "catalinaBase", + "fullName": "Spark.Core.Util.OSTools:catalinaBase", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSTools-property-catalinaBase", + "sort": 3, + "meta": {} + }, + { + "name": "getFullPathname", + "fullName": "Spark.Core.Util.OSTools:getFullPathname", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-getFullPathname", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "osCopyDir", + "fullName": "Spark.Core.Util.OSTools:osCopyDir", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-osCopyDir", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "recurseDir", + "fullName": "Spark.Core.Util.OSTools:recurseDir", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-recurseDir", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "drillDir", + "fullName": "Spark.Core.Util.OSTools:drillDir", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-drillDir", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "processDir", + "fullName": "Spark.Core.Util.OSTools:processDir", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-processDir", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "osCopyFile", + "fullName": "Spark.Core.Util.OSTools:osCopyFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-osCopyFile", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "osCreateDirTree", + "fullName": "Spark.Core.Util.OSTools:osCreateDirTree", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-osCreateDirTree", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "osErrorMsg", + "fullName": "Spark.Core.Util.OSTools:osErrorMsg", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.OSTools-method-osErrorMsg", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ttDirStruct", + "fullName": "Spark.Core.Util.OSTools:ttDirStruct", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Util.OSTools-temptable-ttDirStruct", + "sort": 3, + "meta": {} + }, + { + "name": "JfpFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.JfpFilterParser", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser", + "sort": 1, + "meta": {} + }, + { + "name": "JfpFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "JfpFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "JfpFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.JfpFilterParser:JfpFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-constructor-JfpFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "ParseTableRequest", + "fullName": "OpenEdge.BusinessLogic.Filter.JfpFilterParser:ParseTableRequest", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.JfpFilterParser-method-ParseTableRequest", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "StopError", + "fullName": "Spark.Core.Util.StopError", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.StopError", + "sort": 1, + "meta": {} + }, + { + "name": "StopError", + "fullName": "Spark.Core.Util.StopError:StopError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.StopError-constructor-StopError", + "sort": 3, + "meta": {} + }, + { + "name": "KendoFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser", + "sort": 1, + "meta": {} + }, + { + "name": "KendoFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "KendoFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "KendoFilterParser", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:KendoFilterParser", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-constructor-KendoFilterParser", + "sort": 3, + "meta": {} + }, + { + "name": "ParsePredicate", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParsePredicate", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParsePredicate", + "sort": 3, + "meta": {} + }, + { + "name": "ParseWhere", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseWhere", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseWhere", + "sort": 3, + "meta": {} + }, + { + "name": "ParseWhere", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseWhere", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseWhere", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ParseSortBy", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseSortBy", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseSortBy", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Parse", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:Parse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-Parse", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ParseTableRequest", + "fullName": "OpenEdge.BusinessLogic.Filter.KendoFilterParser:ParseTableRequest", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.KendoFilterParser-method-ParseTableRequest", + "sort": 3, + "meta": {} + }, + { + "name": "EnumNameDescMember", + "fullName": "Spark.Core.Util.EnumNameDescMember", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "EnumNameDescMember", + "fullName": "Spark.Core.Util.EnumNameDescMember:EnumNameDescMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-constructor-EnumNameDescMember", + "sort": 3, + "meta": {} + }, + { + "name": "name", + "fullName": "Spark.Core.Util.EnumNameDescMember:name", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-property-name", + "sort": 3, + "meta": {} + }, + { + "name": "description", + "fullName": "Spark.Core.Util.EnumNameDescMember:description", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-property-description", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumNameDescMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-method-equals", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumNameDescMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-method-equals", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "toString", + "fullName": "Spark.Core.Util.EnumNameDescMember:toString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumNameDescMember-method-toString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Service", + "fullName": "Spark.Core.Service.Service", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Service.Service", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "Service", + "fullName": "Spark.Core.Service.Service:Service", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Service.Service-constructor-Service", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Service.Service:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Service-method-initialize", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Service.Service:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Service-method-dispose", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "FilterParserRegistry", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserRegistry", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry", + "sort": 1, + "meta": {} + }, + { + "name": "Registry", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserRegistry:Registry", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry-property-Registry", + "sort": 3, + "meta": {} + }, + { + "name": "InitializeRegistry", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserRegistry:InitializeRegistry", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserRegistry-method-InitializeRegistry", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "RequestScope", + "fullName": "Spark.Core.Util.RequestScope", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.RequestScope", + "sort": 1, + "meta": {} + }, + { + "name": "RequestScope", + "fullName": "Spark.Core.Util.RequestScope:RequestScope", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.RequestScope-constructor-RequestScope", + "sort": 3, + "meta": {} + }, + { + "name": "TimeOutError", + "fullName": "Spark.Core.Util.TimeOutError", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.TimeOutError", + "sort": 1, + "meta": {} + }, + { + "name": "TimeOutError", + "fullName": "Spark.Core.Util.TimeOutError:TimeOutError", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.TimeOutError-constructor-TimeOutError", + "sort": 3, + "meta": {} + }, + { + "name": "SessionManager", + "fullName": "Spark.Core.Manager.SessionManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.SessionManager", + "sort": 1, + "meta": {} + }, + { + "name": "SessionManager", + "fullName": "Spark.Core.Manager.SessionManager:SessionManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.SessionManager-constructor-SessionManager", + "sort": 3, + "meta": {} + }, + { + "name": "CurrentClientContext", + "fullName": "Spark.Core.Manager.SessionManager:CurrentClientContext", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SessionManager-property-CurrentClientContext", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.SessionManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.SessionManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "loadConfig", + "fullName": "Spark.Core.Manager.SessionManager:loadConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-loadConfig", + "sort": 3, + "meta": {} + }, + { + "name": "endRequestEnvironment", + "fullName": "Spark.Core.Manager.SessionManager:endRequestEnvironment", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-endRequestEnvironment", + "sort": 3, + "meta": {} + }, + { + "name": "resetSession", + "fullName": "Spark.Core.Manager.SessionManager:resetSession", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-resetSession", + "sort": 3, + "meta": {} + }, + { + "name": "databasesConnected", + "fullName": "Spark.Core.Manager.SessionManager:databasesConnected", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-databasesConnected", + "sort": 3, + "meta": {} + }, + { + "name": "establishRequestEnvironment", + "fullName": "Spark.Core.Manager.SessionManager:establishRequestEnvironment", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment", + "sort": 3, + "meta": {} + }, + { + "name": "establishRequestEnvironment", + "fullName": "Spark.Core.Manager.SessionManager:establishRequestEnvironment", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment", + "sort": 3, + "meta": {} + }, + { + "name": "establishRequestEnvironment", + "fullName": "Spark.Core.Manager.SessionManager:establishRequestEnvironment", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-establishRequestEnvironment", + "sort": 3, + "meta": {} + }, + { + "name": "assertUserCredentials", + "fullName": "Spark.Core.Manager.SessionManager:assertUserCredentials", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-assertUserCredentials", + "sort": 3, + "meta": {} + }, + { + "name": "getDatabaseOptions", + "fullName": "Spark.Core.Manager.SessionManager:getDatabaseOptions", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-getDatabaseOptions", + "sort": 3, + "meta": {} + }, + { + "name": "registerDomains", + "fullName": "Spark.Core.Manager.SessionManager:registerDomains", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-registerDomains", + "sort": 3, + "meta": {} + }, + { + "name": "userLogin", + "fullName": "Spark.Core.Manager.SessionManager:userLogin", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-userLogin", + "sort": 3, + "meta": {} + }, + { + "name": "decryptPassword", + "fullName": "Spark.Core.Manager.SessionManager:decryptPassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-decryptPassword", + "sort": 3, + "meta": {} + }, + { + "name": "setClientPrincipalAttributes", + "fullName": "Spark.Core.Manager.SessionManager:setClientPrincipalAttributes", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-setClientPrincipalAttributes", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.SessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.SessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.SessionManager:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "setSessionAttribute", + "fullName": "Spark.Core.Manager.SessionManager:setSessionAttribute", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-setSessionAttribute", + "sort": 3, + "meta": {} + }, + { + "name": "resetSessionAttributes", + "fullName": "Spark.Core.Manager.SessionManager:resetSessionAttributes", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-resetSessionAttributes", + "sort": 3, + "meta": {} + }, + { + "name": "getUserSSOToken", + "fullName": "Spark.Core.Manager.SessionManager:getUserSSOToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-getUserSSOToken", + "sort": 3, + "meta": {} + }, + { + "name": "getUserSSOToken", + "fullName": "Spark.Core.Manager.SessionManager:getUserSSOToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-getUserSSOToken", + "sort": 3, + "meta": {} + }, + { + "name": "getDomainAccessCode", + "fullName": "Spark.Core.Manager.SessionManager:getDomainAccessCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SessionManager-method-getDomainAccessCode", + "sort": 3, + "meta": {} + }, + { + "name": "ttConfig", + "fullName": "Spark.Core.Manager.SessionManager:ttConfig", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SessionManager-temptable-ttConfig", + "sort": 3, + "meta": {} + }, + { + "name": "ttDomains", + "fullName": "Spark.Core.Manager.SessionManager:ttDomains", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SessionManager-temptable-ttDomains", + "sort": 3, + "meta": {} + }, + { + "name": "ttDatabase", + "fullName": "Spark.Core.Manager.SessionManager:ttDatabase", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SessionManager-temptable-ttDatabase", + "sort": 3, + "meta": {} + }, + { + "name": "dsConfig", + "fullName": "Spark.Core.Manager.SessionManager:dsConfig", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.SessionManager-dataset-dsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "ServiceLifeCycleEnum", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "ServiceLifeCycleEnum", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:ServiceLifeCycleEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-constructor-ServiceLifeCycleEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "default", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:default", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-default", + "sort": 3, + "meta": {} + }, + { + "name": "session", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:session", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-session", + "sort": 3, + "meta": {} + }, + { + "name": "request", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:request", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-request", + "sort": 3, + "meta": {} + }, + { + "name": "none", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:none", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-property-none", + "sort": 3, + "meta": {} + }, + { + "name": "enumFromString", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:enumFromString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-method-enumFromString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stringFromEnum", + "fullName": "Spark.Core.Manager.ServiceLifeCycleEnum:stringFromEnum", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceLifeCycleEnum-method-stringFromEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "TransientScope", + "fullName": "Spark.Core.Util.TransientScope", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.TransientScope", + "sort": 1, + "meta": {} + }, + { + "name": "TransientScope", + "fullName": "Spark.Core.Util.TransientScope:TransientScope", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.TransientScope-constructor-TransientScope", + "sort": 3, + "meta": {} + }, + { + "name": "JsonPropertyNameEnum", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum", + "icon": "icon-enum", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum", + "sort": 1, + "meta": {} + }, + { + "name": "commitScope", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:commitScope", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-commitScope", + "sort": 3, + "meta": {} + }, + { + "name": "customParameter", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customParameter", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customParameter", + "sort": 3, + "meta": {} + }, + { + "name": "customRequest", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customRequest", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customRequest", + "sort": 3, + "meta": {} + }, + { + "name": "customResponse", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:customResponse", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-customResponse", + "sort": 3, + "meta": {} + }, + { + "name": "entries", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:entries", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-entries", + "sort": 3, + "meta": {} + }, + { + "name": "exact", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:exact", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-exact", + "sort": 3, + "meta": {} + }, + { + "name": "fieldName", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:fieldName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-fieldName", + "sort": 3, + "meta": {} + }, + { + "name": "filter", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:filter", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-filter", + "sort": 3, + "meta": {} + }, + { + "name": "join", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:join", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-join", + "sort": 3, + "meta": {} + }, + { + "name": "name", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:name", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-name", + "sort": 3, + "meta": {} + }, + { + "name": "namedQuery", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:namedQuery", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-namedQuery", + "sort": 3, + "meta": {} + }, + { + "name": "nextPagingCtx", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:nextPagingCtx", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-nextPagingCtx", + "sort": 3, + "meta": {} + }, + { + "name": "numResults", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:numResults", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-numResults", + "sort": 3, + "meta": {} + }, + { + "name": "object", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:object", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-object", + "sort": 3, + "meta": {} + }, + { + "name": "operator", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:operator", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-operator", + "sort": 3, + "meta": {} + }, + { + "name": "order", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:order", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-order", + "sort": 3, + "meta": {} + }, + { + "name": "pagingCtx", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:pagingCtx", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-pagingCtx", + "sort": 3, + "meta": {} + }, + { + "name": "params", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:params", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-params", + "sort": 3, + "meta": {} + }, + { + "name": "prevPagingCtx", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:prevPagingCtx", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-prevPagingCtx", + "sort": 3, + "meta": {} + }, + { + "name": "query", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:query", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-query", + "sort": 3, + "meta": {} + }, + { + "name": "resultCounts", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:resultCounts", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-resultCounts", + "sort": 3, + "meta": {} + }, + { + "name": "tableName", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:tableName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-tableName", + "sort": 3, + "meta": {} + }, + { + "name": "request", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:request", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-request", + "sort": 3, + "meta": {} + }, + { + "name": "requests", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:requests", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-requests", + "sort": 3, + "meta": {} + }, + { + "name": "response", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:response", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-response", + "sort": 3, + "meta": {} + }, + { + "name": "responses", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:responses", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-responses", + "sort": 3, + "meta": {} + }, + { + "name": "skip", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:skip", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-skip", + "sort": 3, + "meta": {} + }, + { + "name": "sort", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:sort", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-sort", + "sort": 3, + "meta": {} + }, + { + "name": "top", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:top", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-top", + "sort": 3, + "meta": {} + }, + { + "name": "typeName", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:typeName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-typeName", + "sort": 3, + "meta": {} + }, + { + "name": "value", + "fullName": "OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum:value", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.IO.JsonPropertyNameEnum-property-value", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataTableRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest", + "sort": 1, + "meta": {} + }, + { + "name": "GetDataTableRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:GetDataTableRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-constructor-GetDataTableRequest", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataTableRequest", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:GetDataTableRequest", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-constructor-GetDataTableRequest", + "sort": 3, + "meta": {} + }, + { + "name": "NumRecords", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:NumRecords", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-NumRecords", + "sort": 3, + "meta": {} + }, + { + "name": "PagingContext", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:PagingContext", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-PagingContext", + "sort": 3, + "meta": {} + }, + { + "name": "QueryDefinition", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:QueryDefinition", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-QueryDefinition", + "sort": 3, + "meta": {} + }, + { + "name": "QueryString", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:QueryString", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-QueryString", + "sort": 3, + "meta": {} + }, + { + "name": "Skip", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:Skip", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-Skip", + "sort": 3, + "meta": {} + }, + { + "name": "TableName", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:TableName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-property-TableName", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetDataTableRequest:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataTableRequest-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "String", + "fullName": "OpenEdge.Core.String", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.String", + "sort": 1, + "meta": {} + }, + { + "name": "String", + "fullName": "OpenEdge.Core.String:String", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.String-constructor-String", + "sort": 3, + "meta": {} + }, + { + "name": "String", + "fullName": "OpenEdge.Core.String:String", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.String-constructor-String", + "sort": 3, + "meta": {} + }, + { + "name": "String", + "fullName": "OpenEdge.Core.String:String", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.String-constructor-String", + "sort": 3, + "meta": {} + }, + { + "name": "Encoding", + "fullName": "OpenEdge.Core.String:Encoding", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.String-property-Encoding", + "sort": 3, + "meta": {} + }, + { + "name": "Value", + "fullName": "OpenEdge.Core.String:Value", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.String-property-Value", + "sort": 3, + "meta": {} + }, + { + "name": "Size", + "fullName": "OpenEdge.Core.String:Size", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.String-property-Size", + "sort": 3, + "meta": {} + }, + { + "name": "Trim", + "fullName": "OpenEdge.Core.String:Trim", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Trim", + "sort": 3, + "meta": {} + }, + { + "name": "Trim", + "fullName": "OpenEdge.Core.String:Trim", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Trim", + "sort": 3, + "meta": {} + }, + { + "name": "Empty", + "fullName": "OpenEdge.Core.String:Empty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Empty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Unknown", + "fullName": "OpenEdge.Core.String:Unknown", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Unknown", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.String:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Equals", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": {} + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": {} + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Split", + "fullName": "OpenEdge.Core.String:Split", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Split", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Join", + "fullName": "OpenEdge.Core.String:Join", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Join", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Join", + "fullName": "OpenEdge.Core.String:Join", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Join", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Join", + "fullName": "OpenEdge.Core.String:Join", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Join", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToString", + "fullName": "OpenEdge.Core.String:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "Append", + "fullName": "OpenEdge.Core.String:Append", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Append", + "sort": 3, + "meta": {} + }, + { + "name": "Append", + "fullName": "OpenEdge.Core.String:Append", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Append", + "sort": 3, + "meta": {} + }, + { + "name": "Prepend", + "fullName": "OpenEdge.Core.String:Prepend", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Prepend", + "sort": 3, + "meta": {} + }, + { + "name": "Prepend", + "fullName": "OpenEdge.Core.String:Prepend", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-Prepend", + "sort": 3, + "meta": {} + }, + { + "name": "IsQuoted", + "fullName": "OpenEdge.Core.String:IsQuoted", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-IsQuoted", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsQuoted", + "fullName": "OpenEdge.Core.String:IsQuoted", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-IsQuoted", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNullOrEmpty", + "fullName": "OpenEdge.Core.String:IsNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-IsNullOrEmpty", + "sort": 3, + "meta": {} + }, + { + "name": "IsNullOrEmpty", + "fullName": "OpenEdge.Core.String:IsNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.String-method-IsNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ICatalogManager", + "fullName": "Spark.Core.Manager.ICatalogManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.ICatalogManager", + "sort": 1, + "meta": {} + }, + { + "name": "ApiVersion", + "fullName": "Spark.Core.Manager.ICatalogManager:ApiVersion", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-property-ApiVersion", + "sort": 3, + "meta": {} + }, + { + "name": "IdProperty", + "fullName": "Spark.Core.Manager.ICatalogManager:IdProperty", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-property-IdProperty", + "sort": 3, + "meta": {} + }, + { + "name": "ReadFilter", + "fullName": "Spark.Core.Manager.ICatalogManager:ReadFilter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-property-ReadFilter", + "sort": 3, + "meta": {} + }, + { + "name": "ServicePrefix", + "fullName": "Spark.Core.Manager.ICatalogManager:ServicePrefix", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-property-ServicePrefix", + "sort": 3, + "meta": {} + }, + { + "name": "UseRequestObj", + "fullName": "Spark.Core.Manager.ICatalogManager:UseRequestObj", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-property-UseRequestObj", + "sort": 3, + "meta": {} + }, + { + "name": "loadResources", + "fullName": "Spark.Core.Manager.ICatalogManager:loadResources", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-loadResources", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Manager.ICatalogManager:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "describeEntity", + "fullName": "Spark.Core.Manager.ICatalogManager:describeEntity", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-describeEntity", + "sort": 3, + "meta": {} + }, + { + "name": "describeFields", + "fullName": "Spark.Core.Manager.ICatalogManager:describeFields", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-describeFields", + "sort": 3, + "meta": {} + }, + { + "name": "describeResource", + "fullName": "Spark.Core.Manager.ICatalogManager:describeResource", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-describeResource", + "sort": 3, + "meta": {} + }, + { + "name": "getCatalog", + "fullName": "Spark.Core.Manager.ICatalogManager:getCatalog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-getCatalog", + "sort": 3, + "meta": {} + }, + { + "name": "stopProcedures", + "fullName": "Spark.Core.Manager.ICatalogManager:stopProcedures", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-stopProcedures", + "sort": 3, + "meta": {} + }, + { + "name": "registerAllServices", + "fullName": "Spark.Core.Manager.ICatalogManager:registerAllServices", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-registerAllServices", + "sort": 3, + "meta": {} + }, + { + "name": "registerService", + "fullName": "Spark.Core.Manager.ICatalogManager:registerService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ICatalogManager-method-registerService", + "sort": 3, + "meta": {} + }, + { + "name": "AnnotationWriter", + "fullName": "OpenEdge.Core.Util.AnnotationWriter", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter", + "sort": 1, + "meta": {} + }, + { + "name": "AnnotationWriter", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter", + "sort": 3, + "meta": {} + }, + { + "name": "AnnotationWriter", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter", + "sort": 3, + "meta": {} + }, + { + "name": "AnnotationWriter", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AnnotationWriter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-constructor-AnnotationWriter", + "sort": 3, + "meta": {} + }, + { + "name": "Initialize", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Initialize", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-Initialize", + "sort": 3, + "meta": {} + }, + { + "name": "Destroy", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Destroy", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-Destroy", + "sort": 3, + "meta": {} + }, + { + "name": "ParseXref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:ParseXref", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ParseXref", + "sort": 3, + "meta": {} + }, + { + "name": "ParseXref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:ParseXref", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ParseXref", + "sort": 3, + "meta": {} + }, + { + "name": "FindSourceRecord", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:FindSourceRecord", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-FindSourceRecord", + "sort": 3, + "meta": {} + }, + { + "name": "GetAnnotations", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:GetAnnotations", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetAnnotations", + "sort": 3, + "meta": {} + }, + { + "name": "GetAnnotations", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:GetAnnotations", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetAnnotations", + "sort": 3, + "meta": {} + }, + { + "name": "GetRefName", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:GetRefName", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-GetRefName", + "sort": 3, + "meta": {} + }, + { + "name": "ExtractAnnotations", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:ExtractAnnotations", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-ExtractAnnotations", + "sort": 3, + "meta": {} + }, + { + "name": "AddReferences", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AddReferences", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddReferences", + "sort": 3, + "meta": {} + }, + { + "name": "AddAnnotationToGroup", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AddAnnotationToGroup", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddAnnotationToGroup", + "sort": 3, + "meta": {} + }, + { + "name": "AddAnnotationToGroup", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:AddAnnotationToGroup", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-method-AddAnnotationToGroup", + "sort": 3, + "meta": {} + }, + { + "name": "Source", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Source", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Source", + "sort": 3, + "meta": {} + }, + { + "name": "String-ref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:String-ref", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-String-ref", + "sort": 3, + "meta": {} + }, + { + "name": "Parameter-ref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Parameter-ref", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Parameter-ref", + "sort": 3, + "meta": {} + }, + { + "name": "Class-ref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Class-ref", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Class-ref", + "sort": 3, + "meta": {} + }, + { + "name": "Reference", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Reference", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Reference", + "sort": 3, + "meta": {} + }, + { + "name": "Interface-ref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Interface-ref", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Interface-ref", + "sort": 3, + "meta": {} + }, + { + "name": "Dataset-ref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Dataset-ref", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Dataset-ref", + "sort": 3, + "meta": {} + }, + { + "name": "Relation", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:Relation", + "icon": "icon-temptable", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-temptable-Relation", + "sort": 3, + "meta": {} + }, + { + "name": "dsXref", + "fullName": "OpenEdge.Core.Util.AnnotationWriter:dsXref", + "icon": "icon-dataset", + "url": "#!/class/OpenEdge.Core.Util.AnnotationWriter-dataset-dsXref", + "sort": 3, + "meta": {} + }, + { + "name": "GetTableResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse", + "sort": 1, + "meta": {} + }, + { + "name": "GetTableResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetTableResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetTableResultCountResponse", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:GetTableResultCountResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-constructor-GetTableResultCountResponse", + "sort": 3, + "meta": {} + }, + { + "name": "Exact", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:Exact", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-Exact", + "sort": 3, + "meta": {} + }, + { + "name": "NumResults", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:NumResults", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-NumResults", + "sort": 3, + "meta": {} + }, + { + "name": "TableName", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:TableName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-property-TableName", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetTableResultCountResponse:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetTableResultCountResponse-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQueryParameter", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter", + "sort": 1, + "meta": {} + }, + { + "name": "NamedQueryParameter", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQueryParameter", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQueryParameter", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter", + "sort": 3, + "meta": {} + }, + { + "name": "NamedQueryParameter", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:NamedQueryParameter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-constructor-NamedQueryParameter", + "sort": 3, + "meta": {} + }, + { + "name": "Name", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:Name", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Name", + "sort": 3, + "meta": {} + }, + { + "name": "Value", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:Value", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Value", + "sort": 3, + "meta": {} + }, + { + "name": "Values", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:Values", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-property-Values", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.NamedQueryParameter:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.NamedQueryParameter-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "ForeignKey", + "fullName": "Spark.Core.Util.ForeignKey", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.ForeignKey", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "ForeignKey", + "fullName": "Spark.Core.Util.ForeignKey:ForeignKey", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ForeignKey-constructor-ForeignKey", + "sort": 3, + "meta": {} + }, + { + "name": "setForeignTable", + "fullName": "Spark.Core.Util.ForeignKey:setForeignTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ForeignKey-method-setForeignTable", + "sort": 3, + "meta": {} + }, + { + "name": "addForeignField", + "fullName": "Spark.Core.Util.ForeignKey:addForeignField", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ForeignKey-method-addForeignField", + "sort": 3, + "meta": {} + }, + { + "name": "addLocalField", + "fullName": "Spark.Core.Util.ForeignKey:addLocalField", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.ForeignKey-method-addLocalField", + "sort": 3, + "meta": {} + }, + { + "name": "JsonConverter", + "fullName": "OpenEdge.Core.Json.JsonConverter", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter", + "sort": 1, + "meta": {} + }, + { + "name": "JsonConverter", + "fullName": "OpenEdge.Core.Json.JsonConverter:JsonConverter", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-constructor-JsonConverter", + "sort": 3, + "meta": {} + }, + { + "name": "ToArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "AddToArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:AddToArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-AddToArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "AddToObject", + "fullName": "OpenEdge.Core.Json.JsonConverter:AddToObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-AddToObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Merge", + "fullName": "OpenEdge.Core.Json.JsonConverter:Merge", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-Merge", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToScalar", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToScalar", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToScalar", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToScalar", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToScalar", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToScalar", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObjectArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObjectArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObjectArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToObjectArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToObjectArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToObjectArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToPrimitiveArray", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToPrimitiveArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToPrimitiveArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToEnum", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToEnum", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToEnum", + "fullName": "OpenEdge.Core.Json.JsonConverter:ToEnum", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonConverter-method-ToEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "JsonSerializer", + "fullName": "OpenEdge.Core.Json.JsonSerializer", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer", + "sort": 1, + "meta": {} + }, + { + "name": "JsonSerializer", + "fullName": "OpenEdge.Core.Json.JsonSerializer:JsonSerializer", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-constructor-JsonSerializer", + "sort": 3, + "meta": {} + }, + { + "name": "PROP_DATA", + "fullName": "OpenEdge.Core.Json.JsonSerializer:PROP_DATA", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_DATA", + "sort": 3, + "meta": {} + }, + { + "name": "PROP_SERIALIZER", + "fullName": "OpenEdge.Core.Json.JsonSerializer:PROP_SERIALIZER", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_SERIALIZER", + "sort": 3, + "meta": {} + }, + { + "name": "PROP_OBJECT", + "fullName": "OpenEdge.Core.Json.JsonSerializer:PROP_OBJECT", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_OBJECT", + "sort": 3, + "meta": {} + }, + { + "name": "PROP_PRODS-VERSION", + "fullName": "OpenEdge.Core.Json.JsonSerializer:PROP_PRODS-VERSION", + "icon": "icon-property", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-property-PROP_PRODS-VERSION", + "sort": 3, + "meta": {} + }, + { + "name": "Serialize", + "fullName": "OpenEdge.Core.Json.JsonSerializer:Serialize", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-Serialize", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Serialize", + "fullName": "OpenEdge.Core.Json.JsonSerializer:Serialize", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-Serialize", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Deserialize", + "fullName": "OpenEdge.Core.Json.JsonSerializer:Deserialize", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-Deserialize", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Deserialize", + "fullName": "OpenEdge.Core.Json.JsonSerializer:Deserialize", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-Deserialize", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NewSerializableObject", + "fullName": "OpenEdge.Core.Json.JsonSerializer:NewSerializableObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-NewSerializableObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToAblObject", + "fullName": "OpenEdge.Core.Json.JsonSerializer:ToAblObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-ToAblObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ToAblObject", + "fullName": "OpenEdge.Core.Json.JsonSerializer:ToAblObject", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.JsonSerializer-method-ToAblObject", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Serialize", + "fullName": "Spark.Core.Util.Serialize", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Serialize", + "sort": 1, + "meta": {} + }, + { + "name": "serializeClassToBinary", + "fullName": "Spark.Core.Util.Serialize:serializeClassToBinary", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-serializeClassToBinary", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "serializeClassToBinary", + "fullName": "Spark.Core.Util.Serialize:serializeClassToBinary", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-serializeClassToBinary", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "serializeClassToJson", + "fullName": "Spark.Core.Util.Serialize:serializeClassToJson", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-serializeClassToJson", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "serializeClassToJson", + "fullName": "Spark.Core.Util.Serialize:serializeClassToJson", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-serializeClassToJson", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "deserializeClassFromBinary", + "fullName": "Spark.Core.Util.Serialize:deserializeClassFromBinary", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromBinary", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "deserializeClassFromBinary", + "fullName": "Spark.Core.Util.Serialize:deserializeClassFromBinary", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromBinary", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "deserializeClassFromJson", + "fullName": "Spark.Core.Util.Serialize:deserializeClassFromJson", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromJson", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "deserializeClassFromJson", + "fullName": "Spark.Core.Util.Serialize:deserializeClassFromJson", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Serialize-method-deserializeClassFromJson", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "UTF8Encoder", + "fullName": "OpenEdge.Core.Util.UTF8Encoder", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder", + "sort": 1, + "meta": {} + }, + { + "name": "Encode", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:Encode", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Encode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Decode", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:Decode", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Decode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "UnicodeToUtf8", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:UnicodeToUtf8", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-UnicodeToUtf8", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "UnicodeToUtf8", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:UnicodeToUtf8", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-UnicodeToUtf8", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Utf8ToUnicode", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:Utf8ToUnicode", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Utf8ToUnicode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Utf8ToUnicode", + "fullName": "OpenEdge.Core.Util.UTF8Encoder:Utf8ToUnicode", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Util.UTF8Encoder-method-Utf8ToUnicode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ContainerScope", + "fullName": "Spark.Core.Util.ContainerScope", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.ContainerScope", + "sort": 1, + "meta": {} + }, + { + "name": "ContainerScope", + "fullName": "Spark.Core.Util.ContainerScope:ContainerScope", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.ContainerScope-constructor-ContainerScope", + "sort": 3, + "meta": {} + }, + { + "name": "ISparkEntity", + "fullName": "Spark.Core.Service.ISparkEntity", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Service.ISparkEntity", + "sort": 1, + "meta": {} + }, + { + "name": "oContextMessage", + "fullName": "Spark.Core.Service.ISparkEntity:oContextMessage", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.ISparkEntity-property-oContextMessage", + "sort": 3, + "meta": {} + }, + { + "name": "LastCount", + "fullName": "Spark.Core.Service.ISparkEntity:LastCount", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.ISparkEntity-property-LastCount", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Service.ISparkEntity:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "postRowFill", + "fullName": "Spark.Core.Service.ISparkEntity:postRowFill", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-postRowFill", + "sort": 3, + "meta": {} + }, + { + "name": "readData", + "fullName": "Spark.Core.Service.ISparkEntity:readData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-readData", + "sort": 3, + "meta": {} + }, + { + "name": "createData", + "fullName": "Spark.Core.Service.ISparkEntity:createData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-createData", + "sort": 3, + "meta": {} + }, + { + "name": "updateData", + "fullName": "Spark.Core.Service.ISparkEntity:updateData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-updateData", + "sort": 3, + "meta": {} + }, + { + "name": "deleteData", + "fullName": "Spark.Core.Service.ISparkEntity:deleteData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-deleteData", + "sort": 3, + "meta": {} + }, + { + "name": "submitData", + "fullName": "Spark.Core.Service.ISparkEntity:submitData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ISparkEntity-method-submitData", + "sort": 3, + "meta": {} + }, + { + "name": "BusinessEntity", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "BusinessEntity", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:BusinessEntity", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-constructor-BusinessEntity", + "sort": 3, + "meta": {} + }, + { + "name": "ProDataSet", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ProDataSet", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-ProDataSet", + "sort": 3, + "meta": {} + }, + { + "name": "ProDataSource", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ProDataSource", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-ProDataSource", + "sort": 3, + "meta": {} + }, + { + "name": "SkipList", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:SkipList", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-SkipList", + "sort": 3, + "meta": {} + }, + { + "name": "UpdateMode", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:UpdateMode", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-property-UpdateMode", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "EmptyDataSet", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:EmptyDataSet", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-EmptyDataSet", + "sort": 3, + "meta": {} + }, + { + "name": "CreateData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CreateData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CreateData", + "sort": 3, + "meta": {} + }, + { + "name": "UpdateData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:UpdateData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-UpdateData", + "sort": 3, + "meta": {} + }, + { + "name": "DeleteData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:DeleteData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DeleteData", + "sort": 3, + "meta": {} + }, + { + "name": "ProcessBIData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ProcessBIData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ProcessBIData", + "sort": 3, + "meta": {} + }, + { + "name": "SaveRows", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:SaveRows", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SaveRows", + "sort": 3, + "meta": {} + }, + { + "name": "Submit", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:Submit", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-Submit", + "sort": 3, + "meta": {} + }, + { + "name": "ProcessTransactionalError", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ProcessTransactionalError", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ProcessTransactionalError", + "sort": 3, + "meta": {} + }, + { + "name": "GetRowErrorMessage", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:GetRowErrorMessage", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetRowErrorMessage", + "sort": 3, + "meta": {} + }, + { + "name": "CommitData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CommitData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitData", + "sort": 3, + "meta": {} + }, + { + "name": "AttachDataSources", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:AttachDataSources", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AttachDataSources", + "sort": 3, + "meta": {} + }, + { + "name": "AttachDataSources", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:AttachDataSources", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AttachDataSources", + "sort": 3, + "meta": {} + }, + { + "name": "DetachDataSources", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:DetachDataSources", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DetachDataSources", + "sort": 3, + "meta": {} + }, + { + "name": "ValidateDataSources", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ValidateDataSources", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ValidateDataSources", + "sort": 3, + "meta": {} + }, + { + "name": "ValidateFieldLists", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ValidateFieldLists", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ValidateFieldLists", + "sort": 3, + "meta": {} + }, + { + "name": "GetSkipListEntry", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:GetSkipListEntry", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetSkipListEntry", + "sort": 3, + "meta": {} + }, + { + "name": "CommitChildBuffers", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CommitChildBuffers", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitChildBuffers", + "sort": 3, + "meta": {} + }, + { + "name": "GetBufferIndex", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:GetBufferIndex", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetBufferIndex", + "sort": 3, + "meta": {} + }, + { + "name": "CommitRows", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CommitRows", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CommitRows", + "sort": 3, + "meta": {} + }, + { + "name": "GetRowState", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:GetRowState", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-GetRowState", + "sort": 3, + "meta": {} + }, + { + "name": "AdjustWhere", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:AdjustWhere", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AdjustWhere", + "sort": 3, + "meta": {} + }, + { + "name": "AdjustWheres", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:AdjustWheres", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-AdjustWheres", + "sort": 3, + "meta": {} + }, + { + "name": "SetFillWhereString", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:SetFillWhereString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetFillWhereString", + "sort": 3, + "meta": {} + }, + { + "name": "SetFillWhereStrings", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:SetFillWhereStrings", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetFillWhereStrings", + "sort": 3, + "meta": {} + }, + { + "name": "SetUndos", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:SetUndos", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-SetUndos", + "sort": 3, + "meta": {} + }, + { + "name": "ReadData", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:ReadData", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-ReadData", + "sort": 3, + "meta": {} + }, + { + "name": "DoFill", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:DoFill", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-DoFill", + "sort": 3, + "meta": {} + }, + { + "name": "CountDatasetRecords", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CountDatasetRecords", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CountDatasetRecords", + "sort": 3, + "meta": {} + }, + { + "name": "CountBufferRecords", + "fullName": "OpenEdge.BusinessLogic.BusinessEntity:CountBufferRecords", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.BusinessEntity-method-CountBufferRecords", + "sort": 3, + "meta": {} + }, + { + "name": "OEMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics", + "icon": "icon-class", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "OEMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics:OEMetrics", + "icon": "icon-constructor", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-constructor-OEMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "OEMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics:OEMetrics", + "icon": "icon-destructor", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-destructor-OEMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "Instance", + "fullName": "Spark.Diagnostic.Util.OEMetrics:Instance", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-Instance", + "sort": 3, + "meta": {} + }, + { + "name": "OutputTime", + "fullName": "Spark.Diagnostic.Util.OEMetrics:OutputTime", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-OutputTime", + "sort": 3, + "meta": {} + }, + { + "name": "ApplicationName", + "fullName": "Spark.Diagnostic.Util.OEMetrics:ApplicationName", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-ApplicationName", + "sort": 3, + "meta": {} + }, + { + "name": "RequestCount", + "fullName": "Spark.Diagnostic.Util.OEMetrics:RequestCount", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-RequestCount", + "sort": 3, + "meta": {} + }, + { + "name": "RequestStart", + "fullName": "Spark.Diagnostic.Util.OEMetrics:RequestStart", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-RequestStart", + "sort": 3, + "meta": {} + }, + { + "name": "MetricsOutput", + "fullName": "Spark.Diagnostic.Util.OEMetrics:MetricsOutput", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-MetricsOutput", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorMetricsURI", + "fullName": "Spark.Diagnostic.Util.OEMetrics:CollectorMetricsURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorMetricsURI", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorProfileURI", + "fullName": "Spark.Diagnostic.Util.OEMetrics:CollectorProfileURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorProfileURI", + "sort": 3, + "meta": {} + }, + { + "name": "CollectorLogsURI", + "fullName": "Spark.Diagnostic.Util.OEMetrics:CollectorLogsURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-CollectorLogsURI", + "sort": 3, + "meta": {} + }, + { + "name": "oMetricsLogger", + "fullName": "Spark.Diagnostic.Util.OEMetrics:oMetricsLogger", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-oMetricsLogger", + "sort": 3, + "meta": {} + }, + { + "name": "oConfig", + "fullName": "Spark.Diagnostic.Util.OEMetrics:oConfig", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-oConfig", + "sort": 3, + "meta": {} + }, + { + "name": "oRemoteMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics:oRemoteMetrics", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-property-oRemoteMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestPath", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetRequestPath", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestPath", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionPath", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetSessionPath", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionPath", + "sort": 3, + "meta": {} + }, + { + "name": "GetObjectsPath", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetObjectsPath", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetObjectsPath", + "sort": 3, + "meta": {} + }, + { + "name": "InMatchList", + "fullName": "Spark.Diagnostic.Util.OEMetrics:InMatchList", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-InMatchList", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestInfo", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetRequestInfo", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestInfo", + "sort": 3, + "meta": {} + }, + { + "name": "GetProcedureName", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetProcedureName", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetProcedureName", + "sort": 3, + "meta": {} + }, + { + "name": "GetAgentID", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetAgentID", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetAgentID", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionID", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetSessionID", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionID", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestID", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetRequestID", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestID", + "sort": 3, + "meta": {} + }, + { + "name": "ResetOutput", + "fullName": "Spark.Diagnostic.Util.OEMetrics:ResetOutput", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-ResetOutput", + "sort": 3, + "meta": {} + }, + { + "name": "SendToCollector", + "fullName": "Spark.Diagnostic.Util.OEMetrics:SendToCollector", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-SendToCollector", + "sort": 3, + "meta": {} + }, + { + "name": "WriteSessionReports", + "fullName": "Spark.Diagnostic.Util.OEMetrics:WriteSessionReports", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteSessionReports", + "sort": 3, + "meta": {} + }, + { + "name": "StartProfiler", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StartProfiler", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartProfiler", + "sort": 3, + "meta": {} + }, + { + "name": "StartProfiler", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StartProfiler", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartProfiler", + "sort": 3, + "meta": {} + }, + { + "name": "WriteProfiler", + "fullName": "Spark.Diagnostic.Util.OEMetrics:WriteProfiler", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteProfiler", + "sort": 3, + "meta": {} + }, + { + "name": "WriteProfiler", + "fullName": "Spark.Diagnostic.Util.OEMetrics:WriteProfiler", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-WriteProfiler", + "sort": 3, + "meta": {} + }, + { + "name": "ProcessAccessLogs", + "fullName": "Spark.Diagnostic.Util.OEMetrics:ProcessAccessLogs", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-ProcessAccessLogs", + "sort": 3, + "meta": {} + }, + { + "name": "StartTrackingObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StartTrackingObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartTrackingObjects", + "sort": 3, + "meta": {} + }, + { + "name": "StartTrackingObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StartTrackingObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StartTrackingObjects", + "sort": 3, + "meta": {} + }, + { + "name": "StopTrackingObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StopTrackingObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StopTrackingObjects", + "sort": 3, + "meta": {} + }, + { + "name": "StopTrackingObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:StopTrackingObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-StopTrackingObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetABLObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "TrackAllAgents", + "fullName": "Spark.Diagnostic.Util.OEMetrics:TrackAllAgents", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-TrackAllAgents", + "sort": 3, + "meta": {} + }, + { + "name": "GetAllABLObjectsReport", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetAllABLObjectsReport", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetAllABLObjectsReport", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionABLObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetSessionABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionABLObjects", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetSessionABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetRequestMetrics", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetRequestMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionMetrics", + "fullName": "Spark.Diagnostic.Util.OEMetrics:GetSessionMetrics", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-GetSessionMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "PrepareSessionReports", + "fullName": "Spark.Diagnostic.Util.OEMetrics:PrepareSessionReports", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-PrepareSessionReports", + "sort": 3, + "meta": {} + }, + { + "name": "PrepareSessionReports", + "fullName": "Spark.Diagnostic.Util.OEMetrics:PrepareSessionReports", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.OEMetrics-method-PrepareSessionReports", + "sort": 3, + "meta": {} + }, + { + "name": "ServiceManager", + "fullName": "Spark.Core.Manager.ServiceManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.ServiceManager", + "sort": 1, + "meta": {} + }, + { + "name": "ServiceManager", + "fullName": "Spark.Core.Manager.ServiceManager:ServiceManager", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.ServiceManager-constructor-ServiceManager", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Manager.ServiceManager:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ServiceManager-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.ServiceManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.ServiceManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "loadConfig", + "fullName": "Spark.Core.Manager.ServiceManager:loadConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-loadConfig", + "sort": 3, + "meta": {} + }, + { + "name": "getServiceImplementation", + "fullName": "Spark.Core.Manager.ServiceManager:getServiceImplementation", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getServiceImplementation", + "sort": 3, + "meta": {} + }, + { + "name": "getLifeCycleScope", + "fullName": "Spark.Core.Manager.ServiceManager:getLifeCycleScope", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getLifeCycleScope", + "sort": 3, + "meta": {} + }, + { + "name": "getLifeCycleScope", + "fullName": "Spark.Core.Manager.ServiceManager:getLifeCycleScope", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getLifeCycleScope", + "sort": 3, + "meta": {} + }, + { + "name": "callServiceFunction", + "fullName": "Spark.Core.Manager.ServiceManager:callServiceFunction", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-callServiceFunction", + "sort": 3, + "meta": {} + }, + { + "name": "callServiceFunction", + "fullName": "Spark.Core.Manager.ServiceManager:callServiceFunction", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-callServiceFunction", + "sort": 3, + "meta": {} + }, + { + "name": "getService", + "fullName": "Spark.Core.Manager.ServiceManager:getService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getService", + "sort": 3, + "meta": {} + }, + { + "name": "getService", + "fullName": "Spark.Core.Manager.ServiceManager:getService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getService", + "sort": 3, + "meta": {} + }, + { + "name": "getService", + "fullName": "Spark.Core.Manager.ServiceManager:getService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-getService", + "sort": 3, + "meta": {} + }, + { + "name": "startService", + "fullName": "Spark.Core.Manager.ServiceManager:startService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-startService", + "sort": 3, + "meta": {} + }, + { + "name": "stopServices", + "fullName": "Spark.Core.Manager.ServiceManager:stopServices", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-stopServices", + "sort": 3, + "meta": {} + }, + { + "name": "stopService", + "fullName": "Spark.Core.Manager.ServiceManager:stopService", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ServiceManager-method-stopService", + "sort": 3, + "meta": {} + }, + { + "name": "ttImplMapping", + "fullName": "Spark.Core.Manager.ServiceManager:ttImplMapping", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ServiceManager-temptable-ttImplMapping", + "sort": 3, + "meta": {} + }, + { + "name": "ttLifeCycle", + "fullName": "Spark.Core.Manager.ServiceManager:ttLifeCycle", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ServiceManager-temptable-ttLifeCycle", + "sort": 3, + "meta": {} + }, + { + "name": "ttLifeCycleMapping", + "fullName": "Spark.Core.Manager.ServiceManager:ttLifeCycleMapping", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ServiceManager-temptable-ttLifeCycleMapping", + "sort": 3, + "meta": {} + }, + { + "name": "ttServices", + "fullName": "Spark.Core.Manager.ServiceManager:ttServices", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ServiceManager-temptable-ttServices", + "sort": 3, + "meta": {} + }, + { + "name": "dsConfig", + "fullName": "Spark.Core.Manager.ServiceManager:dsConfig", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.ServiceManager-dataset-dsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "FilterParserBuilder", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder", + "sort": 1, + "meta": {} + }, + { + "name": "FilterParserBuilder", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:FilterParserBuilder", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-constructor-FilterParserBuilder", + "sort": 3, + "meta": {} + }, + { + "name": "FilterPattern", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:FilterPattern", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-FilterPattern", + "sort": 3, + "meta": {} + }, + { + "name": "Parser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Parser", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-Parser", + "sort": 3, + "meta": {} + }, + { + "name": "Registry", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Registry", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-property-Registry", + "sort": 3, + "meta": {} + }, + { + "name": "Build", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Build", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Build", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:Build", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-Build", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "BuildParser", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:BuildParser", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-BuildParser", + "sort": 3, + "meta": {} + }, + { + "name": "TableName", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:TableName", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-TableName", + "sort": 3, + "meta": {} + }, + { + "name": "TableName", + "fullName": "OpenEdge.BusinessLogic.Filter.FilterParserBuilder:TableName", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.Filter.FilterParserBuilder-method-TableName", + "sort": 3, + "meta": {} + }, + { + "name": "ClientContext", + "fullName": "Spark.Core.Manager.ClientContext", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.ClientContext", + "sort": 1, + "meta": {} + }, + { + "name": "ClientContext", + "fullName": "Spark.Core.Manager.ClientContext:ClientContext", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.ClientContext-constructor-ClientContext", + "sort": 3, + "meta": {} + }, + { + "name": "ClientContext", + "fullName": "Spark.Core.Manager.ClientContext:ClientContext", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Manager.ClientContext-destructor-ClientContext", + "sort": 3, + "meta": {} + }, + { + "name": "oStateManager", + "fullName": "Spark.Core.Manager.ClientContext:oStateManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-oStateManager", + "sort": 3, + "meta": {} + }, + { + "name": "clientPrincipal", + "fullName": "Spark.Core.Manager.ClientContext:clientPrincipal", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-clientPrincipal", + "sort": 3, + "meta": {} + }, + { + "name": "contextID", + "fullName": "Spark.Core.Manager.ClientContext:contextID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-contextID", + "sort": 3, + "meta": {} + }, + { + "name": "userDomain", + "fullName": "Spark.Core.Manager.ClientContext:userDomain", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-userDomain", + "sort": 3, + "meta": {} + }, + { + "name": "userID", + "fullName": "Spark.Core.Manager.ClientContext:userID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-userID", + "sort": 3, + "meta": {} + }, + { + "name": "userExtra", + "fullName": "Spark.Core.Manager.ClientContext:userExtra", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-userExtra", + "sort": 3, + "meta": {} + }, + { + "name": "loginExpiration", + "fullName": "Spark.Core.Manager.ClientContext:loginExpiration", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-loginExpiration", + "sort": 3, + "meta": {} + }, + { + "name": "activityPassword", + "fullName": "Spark.Core.Manager.ClientContext:activityPassword", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-activityPassword", + "sort": 3, + "meta": {} + }, + { + "name": "stateClassID", + "fullName": "Spark.Core.Manager.ClientContext:stateClassID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.ClientContext-property-stateClassID", + "sort": 3, + "meta": {} + }, + { + "name": "initializeContext", + "fullName": "Spark.Core.Manager.ClientContext:initializeContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-initializeContext", + "sort": 3, + "meta": {} + }, + { + "name": "initializeContext", + "fullName": "Spark.Core.Manager.ClientContext:initializeContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-initializeContext", + "sort": 3, + "meta": {} + }, + { + "name": "initializeContext", + "fullName": "Spark.Core.Manager.ClientContext:initializeContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-initializeContext", + "sort": 3, + "meta": {} + }, + { + "name": "initializeUserProperties", + "fullName": "Spark.Core.Manager.ClientContext:initializeUserProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-initializeUserProperties", + "sort": 3, + "meta": {} + }, + { + "name": "initializeUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:initializeUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-initializeUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "getSSOToken", + "fullName": "Spark.Core.Manager.ClientContext:getSSOToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getSSOToken", + "sort": 3, + "meta": {} + }, + { + "name": "getSSORawToken", + "fullName": "Spark.Core.Manager.ClientContext:getSSORawToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getSSORawToken", + "sort": 3, + "meta": {} + }, + { + "name": "prepareForSerializeContext", + "fullName": "Spark.Core.Manager.ClientContext:prepareForSerializeContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-prepareForSerializeContext", + "sort": 3, + "meta": {} + }, + { + "name": "serializeContext", + "fullName": "Spark.Core.Manager.ClientContext:serializeContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-serializeContext", + "sort": 3, + "meta": {} + }, + { + "name": "saveContext", + "fullName": "Spark.Core.Manager.ClientContext:saveContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-saveContext", + "sort": 3, + "meta": {} + }, + { + "name": "setTrackingChangesOnUserProperties", + "fullName": "Spark.Core.Manager.ClientContext:setTrackingChangesOnUserProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setTrackingChangesOnUserProperties", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyArray", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyArray", + "sort": 3, + "meta": {} + }, + { + "name": "getUserProperties", + "fullName": "Spark.Core.Manager.ClientContext:getUserProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserProperties", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyArray", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyArray", + "sort": 3, + "meta": {} + }, + { + "name": "getUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:getUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsLongchar", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsLongchar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsLongchar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsChar", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsInt", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsInt64", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDec", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsLog", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDate", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDatetime", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDatetimeTz", + "fullName": "Spark.Core.Manager.ClientContext:getUserPropertyAsDatetimeTz", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserPropertyAsDatetimeTz", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsChar", + "fullName": "Spark.Core.Manager.ClientContext:getUserArrayPropertyAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsDec", + "fullName": "Spark.Core.Manager.ClientContext:getUserArrayPropertyAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsInt", + "fullName": "Spark.Core.Manager.ClientContext:getUserArrayPropertyAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-getUserArrayPropertyAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "hasUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:hasUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-hasUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "removeUserProperty", + "fullName": "Spark.Core.Manager.ClientContext:removeUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-removeUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.ClientContext:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "setActivityPassword", + "fullName": "Spark.Core.Manager.ClientContext:setActivityPassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.ClientContext-method-setActivityPassword", + "sort": 3, + "meta": {} + }, + { + "name": "ttUserSessionProp", + "fullName": "Spark.Core.Manager.ClientContext:ttUserSessionProp", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ClientContext-temptable-ttUserSessionProp", + "sort": 3, + "meta": {} + }, + { + "name": "dbUserSessionProp", + "fullName": "Spark.Core.Manager.ClientContext:dbUserSessionProp", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.ClientContext-temptable-dbUserSessionProp", + "sort": 3, + "meta": {} + }, + { + "name": "dsTtUserSessionProp", + "fullName": "Spark.Core.Manager.ClientContext:dsTtUserSessionProp", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.ClientContext-dataset-dsTtUserSessionProp", + "sort": 3, + "meta": {} + }, + { + "name": "dsDbUserSessionProp", + "fullName": "Spark.Core.Manager.ClientContext:dsDbUserSessionProp", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.ClientContext-dataset-dsDbUserSessionProp", + "sort": 3, + "meta": {} + }, + { + "name": "ContextMessage", + "fullName": "Spark.Core.Message.ContextMessage", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Message.ContextMessage", + "sort": 1, + "meta": {} + }, + { + "name": "ContextMessage", + "fullName": "Spark.Core.Message.ContextMessage:ContextMessage", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Message.ContextMessage-constructor-ContextMessage", + "sort": 3, + "meta": {} + }, + { + "name": "ValidationErrorTableName", + "fullName": "Spark.Core.Message.ContextMessage:ValidationErrorTableName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.ContextMessage-property-ValidationErrorTableName", + "sort": 3, + "meta": {} + }, + { + "name": "ContextPropName", + "fullName": "Spark.Core.Message.ContextMessage:ContextPropName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.ContextMessage-property-ContextPropName", + "sort": 3, + "meta": {} + }, + { + "name": "ReturnValueName", + "fullName": "Spark.Core.Message.ContextMessage:ReturnValueName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.ContextMessage-property-ReturnValueName", + "sort": 3, + "meta": {} + }, + { + "name": "ReturnValue", + "fullName": "Spark.Core.Message.ContextMessage:ReturnValue", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Message.ContextMessage-property-ReturnValue", + "sort": 3, + "meta": {} + }, + { + "name": "storeProperties", + "fullName": "Spark.Core.Message.ContextMessage:storeProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-storeProperties", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "setContextPropName", + "fullName": "Spark.Core.Message.ContextMessage:setContextPropName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-setContextPropName", + "sort": 3, + "meta": {} + }, + { + "name": "setReturnValueName", + "fullName": "Spark.Core.Message.ContextMessage:setReturnValueName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-setReturnValueName", + "sort": 3, + "meta": {} + }, + { + "name": "addMessage", + "fullName": "Spark.Core.Message.ContextMessage:addMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-addMessage", + "sort": 3, + "meta": {} + }, + { + "name": "addMessage", + "fullName": "Spark.Core.Message.ContextMessage:addMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-addMessage", + "sort": 3, + "meta": {} + }, + { + "name": "createMessage", + "fullName": "Spark.Core.Message.ContextMessage:createMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-createMessage", + "sort": 3, + "meta": {} + }, + { + "name": "createMessage", + "fullName": "Spark.Core.Message.ContextMessage:createMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-createMessage", + "sort": 3, + "meta": {} + }, + { + "name": "getMessageArray", + "fullName": "Spark.Core.Message.ContextMessage:getMessageArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-getMessageArray", + "sort": 3, + "meta": {} + }, + { + "name": "hasAnyMessages", + "fullName": "Spark.Core.Message.ContextMessage:hasAnyMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-hasAnyMessages", + "sort": 3, + "meta": {} + }, + { + "name": "hasInformation", + "fullName": "Spark.Core.Message.ContextMessage:hasInformation", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-hasInformation", + "sort": 3, + "meta": {} + }, + { + "name": "hasWarnings", + "fullName": "Spark.Core.Message.ContextMessage:hasWarnings", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-hasWarnings", + "sort": 3, + "meta": {} + }, + { + "name": "hasErrors", + "fullName": "Spark.Core.Message.ContextMessage:hasErrors", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-hasErrors", + "sort": 3, + "meta": {} + }, + { + "name": "removeWarningMessages", + "fullName": "Spark.Core.Message.ContextMessage:removeWarningMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-removeWarningMessages", + "sort": 3, + "meta": {} + }, + { + "name": "removeMessages", + "fullName": "Spark.Core.Message.ContextMessage:removeMessages", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-removeMessages", + "sort": 3, + "meta": {} + }, + { + "name": "translateMessage", + "fullName": "Spark.Core.Message.ContextMessage:translateMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-translateMessage", + "sort": 3, + "meta": {} + }, + { + "name": "translateMessage", + "fullName": "Spark.Core.Message.ContextMessage:translateMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ContextMessage-method-translateMessage", + "sort": 3, + "meta": {} + }, + { + "name": "ttMessage", + "fullName": "Spark.Core.Message.ContextMessage:ttMessage", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Message.ContextMessage-temptable-ttMessage", + "sort": 3, + "meta": {} + }, + { + "name": "EnumMember", + "fullName": "Spark.Core.Util.EnumMember", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.EnumMember", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "EnumMember", + "fullName": "Spark.Core.Util.EnumMember:EnumMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember", + "sort": 3, + "meta": {} + }, + { + "name": "EnumMember", + "fullName": "Spark.Core.Util.EnumMember:EnumMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember", + "sort": 3, + "meta": {} + }, + { + "name": "EnumMember", + "fullName": "Spark.Core.Util.EnumMember:EnumMember", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.EnumMember-constructor-EnumMember", + "sort": 3, + "meta": {} + }, + { + "name": "name", + "fullName": "Spark.Core.Util.EnumMember:name", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumMember-property-name", + "sort": 3, + "meta": {} + }, + { + "name": "value", + "fullName": "Spark.Core.Util.EnumMember:value", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.EnumMember-property-value", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumMember-method-equals", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumMember-method-equals", + "sort": 3, + "meta": {} + }, + { + "name": "equals", + "fullName": "Spark.Core.Util.EnumMember:equals", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumMember-method-equals", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "toString", + "fullName": "Spark.Core.Util.EnumMember:toString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.EnumMember-method-toString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "FieldInfo", + "fullName": "Spark.Core.Util.FieldInfo", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.FieldInfo", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "FieldInfo", + "fullName": "Spark.Core.Util.FieldInfo:FieldInfo", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.FieldInfo-constructor-FieldInfo", + "sort": 3, + "meta": {} + }, + { + "name": "FieldInfo", + "fullName": "Spark.Core.Util.FieldInfo:FieldInfo", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.FieldInfo-constructor-FieldInfo", + "sort": 3, + "meta": {} + }, + { + "name": "DatasetName", + "fullName": "Spark.Core.Util.FieldInfo:DatasetName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.FieldInfo-property-DatasetName", + "sort": 3, + "meta": {} + }, + { + "name": "TempTableName", + "fullName": "Spark.Core.Util.FieldInfo:TempTableName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.FieldInfo-property-TempTableName", + "sort": 3, + "meta": {} + }, + { + "name": "getField", + "fullName": "Spark.Core.Util.FieldInfo:getField", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-getField", + "sort": 3, + "meta": {} + }, + { + "name": "makeRequired", + "fullName": "Spark.Core.Util.FieldInfo:makeRequired", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-makeRequired", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "addProperty", + "fullName": "Spark.Core.Util.FieldInfo:addProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-addProperty", + "sort": 3, + "meta": {} + }, + { + "name": "serialize", + "fullName": "Spark.Core.Util.FieldInfo:serialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.FieldInfo-method-serialize", + "sort": 3, + "meta": {} + }, + { + "name": "SchemaManager", + "fullName": "Spark.Core.Manager.SchemaManager", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.SchemaManager", + "sort": 1, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Manager.SchemaManager:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.SchemaManager-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "addSchemaToSignature", + "fullName": "Spark.Core.Manager.SchemaManager:addSchemaToSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-addSchemaToSignature", + "sort": 3, + "meta": {} + }, + { + "name": "examineDatabases", + "fullName": "Spark.Core.Manager.SchemaManager:examineDatabases", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-examineDatabases", + "sort": 3, + "meta": {} + }, + { + "name": "examineTables", + "fullName": "Spark.Core.Manager.SchemaManager:examineTables", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-examineTables", + "sort": 3, + "meta": {} + }, + { + "name": "examineTables", + "fullName": "Spark.Core.Manager.SchemaManager:examineTables", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-examineTables", + "sort": 3, + "meta": {} + }, + { + "name": "registerDatabases", + "fullName": "Spark.Core.Manager.SchemaManager:registerDatabases", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-registerDatabases", + "sort": 3, + "meta": {} + }, + { + "name": "fixSerializedNames", + "fullName": "Spark.Core.Manager.SchemaManager:fixSerializedNames", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-fixSerializedNames", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "deleteObjects", + "fullName": "Spark.Core.Manager.SchemaManager:deleteObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-deleteObjects", + "sort": 3, + "meta": {} + }, + { + "name": "dumpObjects", + "fullName": "Spark.Core.Manager.SchemaManager:dumpObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-dumpObjects", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Manager.SchemaManager:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-initialize", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "dispose", + "fullName": "Spark.Core.Manager.SchemaManager:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-dispose", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "getObject", + "fullName": "Spark.Core.Manager.SchemaManager:getObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getObject", + "sort": 3, + "meta": {} + }, + { + "name": "getObjectChildren", + "fullName": "Spark.Core.Manager.SchemaManager:getObjectChildren", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getObjectChildren", + "sort": 3, + "meta": {} + }, + { + "name": "getObjectList", + "fullName": "Spark.Core.Manager.SchemaManager:getObjectList", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getObjectList", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Manager.SchemaManager:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Manager.SchemaManager:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "getTempTable", + "fullName": "Spark.Core.Manager.SchemaManager:getTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-getTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "initMethodSignature", + "fullName": "Spark.Core.Manager.SchemaManager:initMethodSignature", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-initMethodSignature", + "sort": 3, + "meta": {} + }, + { + "name": "initSchema", + "fullName": "Spark.Core.Manager.SchemaManager:initSchema", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-initSchema", + "sort": 3, + "meta": {} + }, + { + "name": "registerDataset", + "fullName": "Spark.Core.Manager.SchemaManager:registerDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-registerDataset", + "sort": 3, + "meta": {} + }, + { + "name": "registerTempTable", + "fullName": "Spark.Core.Manager.SchemaManager:registerTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-registerTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "registerTempTable", + "fullName": "Spark.Core.Manager.SchemaManager:registerTempTable", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.SchemaManager-method-registerTempTable", + "sort": 3, + "meta": {} + }, + { + "name": "SchemaObject", + "fullName": "Spark.Core.Manager.SchemaManager:SchemaObject", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SchemaManager-temptable-SchemaObject", + "sort": 3, + "meta": {} + }, + { + "name": "ConfigDB", + "fullName": "Spark.Core.Manager.SchemaManager:ConfigDB", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigDB", + "sort": 3, + "meta": {} + }, + { + "name": "ConfigTable", + "fullName": "Spark.Core.Manager.SchemaManager:ConfigTable", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigTable", + "sort": 3, + "meta": {} + }, + { + "name": "ConfigField", + "fullName": "Spark.Core.Manager.SchemaManager:ConfigField", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Manager.SchemaManager-temptable-ConfigField", + "sort": 3, + "meta": {} + }, + { + "name": "dsConfig", + "fullName": "Spark.Core.Manager.SchemaManager:dsConfig", + "icon": "icon-dataset", + "url": "#!/class/Spark.Core.Manager.SchemaManager-dataset-dsConfig", + "sort": 3, + "meta": {} + }, + { + "name": "TOTP", + "fullName": "Spark.Core.Security.TOTP", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Security.TOTP", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "TOTP", + "fullName": "Spark.Core.Security.TOTP:TOTP", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.TOTP-constructor-TOTP", + "sort": 3, + "meta": {} + }, + { + "name": "TOTP", + "fullName": "Spark.Core.Security.TOTP:TOTP", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.TOTP-constructor-TOTP", + "sort": 3, + "meta": {} + }, + { + "name": "TOTP", + "fullName": "Spark.Core.Security.TOTP:TOTP", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.TOTP-constructor-TOTP", + "sort": 3, + "meta": {} + }, + { + "name": "TOTP", + "fullName": "Spark.Core.Security.TOTP:TOTP", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Security.TOTP-destructor-TOTP", + "sort": 3, + "meta": {} + }, + { + "name": "Token", + "fullName": "Spark.Core.Security.TOTP:Token", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Security.TOTP-property-Token", + "sort": 3, + "meta": {} + }, + { + "name": "UnixEpoch", + "fullName": "Spark.Core.Security.TOTP:UnixEpoch", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Security.TOTP-property-UnixEpoch", + "sort": 3, + "meta": {} + }, + { + "name": "EpochCounter", + "fullName": "Spark.Core.Security.TOTP:EpochCounter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Security.TOTP-property-EpochCounter", + "sort": 3, + "meta": {} + }, + { + "name": "newToken", + "fullName": "Spark.Core.Security.TOTP:newToken", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.TOTP-method-newToken", + "sort": 3, + "meta": {} + }, + { + "name": "QuerySortEntry", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry", + "sort": 1, + "meta": {} + }, + { + "name": "QuerySortEntry", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry", + "sort": 3, + "meta": {} + }, + { + "name": "QuerySortEntry", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry", + "sort": 3, + "meta": {} + }, + { + "name": "QuerySortEntry", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:QuerySortEntry", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-constructor-QuerySortEntry", + "sort": 3, + "meta": {} + }, + { + "name": "FieldName", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:FieldName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-property-FieldName", + "sort": 3, + "meta": {} + }, + { + "name": "SortOrder", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:SortOrder", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-property-SortOrder", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.QuerySortEntry:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QuerySortEntry-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "HMAC", + "fullName": "Spark.Core.Security.HMAC", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Security.HMAC", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "GenHash", + "fullName": "Spark.Core.Security.HMAC:GenHash", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.HMAC-method-GenHash", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "TruncateHMAC", + "fullName": "Spark.Core.Security.HMAC:TruncateHMAC", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.HMAC-method-TruncateHMAC", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Base32", + "fullName": "Spark.Core.Util.Base32", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Base32", + "sort": 1, + "meta": {} + }, + { + "name": "Base32", + "fullName": "Spark.Core.Util.Base32:Base32", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.Base32-constructor-Base32", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "DecodeToBinary", + "fullName": "Spark.Core.Util.Base32:DecodeToBinary", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Base32-method-DecodeToBinary", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "ConvertToHex", + "fullName": "Spark.Core.Util.Base32:ConvertToHex", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Base32-method-ConvertToHex", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "EncodeData", + "fullName": "Spark.Core.Util.Base32:EncodeData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Base32-method-EncodeData", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "DecodeData", + "fullName": "Spark.Core.Util.Base32:DecodeData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Base32-method-DecodeData", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Timer", + "fullName": "Spark.Core.Util.Timer", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Timer", + "sort": 1, + "meta": {} + }, + { + "name": "Timer", + "fullName": "Spark.Core.Util.Timer:Timer", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.Timer-constructor-Timer", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "purgeTimers", + "fullName": "Spark.Core.Util.Timer:purgeTimers", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Timer-method-purgeTimers", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "startTimer", + "fullName": "Spark.Core.Util.Timer:startTimer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Timer-method-startTimer", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "endTimer", + "fullName": "Spark.Core.Util.Timer:endTimer", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Timer-method-endTimer", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IJsonSerializer", + "fullName": "OpenEdge.Core.Json.IJsonSerializer", + "icon": "icon-interface", + "url": "#!/class/OpenEdge.Core.Json.IJsonSerializer", + "sort": 1, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.Core.Json.IJsonSerializer:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.IJsonSerializer-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.Core.Json.IJsonSerializer:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Json.IJsonSerializer-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "CryptoTools", + "fullName": "Spark.Core.Util.CryptoTools", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.CryptoTools", + "sort": 1, + "meta": {} + }, + { + "name": "encryptCode", + "fullName": "Spark.Core.Util.CryptoTools:encryptCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-encryptCode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "encryptCode", + "fullName": "Spark.Core.Util.CryptoTools:encryptCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-encryptCode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "encryptValue", + "fullName": "Spark.Core.Util.CryptoTools:encryptValue", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-encryptValue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "decryptCode", + "fullName": "Spark.Core.Util.CryptoTools:decryptCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-decryptCode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "decryptCode", + "fullName": "Spark.Core.Util.CryptoTools:decryptCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-decryptCode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "decryptValue", + "fullName": "Spark.Core.Util.CryptoTools:decryptValue", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-decryptValue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getEncryptKey", + "fullName": "Spark.Core.Util.CryptoTools:getEncryptKey", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-getEncryptKey", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getEncryptKey", + "fullName": "Spark.Core.Util.CryptoTools:getEncryptKey", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-getEncryptKey", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getRandomEncryptKey", + "fullName": "Spark.Core.Util.CryptoTools:getRandomEncryptKey", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-getRandomEncryptKey", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getEncryptInitVector", + "fullName": "Spark.Core.Util.CryptoTools:getEncryptInitVector", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-getEncryptInitVector", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "base64Encode", + "fullName": "Spark.Core.Util.CryptoTools:base64Encode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-base64Encode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "base64Decode", + "fullName": "Spark.Core.Util.CryptoTools:base64Decode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.CryptoTools-method-base64Decode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "RemoteMetrics", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics", + "icon": "icon-class", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "RemoteMetrics", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:RemoteMetrics", + "icon": "icon-constructor", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-constructor-RemoteMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "RemoteMetrics", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:RemoteMetrics", + "icon": "icon-destructor", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-destructor-RemoteMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "Applications", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:Applications", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-Applications", + "sort": 3, + "meta": {} + }, + { + "name": "MetricSource", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:MetricSource", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-MetricSource", + "sort": 3, + "meta": {} + }, + { + "name": "InstanceURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:InstanceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-InstanceURI", + "sort": 3, + "meta": {} + }, + { + "name": "ManagerRealm", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ManagerRealm", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerRealm", + "sort": 3, + "meta": {} + }, + { + "name": "ManagerUsername", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ManagerUsername", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerUsername", + "sort": 3, + "meta": {} + }, + { + "name": "ManagerPassword", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ManagerPassword", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerPassword", + "sort": 3, + "meta": {} + }, + { + "name": "ManagerURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ManagerURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ManagerURI", + "sort": 3, + "meta": {} + }, + { + "name": "GetAllAgentsURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetAllAgentsURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAllAgentsURI", + "sort": 3, + "meta": {} + }, + { + "name": "GetAgentURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetAgentURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAgentURI", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestsURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetRequestsURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetRequestsURI", + "sort": 3, + "meta": {} + }, + { + "name": "GetAgentSessionURI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetAgentSessionURI", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetAgentSessionURI", + "sort": 3, + "meta": {} + }, + { + "name": "TrackObjects", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackObjects", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetObjectsReport", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetObjectsReport", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetObjectsReport", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessionObjectsReport", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetSessionObjectsReport", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-GetSessionObjectsReport", + "sort": 3, + "meta": {} + }, + { + "name": "OEJMXBinary", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:OEJMXBinary", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-OEJMXBinary", + "sort": 3, + "meta": {} + }, + { + "name": "AgentsQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:AgentsQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-AgentsQuery", + "sort": 3, + "meta": {} + }, + { + "name": "SessionsQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:SessionsQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-SessionsQuery", + "sort": 3, + "meta": {} + }, + { + "name": "RequestsQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:RequestsQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-RequestsQuery", + "sort": 3, + "meta": {} + }, + { + "name": "TrackOnQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackOnQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackOnQuery", + "sort": 3, + "meta": {} + }, + { + "name": "TrackOffQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackOffQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackOffQuery", + "sort": 3, + "meta": {} + }, + { + "name": "TrackingQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackingQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-TrackingQuery", + "sort": 3, + "meta": {} + }, + { + "name": "ABLObjectsQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ABLObjectsQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ABLObjectsQuery", + "sort": 3, + "meta": {} + }, + { + "name": "ABLSessionObjectsQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:ABLSessionObjectsQuery", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-property-ABLSessionObjectsQuery", + "sort": 3, + "meta": {} + }, + { + "name": "CheckTempPath", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:CheckTempPath", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CheckTempPath", + "sort": 3, + "meta": {} + }, + { + "name": "InvokeAPI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:InvokeAPI", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeAPI", + "sort": 3, + "meta": {} + }, + { + "name": "InvokeAPI", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:InvokeAPI", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeAPI", + "sort": 3, + "meta": {} + }, + { + "name": "InvokeJMX", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:InvokeJMX", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-InvokeJMX", + "sort": 3, + "meta": {} + }, + { + "name": "CreateTempQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery", + "sort": 3, + "meta": {} + }, + { + "name": "CreateTempQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery", + "sort": 3, + "meta": {} + }, + { + "name": "CreateTempQuery", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:CreateTempQuery", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-CreateTempQuery", + "sort": 3, + "meta": {} + }, + { + "name": "FilterABLObjects", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:FilterABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetApplication", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetApplication", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetApplication", + "sort": 3, + "meta": {} + }, + { + "name": "GetAgents", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetAgents", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetAgents", + "sort": 3, + "meta": {} + }, + { + "name": "GetSessions", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetSessions", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetSessions", + "sort": 3, + "meta": {} + }, + { + "name": "TrackABLObjects", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-TrackABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "TrackingABLObjects", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:TrackingABLObjects", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-TrackingABLObjects", + "sort": 3, + "meta": {} + }, + { + "name": "GetRequestMetrics", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:GetRequestMetrics", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-GetRequestMetrics", + "sort": 3, + "meta": {} + }, + { + "name": "FilterABLObjectReport", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:FilterABLObjectReport", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterABLObjectReport", + "sort": 3, + "meta": {} + }, + { + "name": "FilterSessionABLObjectReport", + "fullName": "Spark.Diagnostic.Util.RemoteMetrics:FilterSessionABLObjectReport", + "icon": "icon-method", + "url": "#!/class/Spark.Diagnostic.Util.RemoteMetrics-method-FilterSessionABLObjectReport", + "sort": 3, + "meta": {} + }, + { + "name": "ICatalog", + "fullName": "Spark.Core.Service.ICatalog", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Service.ICatalog", + "sort": 1, + "meta": {} + }, + { + "name": "getCatalog", + "fullName": "Spark.Core.Service.ICatalog:getCatalog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.ICatalog-method-getCatalog", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse", + "sort": 1, + "meta": {} + }, + { + "name": "GetDataResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse", + "sort": 3, + "meta": {} + }, + { + "name": "GetDataResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:GetDataResponse", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-constructor-GetDataResponse", + "sort": 3, + "meta": {} + }, + { + "name": "CustomResponse", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:CustomResponse", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-property-CustomResponse", + "sort": 3, + "meta": {} + }, + { + "name": "TableResponses", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:TableResponses", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-property-TableResponses", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.GetDataResponse:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.GetDataResponse-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "IStartupManager", + "fullName": "Spark.Core.Manager.IStartupManager", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.IStartupManager", + "sort": 1, + "meta": {} + }, + { + "name": "interfaceStopAfter", + "fullName": "Spark.Core.Manager.IStartupManager:interfaceStopAfter", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IStartupManager-property-interfaceStopAfter", + "sort": 3, + "meta": {} + }, + { + "name": "stopManagers", + "fullName": "Spark.Core.Manager.IStartupManager:stopManagers", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IStartupManager-method-stopManagers", + "sort": 3, + "meta": {} + }, + { + "name": "OSPath", + "fullName": "Spark.Core.Util.OSPath", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.OSPath", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "CatalinaBase", + "fullName": "Spark.Core.Util.OSPath:CatalinaBase", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSPath-property-CatalinaBase", + "sort": 3, + "meta": {} + }, + { + "name": "TemporaryDir", + "fullName": "Spark.Core.Util.OSPath:TemporaryDir", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OSPath-property-TemporaryDir", + "sort": 3, + "meta": {} + }, + { + "name": "OEUserRealm", + "fullName": "Spark.Core.Security.OEUserRealm", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Security.OEUserRealm", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "OEUserRealm", + "fullName": "Spark.Core.Security.OEUserRealm:OEUserRealm", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Security.OEUserRealm-constructor-OEUserRealm", + "sort": 3, + "meta": {} + }, + { + "name": "loadConfig", + "fullName": "Spark.Core.Security.OEUserRealm:loadConfig", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-loadConfig", + "sort": 3, + "meta": {} + }, + { + "name": "validateRequest", + "fullName": "Spark.Core.Security.OEUserRealm:validateRequest", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-validateRequest", + "sort": 3, + "meta": {} + }, + { + "name": "validateRequest", + "fullName": "Spark.Core.Security.OEUserRealm:validateRequest", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-validateRequest", + "sort": 3, + "meta": {} + }, + { + "name": "checkPasswordHash", + "fullName": "Spark.Core.Security.OEUserRealm:checkPasswordHash", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-checkPasswordHash", + "sort": 3, + "meta": {} + }, + { + "name": "checkPasswordHash", + "fullName": "Spark.Core.Security.OEUserRealm:checkPasswordHash", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-checkPasswordHash", + "sort": 3, + "meta": {} + }, + { + "name": "getPassword", + "fullName": "Spark.Core.Security.OEUserRealm:getPassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-getPassword", + "sort": 3, + "meta": {} + }, + { + "name": "postAuthenticate", + "fullName": "Spark.Core.Security.OEUserRealm:postAuthenticate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-postAuthenticate", + "sort": 3, + "meta": {} + }, + { + "name": "getUserID", + "fullName": "Spark.Core.Security.OEUserRealm:getUserID", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-getUserID", + "sort": 3, + "meta": {} + }, + { + "name": "isActive", + "fullName": "Spark.Core.Security.OEUserRealm:isActive", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-isActive", + "sort": 3, + "meta": {} + }, + { + "name": "isExpired", + "fullName": "Spark.Core.Security.OEUserRealm:isExpired", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-isExpired", + "sort": 3, + "meta": {} + }, + { + "name": "isLocked", + "fullName": "Spark.Core.Security.OEUserRealm:isLocked", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-isLocked", + "sort": 3, + "meta": {} + }, + { + "name": "getUserRoles", + "fullName": "Spark.Core.Security.OEUserRealm:getUserRoles", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-getUserRoles", + "sort": 3, + "meta": {} + }, + { + "name": "GetAttribute", + "fullName": "Spark.Core.Security.OEUserRealm:GetAttribute", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-GetAttribute", + "sort": 3, + "meta": {} + }, + { + "name": "GetAttributeNames", + "fullName": "Spark.Core.Security.OEUserRealm:GetAttributeNames", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-GetAttributeNames", + "sort": 3, + "meta": {} + }, + { + "name": "GetUsernames", + "fullName": "Spark.Core.Security.OEUserRealm:GetUsernames", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernames", + "sort": 3, + "meta": {} + }, + { + "name": "GetUsernamesByQuery", + "fullName": "Spark.Core.Security.OEUserRealm:GetUsernamesByQuery", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernamesByQuery", + "sort": 3, + "meta": {} + }, + { + "name": "GetUsernamesByQuery", + "fullName": "Spark.Core.Security.OEUserRealm:GetUsernamesByQuery", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-GetUsernamesByQuery", + "sort": 3, + "meta": {} + }, + { + "name": "RemoveAttribute", + "fullName": "Spark.Core.Security.OEUserRealm:RemoveAttribute", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-RemoveAttribute", + "sort": 3, + "meta": {} + }, + { + "name": "SetAttribute", + "fullName": "Spark.Core.Security.OEUserRealm:SetAttribute", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-SetAttribute", + "sort": 3, + "meta": {} + }, + { + "name": "ValidatePassword", + "fullName": "Spark.Core.Security.OEUserRealm:ValidatePassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-ValidatePassword", + "sort": 3, + "meta": {} + }, + { + "name": "ValidatePassword", + "fullName": "Spark.Core.Security.OEUserRealm:ValidatePassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-ValidatePassword", + "sort": 3, + "meta": {} + }, + { + "name": "ValidateUser", + "fullName": "Spark.Core.Security.OEUserRealm:ValidateUser", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.OEUserRealm-method-ValidateUser", + "sort": 3, + "meta": {} + }, + { + "name": "DynamicEntity", + "fullName": "Spark.Core.Service.DynamicEntity", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Service.DynamicEntity", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "entityName", + "fullName": "Spark.Core.Service.DynamicEntity:entityName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-entityName", + "sort": 3, + "meta": {} + }, + { + "name": "serviceURI", + "fullName": "Spark.Core.Service.DynamicEntity:serviceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-serviceURI", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "resourceName", + "fullName": "Spark.Core.Service.DynamicEntity:resourceName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-resourceName", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "primaryKeys", + "fullName": "Spark.Core.Service.DynamicEntity:primaryKeys", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-primaryKeys", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "foreignKeys", + "fullName": "Spark.Core.Service.DynamicEntity:foreignKeys", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-foreignKeys", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "mappingType", + "fullName": "Spark.Core.Service.DynamicEntity:mappingType", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-mappingType", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "capabilities", + "fullName": "Spark.Core.Service.DynamicEntity:capabilities", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-capabilities", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "operations", + "fullName": "Spark.Core.Service.DynamicEntity:operations", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.DynamicEntity-property-operations", + "sort": 3, + "meta": { + "abstract": true + } + }, + { + "name": "Strings", + "fullName": "Spark.Core.Util.Strings", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.Strings", + "sort": 1, + "meta": {} + }, + { + "name": "doXOR", + "fullName": "Spark.Core.Util.Strings:doXOR", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-doXOR", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getXOR", + "fullName": "Spark.Core.Util.Strings:getXOR", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-getXOR", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getDigitsOnly", + "fullName": "Spark.Core.Util.Strings:getDigitsOnly", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-getDigitsOnly", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "camelCaseWord", + "fullName": "Spark.Core.Util.Strings:camelCaseWord", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-camelCaseWord", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "properWords", + "fullName": "Spark.Core.Util.Strings:properWords", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-properWords", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stripKeywords", + "fullName": "Spark.Core.Util.Strings:stripKeywords", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-stripKeywords", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "containsBadChar", + "fullName": "Spark.Core.Util.Strings:containsBadChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-containsBadChar", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stripBadChars", + "fullName": "Spark.Core.Util.Strings:stripBadChars", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-stripBadChars", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stripBadLabel", + "fullName": "Spark.Core.Util.Strings:stripBadLabel", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-stripBadLabel", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stripOperators", + "fullName": "Spark.Core.Util.Strings:stripOperators", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-stripOperators", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "stripPunctuation", + "fullName": "Spark.Core.Util.Strings:stripPunctuation", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-stripPunctuation", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getUniqueWords", + "fullName": "Spark.Core.Util.Strings:getUniqueWords", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-getUniqueWords", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "booleanConvert", + "fullName": "Spark.Core.Util.Strings:booleanConvert", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-booleanConvert", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "unixSafe", + "fullName": "Spark.Core.Util.Strings:unixSafe", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-unixSafe", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "maskString", + "fullName": "Spark.Core.Util.Strings:maskString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-maskString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "inArray", + "fullName": "Spark.Core.Util.Strings:inArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-inArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "sortArray", + "fullName": "Spark.Core.Util.Strings:sortArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-sortArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "mergeProperties", + "fullName": "Spark.Core.Util.Strings:mergeProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-mergeProperties", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "reverse", + "fullName": "Spark.Core.Util.Strings:reverse", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-reverse", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "leftPad", + "fullName": "Spark.Core.Util.Strings:leftPad", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-leftPad", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "rightPad", + "fullName": "Spark.Core.Util.Strings:rightPad", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-rightPad", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "appendWithComma", + "fullName": "Spark.Core.Util.Strings:appendWithComma", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.Strings-method-appendWithComma", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "tSort", + "fullName": "Spark.Core.Util.Strings:tSort", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Util.Strings-temptable-tSort", + "sort": 3, + "meta": {} + }, + { + "name": "QueryPredicate", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate", + "icon": "icon-class", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate", + "sort": 1, + "meta": {} + }, + { + "name": "QueryPredicate", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate", + "sort": 3, + "meta": {} + }, + { + "name": "QueryPredicate", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate", + "sort": 3, + "meta": {} + }, + { + "name": "QueryPredicate", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:QueryPredicate", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-constructor-QueryPredicate", + "sort": 3, + "meta": {} + }, + { + "name": "FieldName", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:FieldName", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-FieldName", + "sort": 3, + "meta": {} + }, + { + "name": "Join", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:Join", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Join", + "sort": 3, + "meta": {} + }, + { + "name": "Operator", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:Operator", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Operator", + "sort": 3, + "meta": {} + }, + { + "name": "Value", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:Value", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Value", + "sort": 3, + "meta": {} + }, + { + "name": "Values", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:Values", + "icon": "icon-property", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-property-Values", + "sort": 3, + "meta": {} + }, + { + "name": "ToString", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:ToString", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-ToString", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "ToJsonConstruct", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:ToJsonConstruct", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-ToJsonConstruct", + "sort": 3, + "meta": {} + }, + { + "name": "FromJson", + "fullName": "OpenEdge.BusinessLogic.QueryPredicate:FromJson", + "icon": "icon-method", + "url": "#!/class/OpenEdge.BusinessLogic.QueryPredicate-method-FromJson", + "sort": 3, + "meta": {} + }, + { + "name": "MemptrInputStream", + "fullName": "OpenEdge.Core.MemptrInputStream", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.MemptrInputStream", + "sort": 1, + "meta": {} + }, + { + "name": "MemptrInputStream", + "fullName": "OpenEdge.Core.MemptrInputStream:MemptrInputStream", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.MemptrInputStream-constructor-MemptrInputStream", + "sort": 3, + "meta": {} + }, + { + "name": "MemptrInputStream", + "fullName": "OpenEdge.Core.MemptrInputStream:MemptrInputStream", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.MemptrInputStream-constructor-MemptrInputStream", + "sort": 3, + "meta": {} + }, + { + "name": "DynamicCaller", + "fullName": "Spark.Core.Util.DynamicCaller", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.DynamicCaller", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "DynamicCaller", + "fullName": "Spark.Core.Util.DynamicCaller:DynamicCaller", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.DynamicCaller-constructor-DynamicCaller", + "sort": 3, + "meta": {} + }, + { + "name": "DynamicCaller", + "fullName": "Spark.Core.Util.DynamicCaller:DynamicCaller", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.DynamicCaller-constructor-DynamicCaller", + "sort": 3, + "meta": {} + }, + { + "name": "DynamicCaller", + "fullName": "Spark.Core.Util.DynamicCaller:DynamicCaller", + "icon": "icon-destructor", + "url": "#!/class/Spark.Core.Util.DynamicCaller-destructor-DynamicCaller", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Util.DynamicCaller:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.DynamicCaller-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "oSchemaManager", + "fullName": "Spark.Core.Util.DynamicCaller:oSchemaManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.DynamicCaller-property-oSchemaManager", + "sort": 3, + "meta": {} + }, + { + "name": "valueBuffer", + "fullName": "Spark.Core.Util.DynamicCaller:valueBuffer", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.DynamicCaller-property-valueBuffer", + "sort": 3, + "meta": {} + }, + { + "name": "getParameterHandle", + "fullName": "Spark.Core.Util.DynamicCaller:getParameterHandle", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameterHandle", + "sort": 3, + "meta": {} + }, + { + "name": "isInitialized", + "fullName": "Spark.Core.Util.DynamicCaller:isInitialized", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-isInitialized", + "sort": 3, + "meta": {} + }, + { + "name": "parameterExists", + "fullName": "Spark.Core.Util.DynamicCaller:parameterExists", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-parameterExists", + "sort": 3, + "meta": {} + }, + { + "name": "executeMethod", + "fullName": "Spark.Core.Util.DynamicCaller:executeMethod", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-executeMethod", + "sort": 3, + "meta": {} + }, + { + "name": "executeMethod", + "fullName": "Spark.Core.Util.DynamicCaller:executeMethod", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-executeMethod", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getParameter", + "fullName": "Spark.Core.Util.DynamicCaller:getParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getParameter", + "sort": 3, + "meta": {} + }, + { + "name": "getJsonArrayParam", + "fullName": "Spark.Core.Util.DynamicCaller:getJsonArrayParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getJsonArrayParam", + "sort": 3, + "meta": {} + }, + { + "name": "getJsonObjectParam", + "fullName": "Spark.Core.Util.DynamicCaller:getJsonObjectParam", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-getJsonObjectParam", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "setParameter", + "fullName": "Spark.Core.Util.DynamicCaller:setParameter", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.DynamicCaller-method-setParameter", + "sort": 3, + "meta": {} + }, + { + "name": "ParamObject", + "fullName": "Spark.Core.Util.DynamicCaller:ParamObject", + "icon": "icon-temptable", + "url": "#!/class/Spark.Core.Util.DynamicCaller-temptable-ParamObject", + "sort": 3, + "meta": {} + }, + { + "name": "MemptrOutputStream", + "fullName": "OpenEdge.Core.MemptrOutputStream", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.MemptrOutputStream", + "sort": 1, + "meta": {} + }, + { + "name": "MemptrOutputStream", + "fullName": "OpenEdge.Core.MemptrOutputStream:MemptrOutputStream", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.MemptrOutputStream-constructor-MemptrOutputStream", + "sort": 3, + "meta": {} + }, + { + "name": "MemptrOutputStream", + "fullName": "OpenEdge.Core.MemptrOutputStream:MemptrOutputStream", + "icon": "icon-constructor", + "url": "#!/class/OpenEdge.Core.MemptrOutputStream-constructor-MemptrOutputStream", + "sort": 3, + "meta": {} + }, + { + "name": "SparkEntity", + "fullName": "Spark.Core.Service.SparkEntity", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Service.SparkEntity", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "SparkEntity", + "fullName": "Spark.Core.Service.SparkEntity:SparkEntity", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Service.SparkEntity-constructor-SparkEntity", + "sort": 3, + "meta": {} + }, + { + "name": "SparkEntity", + "fullName": "Spark.Core.Service.SparkEntity:SparkEntity", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Service.SparkEntity-constructor-SparkEntity", + "sort": 3, + "meta": {} + }, + { + "name": "oClientContext", + "fullName": "Spark.Core.Service.SparkEntity:oClientContext", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.SparkEntity-property-oClientContext", + "sort": 3, + "meta": {} + }, + { + "name": "oLoggingManager", + "fullName": "Spark.Core.Service.SparkEntity:oLoggingManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.SparkEntity-property-oLoggingManager", + "sort": 3, + "meta": {} + }, + { + "name": "oCatalogManager", + "fullName": "Spark.Core.Service.SparkEntity:oCatalogManager", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.SparkEntity-property-oCatalogManager", + "sort": 3, + "meta": {} + }, + { + "name": "oContextMessage", + "fullName": "Spark.Core.Service.SparkEntity:oContextMessage", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.SparkEntity-property-oContextMessage", + "sort": 3, + "meta": {} + }, + { + "name": "LastCount", + "fullName": "Spark.Core.Service.SparkEntity:LastCount", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.SparkEntity-property-LastCount", + "sort": 3, + "meta": {} + }, + { + "name": "getClassName", + "fullName": "Spark.Core.Service.SparkEntity:getClassName", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getClassName", + "sort": 3, + "meta": { + "final": true + } + }, + { + "name": "getFilterObject", + "fullName": "Spark.Core.Service.SparkEntity:getFilterObject", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getFilterObject", + "sort": 3, + "meta": {} + }, + { + "name": "filterData", + "fullName": "Spark.Core.Service.SparkEntity:filterData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-filterData", + "sort": 3, + "meta": {} + }, + { + "name": "getFilterOnly", + "fullName": "Spark.Core.Service.SparkEntity:getFilterOnly", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getFilterOnly", + "sort": 3, + "meta": {} + }, + { + "name": "getRecCount", + "fullName": "Spark.Core.Service.SparkEntity:getRecCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getRecCount", + "sort": 3, + "meta": {} + }, + { + "name": "getRecCount", + "fullName": "Spark.Core.Service.SparkEntity:getRecCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getRecCount", + "sort": 3, + "meta": {} + }, + { + "name": "preCommitLogic", + "fullName": "Spark.Core.Service.SparkEntity:preCommitLogic", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-preCommitLogic", + "sort": 3, + "meta": {} + }, + { + "name": "postCommitLogic", + "fullName": "Spark.Core.Service.SparkEntity:postCommitLogic", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-postCommitLogic", + "sort": 3, + "meta": {} + }, + { + "name": "postFetchRecord", + "fullName": "Spark.Core.Service.SparkEntity:postFetchRecord", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-postFetchRecord", + "sort": 3, + "meta": {} + }, + { + "name": "validateData", + "fullName": "Spark.Core.Service.SparkEntity:validateData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-validateData", + "sort": 3, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Service.SparkEntity:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-initialize", + "sort": 3, + "meta": {} + }, + { + "name": "dispose", + "fullName": "Spark.Core.Service.SparkEntity:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-dispose", + "sort": 3, + "meta": {} + }, + { + "name": "getDataset", + "fullName": "Spark.Core.Service.SparkEntity:getDataset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getDataset", + "sort": 3, + "meta": {} + }, + { + "name": "postRowFill", + "fullName": "Spark.Core.Service.SparkEntity:postRowFill", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-postRowFill", + "sort": 3, + "meta": {} + }, + { + "name": "readData", + "fullName": "Spark.Core.Service.SparkEntity:readData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-readData", + "sort": 3, + "meta": {} + }, + { + "name": "createData", + "fullName": "Spark.Core.Service.SparkEntity:createData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-createData", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "updateData", + "fullName": "Spark.Core.Service.SparkEntity:updateData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-updateData", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "deleteData", + "fullName": "Spark.Core.Service.SparkEntity:deleteData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-deleteData", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "submitData", + "fullName": "Spark.Core.Service.SparkEntity:submitData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-submitData", + "sort": 3, + "meta": {} + }, + { + "name": "getData", + "fullName": "Spark.Core.Service.SparkEntity:getData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getData", + "sort": 3, + "meta": {} + }, + { + "name": "getResultCount", + "fullName": "Spark.Core.Service.SparkEntity:getResultCount", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-getResultCount", + "sort": 3, + "meta": {} + }, + { + "name": "updateData", + "fullName": "Spark.Core.Service.SparkEntity:updateData", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.SparkEntity-method-updateData", + "sort": 3, + "meta": {} + }, + { + "name": "GenTools", + "fullName": "Spark.Core.Util.GenTools", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.GenTools", + "sort": 1, + "meta": {} + }, + { + "name": "getAblError", + "fullName": "Spark.Core.Util.GenTools:getAblError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-getAblError", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getLastAblError", + "fullName": "Spark.Core.Util.GenTools:getLastAblError", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-getLastAblError", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getDateTime", + "fullName": "Spark.Core.Util.GenTools:getDateTime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-getDateTime", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getLocalTimeZoneOffset", + "fullName": "Spark.Core.Util.GenTools:getLocalTimeZoneOffset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-getLocalTimeZoneOffset", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "getLocalTimeZoneOffset", + "fullName": "Spark.Core.Util.GenTools:getLocalTimeZoneOffset", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-getLocalTimeZoneOffset", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "encodeURL", + "fullName": "Spark.Core.Util.GenTools:encodeURL", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-encodeURL", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "encodeURL", + "fullName": "Spark.Core.Util.GenTools:encodeURL", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Util.GenTools-method-encodeURL", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Logger", + "fullName": "Spark.Diagnostic.Util.Logger", + "icon": "icon-class", + "url": "#!/class/Spark.Diagnostic.Util.Logger", + "sort": 1, + "meta": { + "abstract": true + } + }, + { + "name": "oLogger", + "fullName": "Spark.Diagnostic.Util.Logger:oLogger", + "icon": "icon-property", + "url": "#!/class/Spark.Diagnostic.Util.Logger-property-oLogger", + "sort": 3, + "meta": {} + }, + { + "name": "SessionScope", + "fullName": "Spark.Core.Util.SessionScope", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Util.SessionScope", + "sort": 1, + "meta": {} + }, + { + "name": "SessionScope", + "fullName": "Spark.Core.Util.SessionScope:SessionScope", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Util.SessionScope-constructor-SessionScope", + "sort": 3, + "meta": {} + }, + { + "name": "StateLifeCycleEnum", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "StateLifeCycleEnum", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:StateLifeCycleEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-constructor-StateLifeCycleEnum", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "StateLifeCycleEnum", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:StateLifeCycleEnum", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-constructor-StateLifeCycleEnum", + "sort": 3, + "meta": {} + }, + { + "name": "application", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:application", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-application", + "sort": 3, + "meta": {} + }, + { + "name": "session", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:session", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-session", + "sort": 3, + "meta": {} + }, + { + "name": "default", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:default", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-property-default", + "sort": 3, + "meta": {} + }, + { + "name": "enumFromString", + "fullName": "Spark.Core.Manager.StateLifeCycleEnum:enumFromString", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.StateLifeCycleEnum-method-enumFromString", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Password", + "fullName": "Spark.Core.Security.Password", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Security.Password", + "sort": 1, + "meta": { + "final": true + } + }, + { + "name": "createCode", + "fullName": "Spark.Core.Security.Password:createCode", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.Password-method-createCode", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "checkPassword", + "fullName": "Spark.Core.Security.Password:checkPassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.Password-method-checkPassword", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "encodePassword", + "fullName": "Spark.Core.Security.Password:encodePassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Security.Password-method-encodePassword", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IDynamicResource", + "fullName": "Spark.Core.Service.IDynamicResource", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Service.IDynamicResource", + "sort": 1, + "meta": {} + }, + { + "name": "oContextMessage", + "fullName": "Spark.Core.Service.IDynamicResource:oContextMessage", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicResource-property-oContextMessage", + "sort": 3, + "meta": {} + }, + { + "name": "serviceURI", + "fullName": "Spark.Core.Service.IDynamicResource:serviceURI", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicResource-property-serviceURI", + "sort": 3, + "meta": {} + }, + { + "name": "resourceName", + "fullName": "Spark.Core.Service.IDynamicResource:resourceName", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Service.IDynamicResource-property-resourceName", + "sort": 3, + "meta": {} + }, + { + "name": "IClientContext", + "fullName": "Spark.Core.Manager.IClientContext", + "icon": "icon-interface", + "url": "#!/class/Spark.Core.Manager.IClientContext", + "sort": 1, + "meta": {} + }, + { + "name": "userDomain", + "fullName": "Spark.Core.Manager.IClientContext:userDomain", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IClientContext-property-userDomain", + "sort": 3, + "meta": {} + }, + { + "name": "userID", + "fullName": "Spark.Core.Manager.IClientContext:userID", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IClientContext-property-userID", + "sort": 3, + "meta": {} + }, + { + "name": "userExtra", + "fullName": "Spark.Core.Manager.IClientContext:userExtra", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IClientContext-property-userExtra", + "sort": 3, + "meta": {} + }, + { + "name": "loginExpiration", + "fullName": "Spark.Core.Manager.IClientContext:loginExpiration", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IClientContext-property-loginExpiration", + "sort": 3, + "meta": {} + }, + { + "name": "activityPassword", + "fullName": "Spark.Core.Manager.IClientContext:activityPassword", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Manager.IClientContext-property-activityPassword", + "sort": 3, + "meta": {} + }, + { + "name": "hasUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:hasUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-hasUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "getUserProperties", + "fullName": "Spark.Core.Manager.IClientContext:getUserProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserProperties", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyArray", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyArray", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyArray", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyArray", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyArray", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsChar", + "fullName": "Spark.Core.Manager.IClientContext:getUserArrayPropertyAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsDec", + "fullName": "Spark.Core.Manager.IClientContext:getUserArrayPropertyAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getUserArrayPropertyAsInt", + "fullName": "Spark.Core.Manager.IClientContext:getUserArrayPropertyAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserArrayPropertyAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:getUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsChar", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsChar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsChar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsLongchar", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsLongchar", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsLongchar", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsInt", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsInt", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsInt", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsInt64", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsInt64", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsInt64", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDec", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsDec", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDec", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsLog", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsLog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsLog", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDate", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsDate", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDate", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDatetime", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsDatetime", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDatetime", + "sort": 3, + "meta": {} + }, + { + "name": "getUserPropertyAsDatetimeTz", + "fullName": "Spark.Core.Manager.IClientContext:getUserPropertyAsDatetimeTz", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-getUserPropertyAsDatetimeTz", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "setUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:setUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "removeUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:removeUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-removeUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "initializeUserProperty", + "fullName": "Spark.Core.Manager.IClientContext:initializeUserProperty", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-initializeUserProperty", + "sort": 3, + "meta": {} + }, + { + "name": "invalidateContext", + "fullName": "Spark.Core.Manager.IClientContext:invalidateContext", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-invalidateContext", + "sort": 3, + "meta": {} + }, + { + "name": "setActivityPassword", + "fullName": "Spark.Core.Manager.IClientContext:setActivityPassword", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Manager.IClientContext-method-setActivityPassword", + "sort": 3, + "meta": {} + }, + { + "name": "OperationEnum", + "fullName": "Spark.Core.Util.OperationEnum", + "icon": "icon-enum", + "url": "#!/class/Spark.Core.Util.OperationEnum", + "sort": 1, + "meta": {} + }, + { + "name": "read", + "fullName": "Spark.Core.Util.OperationEnum:read", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-read", + "sort": 3, + "meta": {} + }, + { + "name": "create", + "fullName": "Spark.Core.Util.OperationEnum:create", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-create", + "sort": 3, + "meta": {} + }, + { + "name": "update", + "fullName": "Spark.Core.Util.OperationEnum:update", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-update", + "sort": 3, + "meta": {} + }, + { + "name": "delete", + "fullName": "Spark.Core.Util.OperationEnum:delete", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-delete", + "sort": 3, + "meta": {} + }, + { + "name": "submit", + "fullName": "Spark.Core.Util.OperationEnum:submit", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-submit", + "sort": 3, + "meta": {} + }, + { + "name": "invoke", + "fullName": "Spark.Core.Util.OperationEnum:invoke", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-invoke", + "sort": 3, + "meta": {} + }, + { + "name": "count", + "fullName": "Spark.Core.Util.OperationEnum:count", + "icon": "icon-property", + "url": "#!/class/Spark.Core.Util.OperationEnum-property-count", + "sort": 3, + "meta": {} + }, + { + "name": "Assert", + "fullName": "OpenEdge.Core.Assert", + "icon": "icon-class", + "url": "#!/class/OpenEdge.Core.Assert", + "sort": 1, + "meta": {} + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Equals", + "fullName": "OpenEdge.Core.Assert:Equals", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-Equals", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEqual", + "fullName": "OpenEdge.Core.Assert:NotEqual", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEqual", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsTrue", + "fullName": "OpenEdge.Core.Assert:IsTrue", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsTrue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsFalse", + "fullName": "OpenEdge.Core.Assert:IsFalse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsFalse", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsEmpty", + "fullName": "OpenEdge.Core.Assert:IsEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotEmpty", + "fullName": "OpenEdge.Core.Assert:NotEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrEmpty", + "fullName": "OpenEdge.Core.Assert:NotNullOrEmpty", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrEmpty", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NonZero", + "fullName": "OpenEdge.Core.Assert:NonZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NonZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInterface", + "fullName": "OpenEdge.Core.Assert:IsInterface", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsInterface", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotInterface", + "fullName": "OpenEdge.Core.Assert:NotInterface", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotInterface", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsAbstract", + "fullName": "OpenEdge.Core.Assert:IsAbstract", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsAbstract", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotAbstract", + "fullName": "OpenEdge.Core.Assert:NotAbstract", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotAbstract", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsFinal", + "fullName": "OpenEdge.Core.Assert:IsFinal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsFinal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotFinal", + "fullName": "OpenEdge.Core.Assert:NotFinal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotFinal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assert:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assert:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assert:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assert:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsType", + "fullName": "OpenEdge.Core.Assert:IsType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assert:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotType", + "fullName": "OpenEdge.Core.Assert:NotType", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotType", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "HasDeterminateExtent", + "fullName": "OpenEdge.Core.Assert:HasDeterminateExtent", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-HasDeterminateExtent", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIndeterminateArray", + "fullName": "OpenEdge.Core.Assert:IsIndeterminateArray", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIndeterminateArray", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsAvailable", + "fullName": "OpenEdge.Core.Assert:IsAvailable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsAvailable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsAvailable", + "fullName": "OpenEdge.Core.Assert:IsAvailable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsAvailable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotAvailable", + "fullName": "OpenEdge.Core.Assert:NotAvailable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotAvailable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotAvailable", + "fullName": "OpenEdge.Core.Assert:NotAvailable", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotAvailable", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInteger", + "fullName": "OpenEdge.Core.Assert:IsInteger", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsInteger", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInteger", + "fullName": "OpenEdge.Core.Assert:IsInteger", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsInteger", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsDecimal", + "fullName": "OpenEdge.Core.Assert:IsDecimal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsDecimal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsDecimal", + "fullName": "OpenEdge.Core.Assert:IsDecimal", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsDecimal", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInt64", + "fullName": "OpenEdge.Core.Assert:IsInt64", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsInt64", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsInt64", + "fullName": "OpenEdge.Core.Assert:IsInt64", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsInt64", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsTrue", + "fullName": "OpenEdge.Core.Assert:IsTrue", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsTrue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsFalse", + "fullName": "OpenEdge.Core.Assert:IsFalse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsFalse", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsUnknown", + "fullName": "OpenEdge.Core.Assert:IsUnknown", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsUnknown", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsUnknown", + "fullName": "OpenEdge.Core.Assert:IsUnknown", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsUnknown", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotTrue", + "fullName": "OpenEdge.Core.Assert:NotTrue", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotTrue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotTrue", + "fullName": "OpenEdge.Core.Assert:NotTrue", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotTrue", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotFalse", + "fullName": "OpenEdge.Core.Assert:NotFalse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotFalse", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotFalse", + "fullName": "OpenEdge.Core.Assert:NotFalse", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotFalse", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotUnknown", + "fullName": "OpenEdge.Core.Assert:NotUnknown", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotUnknown", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotUnknown", + "fullName": "OpenEdge.Core.Assert:NotUnknown", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotUnknown", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNull", + "fullName": "OpenEdge.Core.Assert:NotNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNull", + "fullName": "OpenEdge.Core.Assert:IsNull", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNull", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrZero", + "fullName": "OpenEdge.Core.Assert:NotNullOrZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotNullOrZero", + "fullName": "OpenEdge.Core.Assert:NotNullOrZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotNullOrZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotZero", + "fullName": "OpenEdge.Core.Assert:NotZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZero", + "fullName": "OpenEdge.Core.Assert:IsZero", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZero", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsNegative", + "fullName": "OpenEdge.Core.Assert:IsNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsPositive", + "fullName": "OpenEdge.Core.Assert:IsPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrNegative", + "fullName": "OpenEdge.Core.Assert:IsZeroOrNegative", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrNegative", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsZeroOrPositive", + "fullName": "OpenEdge.Core.Assert:IsZeroOrPositive", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsZeroOrPositive", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsLogical", + "fullName": "OpenEdge.Core.Assert:IsLogical", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsLogical", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsLogical", + "fullName": "OpenEdge.Core.Assert:IsLogical", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsLogical", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsLogical", + "fullName": "OpenEdge.Core.Assert:IsLogical", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsLogical", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "RaiseError", + "fullName": "OpenEdge.Core.Assert:RaiseError", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-RaiseError", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIn", + "fullName": "OpenEdge.Core.Assert:IsIn", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIn", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "IsIn", + "fullName": "OpenEdge.Core.Assert:IsIn", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-IsIn", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotIn", + "fullName": "OpenEdge.Core.Assert:NotIn", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotIn", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "NotIn", + "fullName": "OpenEdge.Core.Assert:NotIn", + "icon": "icon-method", + "url": "#!/class/OpenEdge.Core.Assert-method-NotIn", + "sort": 3, + "meta": { + "static": true + } + }, + { + "name": "Catalog", + "fullName": "Spark.Core.Service.Catalog", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Service.Catalog", + "sort": 1, + "meta": {} + }, + { + "name": "initialize", + "fullName": "Spark.Core.Service.Catalog:initialize", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-initialize", + "sort": 3, + "meta": {} + }, + { + "name": "dispose", + "fullName": "Spark.Core.Service.Catalog:dispose", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-dispose", + "sort": 3, + "meta": {} + }, + { + "name": "Discovery", + "fullName": "Spark.Core.Service.Catalog:Discovery", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-Discovery", + "sort": 3, + "meta": {} + }, + { + "name": "getDataObjectServiceCatalogs", + "fullName": "Spark.Core.Service.Catalog:getDataObjectServiceCatalogs", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-getDataObjectServiceCatalogs", + "sort": 3, + "meta": {} + }, + { + "name": "getOpenApiCatalog", + "fullName": "Spark.Core.Service.Catalog:getOpenApiCatalog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-getOpenApiCatalog", + "sort": 3, + "meta": {} + }, + { + "name": "getCatalog", + "fullName": "Spark.Core.Service.Catalog:getCatalog", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Service.Catalog-method-getCatalog", + "sort": 3, + "meta": {} + }, + { + "name": "ConfigMessage", + "fullName": "Spark.Core.Message.ConfigMessage", + "icon": "icon-class", + "url": "#!/class/Spark.Core.Message.ConfigMessage", + "sort": 1, + "meta": {} + }, + { + "name": "ConfigMessage", + "fullName": "Spark.Core.Message.ConfigMessage:ConfigMessage", + "icon": "icon-constructor", + "url": "#!/class/Spark.Core.Message.ConfigMessage-constructor-ConfigMessage", + "sort": 3, + "meta": {} + }, + { + "name": "deserializeMessageFromFile", + "fullName": "Spark.Core.Message.ConfigMessage:deserializeMessageFromFile", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ConfigMessage-method-deserializeMessageFromFile", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "deserializeMessage", + "fullName": "Spark.Core.Message.ConfigMessage:deserializeMessage", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ConfigMessage-method-deserializeMessage", + "sort": 3, + "meta": { + "override": true + } + }, + { + "name": "storeProperties", + "fullName": "Spark.Core.Message.ConfigMessage:storeProperties", + "icon": "icon-method", + "url": "#!/class/Spark.Core.Message.ConfigMessage-method-storeProperties", + "sort": 3, + "meta": { + "override": true + } + } + ], + "signatures": [ + { + "long": "private", + "short": "PRI", + "tagname": "private" + }, + { + "long": "protected", + "short": "PRO", + "tagname": "protected" + }, + { + "long": "static", + "short": "STA", + "tagname": "static" + }, + { + "long": "abstract", + "short": "ABS", + "tagname": "abstract" + }, + { + "long": "override", + "short": "OVR", + "tagname": "override" + }, + { + "long": "final", + "short": "FIN", + "tagname": "final" + }, + { + "long": "super", + "short": "SUP", + "tagname": "super" + }, + { + "long": "new", + "short": "NEW", + "tagname": "new" + }, + { + "long": "global", + "short": "GLO", + "tagname": "global" + }, + { + "long": "shared", + "short": "SHA", + "tagname": "shared" + }, + { + "long": "noundo", + "short": "N-U", + "tagname": "noundo" + }, + { + "long": "internal", + "short": "INT", + "tagname": "internal" + }, + { + "long": "deprecated", + "short": "DEP", + "tagname": "deprecated" + } + ], + "memberTypes": [ + { + "name": "constructor", + "title": "Constructors", + "icon": "icons/event.png", + "position": 1 + }, + { + "name": "destructor", + "title": "Destructors", + "icon": "icons/event.png", + "position": 2 + }, + { + "name": "event", + "title": "Events", + "icon": "icons/event.png", + "position": 3 + }, + { + "name": "property", + "title": "Properties", + "icon": "icons/property.png", + "position": 4 + }, + { + "name": "method", + "title": "Methods", + "icon": "icons/method.png", + "position": 5 + }, + { + "name": "procedure", + "title": "Procedures", + "icon": "icons/method.png", + "position": 6 + }, + { + "name": "function", + "title": "Functions", + "icon": "icons/method.png", + "position": 7 + }, + { + "name": "temptable", + "title": "Temp Tables", + "icon": "icons/property.png", + "position": 8 + }, + { + "name": "dataset", + "title": "Datasets", + "icon": "icons/property.png", + "position": 9 + } + ] + } +} \ No newline at end of file diff --git a/docs/ABLDuck/index.html b/docs/ABLDuck/index.html index 885dbc19..e186b07a 100644 --- a/docs/ABLDuck/index.html +++ b/docs/ABLDuck/index.html @@ -14,15 +14,15 @@ -
Documentation - Progress Spark Toolkit (v6.0.2)
+
Documentation - Progress Spark Toolkit (v7.0.0)
-
Documentation Progress Spark Toolkit (v6.0.2)
+
Documentation Progress Spark Toolkit (v7.0.0)
- + @@ -20,6 +20,6 @@ -
+
diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.BusinessEntity.html b/docs/PCTDoc/OpenEdge.BusinessLogic.BusinessEntity.html index c5df603d..5adce2ad 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.BusinessEntity.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.BusinessEntity.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@ - - + @@ -155,7 +155,7 @@ - - + @@ -172,7 +172,7 @@ - # + @@ -189,7 +189,7 @@ - # + @@ -206,7 +206,7 @@ - - + @@ -224,7 +224,7 @@ - # + @@ -241,7 +241,7 @@ - - + @@ -258,7 +258,7 @@ - # + @@ -279,7 +279,7 @@ - # + @@ -300,7 +300,7 @@ - # + @@ -317,7 +317,7 @@ - # + @@ -334,7 +334,7 @@ - - + @@ -351,7 +351,7 @@ - # + @@ -371,7 +371,7 @@ - - + @@ -388,7 +388,7 @@ - - + @@ -405,7 +405,7 @@ - - + @@ -422,7 +422,7 @@ - - + @@ -439,7 +439,7 @@ - - + @@ -456,7 +456,7 @@ - - + @@ -474,7 +474,7 @@ - # + @@ -494,7 +494,7 @@ - # + @@ -511,7 +511,7 @@ - # + @@ -528,7 +528,7 @@ - # + @@ -545,7 +545,7 @@ - # + @@ -562,7 +562,7 @@ - # + @@ -579,7 +579,7 @@ - # + @@ -601,7 +601,7 @@ - # + @@ -621,7 +621,7 @@ - # + @@ -642,7 +642,7 @@ - - + @@ -659,7 +659,7 @@ - - + @@ -685,7 +685,7 @@ - # + @@ -703,7 +703,7 @@ - # + @@ -720,7 +720,7 @@ - # + @@ -739,7 +739,7 @@ - # + @@ -779,7 +779,7 @@ - # + @@ -845,7 +845,7 @@ - # + @@ -862,7 +862,7 @@ - # + @@ -879,7 +879,7 @@ - # + @@ -896,7 +896,7 @@ - - + @@ -935,7 +935,7 @@ -

PRIVATE CHARACTER AdjustWhere (character)

+

CHARACTER AdjustWhere (character)

@@ -1013,7 +1013,7 @@

PRIVATE CHARACTER AdjustWheres (character[])"> -

PRIVATE CHARACTER AdjustWheres (character[])

+

CHARACTER AdjustWheres (character[])

@@ -1091,7 +1091,7 @@

PRIVATE CHARACTER AttachDataSources ()"> -

PROTECTED AttachDataSources ()

+

AttachDataSources ()

@@ -1137,7 +1137,7 @@

PROTECTED -

PROTECTED AttachDataSources (character[])

+

AttachDataSources (character[])

@@ -1199,7 +1199,7 @@

PROTECTED -

PRIVATE CommitChildBuffers (integer, integer)

+

CommitChildBuffers (integer, integer)

@@ -1277,7 +1277,7 @@

PRIVATE C -

PROTECTED CommitData (integer)

+

CommitData (integer)

@@ -1339,7 +1339,7 @@

PROTECTED -

PRIVATE CommitRows (handle, character, integer)

+

CommitRows (handle, character, integer)

@@ -1433,7 +1433,7 @@

PRIVATE C -

PROTECTED Ccs.BusinessLogic.IGetTableResultCountResponse CountBufferRecords (handle)

+

Ccs.BusinessLogic.IGetTableResultCountResponse CountBufferRecords (handle)

@@ -1511,7 +1511,7 @@

PROTECTED Ccs.BusinessLogic.IGetTableResultCountRespo -

PROTECTED Ccs.BusinessLogic.IGetResultCountResponse CountDatasetRecords (handle)

+

Ccs.BusinessLogic.IGetResultCountResponse CountDatasetRecords (handle)

@@ -1589,7 +1589,7 @@

PROTECTED Ccs.BusinessLogic.IGetResultCountResponse < -

PROTECTED CreateData (dataset-handle)

+

CreateData (dataset-handle)

@@ -1651,7 +1651,7 @@

PROTECTED -

PROTECTED DeleteData (dataset-handle)

+

DeleteData (dataset-handle)

@@ -1713,7 +1713,7 @@

PROTECTED -

PRIVATE DetachDataSources ()

+

DetachDataSources ()

@@ -1759,7 +1759,7 @@

PRIVATE D -

PROTECTED DoFill (handle)

+

DoFill (handle)

@@ -1821,7 +1821,7 @@

PROTECTED -

PRIVATE EmptyDataSet ()

+

EmptyDataSet ()

@@ -1867,7 +1867,7 @@

PRIVATE E -

PRIVATE INTEGER GetBufferIndex (handle)

+

INTEGER GetBufferIndex (handle)

@@ -1945,7 +1945,7 @@

PRIVATE INTEGER GetRowErrorMessage (handle, character)"> -

PRIVATE CHARACTER GetRowErrorMessage (handle, character)

+

CHARACTER GetRowErrorMessage (handle, character)

@@ -2039,7 +2039,7 @@

PRIVATE CHARACTER GetRowState (integer)"> -

PRIVATE CHARACTER GetRowState (integer)

+

CHARACTER GetRowState (integer)

@@ -2117,7 +2117,7 @@

PRIVATE CHARACTER GetSkipListEntry (integer)"> -

PRIVATE CHARACTER GetSkipListEntry (integer)

+

CHARACTER GetSkipListEntry (integer)

@@ -2195,7 +2195,7 @@

PRIVATE CHARACTER ProcessBIData (integer)"> -

PRIVATE LOGICAL ProcessBIData (integer)

+

LOGICAL ProcessBIData (integer)

@@ -2273,7 +2273,7 @@

PRIVATE LOGICAL ProcessTransactionalError (Error)"> -

PROTECTED ProcessTransactionalError (Error)

+

ProcessTransactionalError (Error)

@@ -2335,7 +2335,7 @@

PROTECTED -

PROTECTED ReadData ()

+

ReadData ()

@@ -2381,7 +2381,7 @@

PROTECTED -

PROTECTED ReadData (character)

+

ReadData (character)

@@ -2443,7 +2443,7 @@

PROTECTED -

PROTECTED ReadData (character, handle)

+

ReadData (character, handle)

@@ -2521,7 +2521,7 @@

PROTECTED -

PROTECTED ReadData (character[])

+

ReadData (character[])

@@ -2583,7 +2583,7 @@

PROTECTED -

PROTECTED ReadData (handle)

+

ReadData (handle)

@@ -2645,7 +2645,7 @@

PROTECTED -

PROTECTED Ccs.BusinessLogic.IGetDataResponse ReadData (IGetDataRequest)

+

Ccs.BusinessLogic.IGetDataResponse ReadData (IGetDataRequest)

@@ -2723,7 +2723,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataResponse -

PROTECTED SaveRows (dataset-handle)

+

SaveRows (dataset-handle)

@@ -2785,7 +2785,7 @@

PROTECTED -

PROTECTED SetFillWhereString (character, handle)

+

SetFillWhereString (character, handle)

@@ -2863,7 +2863,7 @@

PROTECTED -

PRIVATE SetFillWhereStrings (character[])

+

SetFillWhereStrings (character[])

@@ -2925,7 +2925,7 @@

PRIVATE S -

PRIVATE SetUndos (logical[], logical)

+

SetUndos (logical[], logical)

@@ -3003,7 +3003,7 @@

PRIVATE S -

PROTECTED Submit (dataset-handle)

+

Submit (dataset-handle)

@@ -3065,7 +3065,7 @@

PROTECTED -

PROTECTED UpdateData (dataset-handle)

+

UpdateData (dataset-handle)

@@ -3127,7 +3127,7 @@

PROTECTED -

PROTECTED ValidateDataSources ()

+

ValidateDataSources ()

@@ -3173,7 +3173,7 @@

PROTECTED -

PROTECTED ValidateFieldLists (character[])

+

ValidateFieldLists (character[])

@@ -3253,7 +3253,7 @@

PROTECTED -

PROTECTED BusinessEntity (handle)

+

BusinessEntity (handle)

@@ -3351,7 +3351,7 @@

PROTECTED -

PROTECTED HANDLE ProDataSet

+

HANDLE ProDataSet

@@ -3413,7 +3413,7 @@

PROTECTED HANDLE ProDataSource"> -

PROTECTED HANDLE ProDataSource

+

HANDLE ProDataSource

@@ -3475,7 +3475,7 @@

PROTECTED HANDLE SkipList"> -

PROTECTED CHARACTER SkipList

+

CHARACTER SkipList

@@ -3537,7 +3537,7 @@

PROTECTED CHARACTER UpdateMode"> -

PRIVATE OpenEdge.BusinessLogic.UpdateModeEnum UpdateMode

+

OpenEdge.BusinessLogic.UpdateModeEnum UpdateMode

@@ -161,7 +161,7 @@ @@ -184,7 +184,7 @@ @@ -206,7 +206,7 @@ @@ -238,7 +238,7 @@ @@ -260,7 +260,7 @@ @@ -274,14 +274,14 @@ /* Reads and processes (parses) the filter. @param P.L.Object The filter data -@param IGetDataRequest A new filter object */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:Parse (Object) +@param IGetDataRequest A new filter object */
@@ -295,14 +295,14 @@ /* Parses an SORT-BY phrase and returns an array of IQuerySortEntry objects. @param character The SORT-BY phrase -@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy (Object) +@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
@@ -327,7 +327,7 @@ @@ -351,7 +351,7 @@ @@ -366,14 +366,14 @@ @param P.L.Object The filter/where clause phrase @return IQueryEntry The query entry.We return one of an IQueryPredicate (single clause) -or an IQueryGroup (many clauses) */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere (Object) +or an IQueryGroup (many clauses) */
@@ -420,7 +420,7 @@ @@ -438,7 +438,7 @@ @@ -458,7 +458,7 @@ @@ -501,7 +501,7 @@
@@ -3597,6 +3597,6 @@

PRIVATE OpenEdge.BusinessLogic.UpdateModeEnum
- 04.15.2022 11:51:45 + 04.18.2022 11:20:21 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.AblFilterParser.html b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.AblFilterParser.html index 83a201e4..d4e70f9f 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.AblFilterParser.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.AblFilterParser.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- - + - - + - - + - - + - - + - + +
- + +
- # + - # + - + +
- # + - + + - + + - + +
--> - +

@@ -563,7 +546,7 @@ -

PRIVATE LOGICAL AddToGroup (QueryGroup, IQueryEntry, JoinEnum)

+

LOGICAL AddToGroup (QueryGroup, IQueryEntry, JoinEnum)

@@ -673,7 +656,7 @@

PRIVATE LOGICAL OpenEdge.Core.String GetFieldValue (character, logical, QueryOperatorEnum)"> -

PRIVATE OpenEdge.Core.String GetFieldValue (character, logical, QueryOperatorEnum)

+

OpenEdge.Core.String GetFieldValue (character, logical, QueryOperatorEnum)

@@ -783,7 +766,7 @@

PRIVATE OpenEdge. -

PRIVATE OpenEdge.BusinessLogic.QueryGroup GetGroupParent (QueryGroup, QueryGroup)

+

OpenEdge.BusinessLogic.QueryGroup GetGroupParent (QueryGroup, QueryGroup)

@@ -877,7 +860,7 @@

PRIVATE GetJoin (character, JoinEnum)"> -

PRIVATE Ccs.BusinessLogic.JoinEnum GetJoin (character, JoinEnum)

+

Ccs.BusinessLogic.JoinEnum GetJoin (character, JoinEnum)

@@ -971,7 +954,7 @@

PRIVATE Ccs.BusinessLogic.JoinEnum IsMatchesExpression (character)"> -

PRIVATE LOGICAL IsMatchesExpression (character)

+

LOGICAL IsMatchesExpression (character)

@@ -1049,7 +1032,7 @@

PRIVATE LOGICAL Parse (Object)"> -

PUBLIC Ccs.BusinessLogic.IGetDataRequest Parse (Object)

+

Ccs.BusinessLogic.IGetDataRequest Parse (Object)

@@ -1066,7 +1049,7 @@

PUBLIC Ccs.BusinessLogic.IGetDataRequest OpenEdge.BusinessLogic.Filter.FilterParser:Parse (Object) +
@@ -1127,7 +1110,7 @@

PUBLIC Ccs.BusinessLogic.IGetDataRequest ParseSortBy (Object)">

-

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

+

Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

@@ -1144,7 +1127,7 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy (Object) +
@@ -1205,7 +1188,7 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseSortString (longchar)">

-

PROTECTED Ccs.BusinessLogic.IQuerySortEntry ParseSortString (longchar)

+

Ccs.BusinessLogic.IQuerySortEntry ParseSortString (longchar)

@@ -1283,7 +1266,7 @@

PROTECTED Ccs.BusinessLogic.IQuerySortEntry ParseTableRequest (character, JsonObject)"> -

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

+

Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

@@ -1377,7 +1360,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest -

PUBLIC Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

+

Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

@@ -1394,7 +1377,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere (Object) +
@@ -1455,7 +1438,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry ParseWhereString (longchar)">

-

PROTECTED Ccs.BusinessLogic.IQueryEntry ParseWhereString (longchar)

+

Ccs.BusinessLogic.IQueryEntry ParseWhereString (longchar)

@@ -1551,7 +1534,7 @@

PROTECTED Ccs.BusinessLogic.IQueryEntry AblFilterParser ()"> -

PUBLIC AblFilterParser ()

+

AblFilterParser ()

@@ -159,7 +159,7 @@ @@ -180,7 +180,7 @@ @@ -225,7 +225,7 @@ @@ -243,7 +243,7 @@ @@ -263,7 +263,7 @@ @@ -329,7 +329,7 @@ @@ -368,7 +368,7 @@ -

PUBLIC Ccs.BusinessLogic.IGetDataRequest Parse (Object)

+

Ccs.BusinessLogic.IGetDataRequest Parse (Object)

@@ -1597,7 +1580,7 @@

PUBLIC Ab -

PUBLIC AblFilterParser (character)

+

AblFilterParser (character)

+
@@ -1659,7 +1642,7 @@

PUBLIC Ab -

PUBLIC AblFilterParser (character[])

+

AblFilterParser (character[])

- - - - - - - - -
@@ -1737,7 +1720,7 @@

PUBLIC Ab

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -


- - 04.15.2022 11:51:46 + --> + 04.18.2022 11:20:21 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.FilterParser.html b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.FilterParser.html index 52ec74c9..c00f6f2f 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.FilterParser.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.FilterParser.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + A - + + A - + + A - + + - + + - + + - + +
@@ -446,7 +446,7 @@

PUBLIC Ccs.BusinessLogic.IGetDataRequest ParseSortBy (Object)"> -

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

+

Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

@@ -524,7 +524,7 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseWhere (Object)"> -

PUBLIC Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

+

Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

@@ -620,7 +620,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry FilterParser ()"> -

PUBLIC FilterParser ()

+

FilterParser ()

@@ -666,7 +666,7 @@

PUBLIC Fi -

PUBLIC FilterParser (character)

+

FilterParser (character)

@@ -728,7 +728,7 @@

PUBLIC Fi -

PUBLIC FilterParser (character[])

+

FilterParser (character[])

@@ -826,7 +826,7 @@

PUBLIC Fi -

PUBLIC CHARACTER FilterTable

+

CHARACTER FilterTable

@@ -886,6 +886,6 @@

PUBLIC CHARACTER OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (character)"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (character)

+

OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (character)

@@ -513,7 +513,7 @@

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonArray)"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonArray)

+

OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonArray)

@@ -591,7 +591,7 @@

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonObject)"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonObject)

+

OpenEdge.BusinessLogic.Filter.FilterParserBuilder Build (JsonObject)

@@ -669,7 +669,7 @@

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParser BuildParser ()"> -

PROTECTED OpenEdge.BusinessLogic.Filter.FilterParser BuildParser ()

+

OpenEdge.BusinessLogic.Filter.FilterParser BuildParser ()

@@ -731,7 +731,7 @@

PROTECTED OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character)"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character)

+

OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character)

@@ -809,7 +809,7 @@

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character[])"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character[])

+

OpenEdge.BusinessLogic.Filter.FilterParserBuilder TableName (character[])

@@ -905,7 +905,7 @@

PUBLIC FilterParserBuilder (character)"> -

PUBLIC FilterParserBuilder (character)

+

FilterParserBuilder (character)

@@ -1003,7 +1003,7 @@

PUBLIC Fi -

PUBLIC CHARACTER FilterPattern

+

CHARACTER FilterPattern

@@ -1065,7 +1065,7 @@

PUBLIC CHARACTER OpenEdge.BusinessLogic.Filter.FilterParser Parser"> -

PUBLIC OpenEdge.BusinessLogic.Filter.FilterParser Parser

+

OpenEdge.BusinessLogic.Filter.FilterParser Parser

@@ -1127,11 +1127,11 @@

PUBLIC Registry"> -

PUBLIC OpenEdge.Core.Util.BuilderRegistry Registry

+

OpenEdge.Core.Util.BuilderRegistry Registry

-
+
@@ -1187,6 +1187,6 @@

PUBLIC OpenEdge.Core.Util.BuilderRegistry InitializeRegistry (BuilderRegistry)"> -

PRIVATE InitializeRegistry (BuilderRegistry)

+

InitializeRegistry (BuilderRegistry)

@@ -382,11 +382,11 @@

PRIVATE I -

PUBLIC OpenEdge.Core.Util.BuilderRegistry Registry

+

OpenEdge.Core.Util.BuilderRegistry Registry

- - - - - - - - - - - - - - - - - @@ -222,53 +155,7 @@ @param character The table name to which this filter applies @param JsonObject The input filter -@return IGetDataTableRequest A single table Get Request */
Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseTableRequest (character, JsonObject) - - - - - - - - - - - - - @@ -298,7 +185,7 @@ @@ -316,7 +203,7 @@ @@ -336,7 +223,7 @@ @@ -379,7 +266,7 @@
-
+
@@ -442,6 +442,6 @@

PUBLIC OpenEdge.Core.Util.BuilderRegistry Parse (Object) - -

- -/* Reads and processes (parses) a complete data filter. - -@param P.L.Object The filter data -@param IGetDataRequest A new filter object */
Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:Parse (Object) -
- - + - A - - - - IQuerySortEntry ParseSortBy (Object) - - - -/* Parses an SORT-BY phrase and returns an array of IQuerySortEntry objects. - -@param P.L.Object The SORT-BY data -@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortBy (Object) -
- - # - - - - - IQuerySortEntry ParseSortString (longchar) - - - -/* Parses an ABL BY expression into an array of IQuerySortEntry. - -If the string is malformed (ie can't be used as an ABL sort), then an indeterminate array -is returned. mallformed might be something like "by eq 21" or "by". - -@param longchar The standard ABL BY expression. This can be a complete WHERE ... BY string or just the BY portion -@return IQuerySortEntry[] An array of sort entries. Will be indeterminate if the input value is empty or null, -or if the string isn't of the format "BY <field> [BY <field-2>]" */
Inherited from OpenEdge.BusinessLogic.Filter.AblFilterParser -
- - #
- - + - A - - - - IQueryEntry ParseWhere (Object) - - - -/* Parses where/filter phrase and returns an IQueryEntry object for a single table - -@param P.L.Object The filter/where clause data -@return IQueryEntry The query entry.We return one of an IQueryPredicate (single clause) -or an IQueryGroup (many clauses) */
Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhere (Object) -
- - # - - - - - IQueryEntry ParseWhereString (longchar) - - - -/* Parses a where string into a query entry - either a group or a predicate. - -If the parsing runs into problems (eg a malformed string) a null IQueryEntry is returned. -Splitting of a string into groups using "(<grp-1>)" is not supported. - -@param longchar The WHERE string to parse into parts -@return IQueryEntry A query group, query predicate or unknown (if the string cannot be parsed) */
Inherited from OpenEdge.BusinessLogic.Filter.AblFilterParser +@return IGetDataTableRequest A single table Get Request */
- + + - + + - + +
--> - +

@@ -434,240 +304,6 @@ - - - - - - - - - -
-
- - Top - - -
-

PUBLIC IGetDataRequest Parse (Object)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:Parse (Object) -
-
-
-
/* Reads and processes (parses) a complete data filter.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pData - - Progress.Lang.Object - -
- - -
- Returns - - IGetDataRequest - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC IQuerySortEntry ParseSortBy (Object)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseSortBy (Object) -
-
-
-
/* Parses an SORT-BY phrase and returns an array of IQuerySortEntry objects.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pSortBy - - Progress.Lang.Object - -
- - -
- Returns - - IQuerySortEntry - -
- - IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED IQuerySortEntry ParseSortString (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.Filter.AblFilterParser -
-
-
-
/* Parses an ABL BY expression into an array of IQuerySortEntry.
If the string is malformed (ie can't be used as an ABL sort), then an indeterminate array
is returned. mallformed might be something like "by eq 21" or "by".
or if the string isn't of the format "BY <field> [BY <field-2>]"
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pSortBy - - LONGCHAR - -
- - -
- Returns - - IQuerySortEntry - -
- - IQuerySortEntry[] An array of sort entries. Will be indeterminate if the input value is empty or null, -
-
-
-
-
-
@@ -675,7 +311,7 @@

PROTECTED IQuerySortEntry ParseTableRequest (character, JsonObject)">

-

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

+

Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

@@ -692,7 +328,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest

- Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseTableRequest (character, JsonObject) +
@@ -761,162 +397,6 @@

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest

-
- - Top - - -
-

PUBLIC IQueryEntry ParseWhere (Object)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Overrides OpenEdge.BusinessLogic.Filter.AblFilterParser:ParseWhere (Object) -
-
-
-
/* Parses where/filter phrase and returns an IQueryEntry object for a single table
or an IQueryGroup (many clauses)
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pWhere - - Progress.Lang.Object - -
- - -
- Returns - - IQueryEntry - -
- - IQueryEntry The query entry.We return one of an IQueryPredicate (single clause) -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED IQueryEntry ParseWhereString (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.Filter.AblFilterParser -
-
-
-
/* Parses a where string into a query entry - either a group or a predicate.
If the parsing runs into problems (eg a malformed string) a null IQueryEntry is returned.
Splitting of a string into groups using "(<grp-1>)" is not supported.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pWhere - - LONGCHAR - -
- - -
- Returns - - IQueryEntry - -
- - IQueryEntry A query group, query predicate or unknown (if the string cannot be parsed) -
-
-
-
-
-
@@ -943,7 +423,7 @@

PROTECTED IQueryEntry JfpFilterParser ()"> -

PUBLIC JfpFilterParser ()

+

JfpFilterParser ()

@@ -152,14 +152,14 @@ /* Reads and processes (parses) the filter. @param P.L.Object The filter data -@param IGetDataRequest A new filter object */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:Parse (Object) +@param IGetDataRequest A new filter object */
@@ -176,7 +176,7 @@ @@ -191,14 +191,14 @@ http://docs.telerik.com/kendo-ui/api/javascript/data/datasource#configuration-sort @param P.L.Object The SORT-BY data -@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy (Object) +@return IQuerySortEntry[] An array of sort phrases. An indeterminate array is returned if the input phrase is empty */
@@ -222,7 +222,7 @@ @@ -238,14 +238,14 @@ @param P.L.Object The filter/where clause data @return IQueryEntry The query entry. We return one of an IQueryPredicate (single clause) -or an IQueryGroup (many clauses) */
Overrides OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere (Object) +or an IQueryGroup (many clauses) */
@@ -285,7 +285,7 @@ @@ -303,7 +303,7 @@ @@ -323,7 +323,7 @@ @@ -366,7 +366,7 @@
@@ -989,7 +469,7 @@

PUBLIC Jf -

PUBLIC JfpFilterParser (character)

+

JfpFilterParser (character)

+
@@ -1051,7 +531,7 @@

PUBLIC Jf -

PUBLIC JfpFilterParser (character[])

+

JfpFilterParser (character[])

- - - - - - - - -
@@ -1129,7 +609,7 @@

PUBLIC Jf

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -


- - 04.15.2022 11:51:47 + --> + 04.18.2022 11:20:22 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.KendoFilterParser.html b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.KendoFilterParser.html index 2dd72147..5b283fe7 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.KendoFilterParser.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.KendoFilterParser.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + +
- # + - + +
- # + - + +
- # + - + + - + + - + +
--> - +

@@ -428,7 +411,7 @@ -

PUBLIC Ccs.BusinessLogic.IGetDataRequest Parse (Object)

+

Ccs.BusinessLogic.IGetDataRequest Parse (Object)

@@ -445,7 +428,7 @@

PUBLIC Ccs.BusinessLogic.IGetDataRequest OpenEdge.BusinessLogic.Filter.FilterParser:Parse (Object) +
@@ -506,7 +489,7 @@

PUBLIC Ccs.BusinessLogic.IGetDataRequest ParsePredicate (JoinEnum, JsonObject)">

-

PROTECTED Ccs.BusinessLogic.IQueryEntry ParsePredicate (JoinEnum, JsonObject)

+

Ccs.BusinessLogic.IQueryEntry ParsePredicate (JoinEnum, JsonObject)

@@ -600,7 +583,7 @@

PROTECTED Ccs.BusinessLogic.IQueryEntry ParseSortBy (Object)"> -

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

+

Ccs.BusinessLogic.IQuerySortEntry ParseSortBy (Object)

@@ -617,7 +600,7 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry OpenEdge.BusinessLogic.Filter.FilterParser:ParseSortBy (Object) +
@@ -678,7 +661,7 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry ParseTableRequest (character, JsonObject)">

-

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

+

Ccs.BusinessLogic.IGetDataTableRequest ParseTableRequest (character, JsonObject)

@@ -772,7 +755,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataTableRequest -

PUBLIC Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

+

Ccs.BusinessLogic.IQueryEntry ParseWhere (Object)

@@ -789,7 +772,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry OpenEdge.BusinessLogic.Filter.FilterParser:ParseWhere (Object) +
@@ -850,7 +833,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry ParseWhere (QueryGroup, JsonObject)">

-

PROTECTED Ccs.BusinessLogic.IQueryEntry ParseWhere (QueryGroup, JsonObject)

+

Ccs.BusinessLogic.IQueryEntry ParseWhere (QueryGroup, JsonObject)

@@ -962,7 +945,7 @@

PROTECTED Ccs.BusinessLogic.IQueryEntry KendoFilterParser ()"> -

PUBLIC KendoFilterParser ()

+

KendoFilterParser ()

@@ -158,7 +158,7 @@ @@ -201,7 +201,7 @@ @@ -219,7 +219,7 @@ @@ -239,7 +239,7 @@ @@ -259,7 +259,7 @@ @@ -325,7 +325,7 @@ @@ -342,7 +342,7 @@ @@ -359,7 +359,7 @@ @@ -398,7 +398,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -1008,7 +991,7 @@

PUBLIC Ke -

PUBLIC KendoFilterParser (character)

+

KendoFilterParser (character)

+
@@ -1070,7 +1053,7 @@

PUBLIC Ke -

PUBLIC KendoFilterParser (character[])

+

KendoFilterParser (character[])

- - - - - - - - -
@@ -1148,7 +1131,7 @@

PUBLIC Ke

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -


- - 04.15.2022 11:51:47 + --> + 04.18.2022 11:20:22 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.package.html b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.package.html index 480b4693..28d3de27 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.package.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.Filter.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -130,7 +130,7 @@
- 04.15.2022 11:52:48 + 04.18.2022 11:20:40
diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataRequest.html b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataRequest.html index 10fb923d..cdb64f16 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataRequest.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataRequest.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -460,7 +460,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -540,7 +540,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC GetDataRequest ()

+

GetDataRequest ()

@@ -586,7 +586,7 @@

PUBLIC Ge -

PUBLIC GetDataRequest (IGetDataTableRequest[])

+

GetDataRequest (IGetDataTableRequest[])

@@ -648,7 +648,7 @@

PUBLIC Ge -

PUBLIC GetDataRequest (INamedQuery)

+

GetDataRequest (INamedQuery)

@@ -710,7 +710,7 @@

PUBLIC Ge -

PUBLIC GetDataRequest (integer)

+

GetDataRequest (integer)

@@ -808,7 +808,7 @@

PUBLIC Ge -

PUBLIC Progress.Lang.Object CustomParameter

+

Progress.Lang.Object CustomParameter

@@ -870,7 +870,7 @@

PUBLIC Progress.Lang.Object NamedQuery"> -

PUBLIC Ccs.BusinessLogic.INamedQuery NamedQuery

+

Ccs.BusinessLogic.INamedQuery NamedQuery

@@ -932,7 +932,7 @@

PUBLIC Ccs.BusinessLogic.INamedQuery TableRequests"> -

PUBLIC Ccs.BusinessLogic.IGetDataTableRequest TableRequests

+

Ccs.BusinessLogic.IGetDataTableRequest TableRequests

@@ -158,7 +158,7 @@ @@ -204,7 +204,7 @@ @@ -222,7 +222,7 @@ @@ -242,7 +242,7 @@ @@ -308,7 +308,7 @@ @@ -325,7 +325,7 @@ @@ -364,7 +364,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -992,6 +992,6 @@

PUBLIC Ccs.BusinessLogic.IGetDataTableRequest
- 04.15.2022 11:51:48 + 04.18.2022 11:20:22 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataResponse.html b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataResponse.html index f37990d4..d69f7a20 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataResponse.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataResponse.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + +
@@ -426,7 +426,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -506,7 +506,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC GetDataResponse ()

+

GetDataResponse ()

@@ -552,7 +552,7 @@

PUBLIC Ge -

PUBLIC GetDataResponse (IGetDataTableResponse[])

+

GetDataResponse (IGetDataTableResponse[])

@@ -614,7 +614,7 @@

PUBLIC Ge -

PUBLIC GetDataResponse (integer)

+

GetDataResponse (integer)

@@ -712,7 +712,7 @@

PUBLIC Ge -

PUBLIC Progress.Lang.Object CustomResponse

+

Progress.Lang.Object CustomResponse

@@ -774,7 +774,7 @@

PUBLIC Progress.Lang.Object TableResponses"> -

PUBLIC Ccs.BusinessLogic.IGetDataTableResponse TableResponses

+

Ccs.BusinessLogic.IGetDataTableResponse TableResponses

@@ -161,7 +161,7 @@ @@ -181,7 +181,7 @@ @@ -221,7 +221,7 @@ @@ -239,7 +239,7 @@ @@ -305,7 +305,7 @@ @@ -322,7 +322,7 @@ @@ -339,7 +339,7 @@ @@ -356,7 +356,7 @@ @@ -373,7 +373,7 @@ @@ -390,7 +390,7 @@ @@ -429,7 +429,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -834,6 +834,6 @@

PUBLIC Ccs.BusinessLogic.IGetDataTableResponse
- 04.15.2022 11:51:48 + 04.18.2022 11:20:22 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataTableRequest.html b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataTableRequest.html index 709ac5e0..4b0d8c22 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataTableRequest.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.GetDataTableRequest.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -491,7 +491,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -553,7 +553,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -633,7 +633,7 @@

PUBLIC CHARACTER GetDataTableRequest ()"> -

PUBLIC GetDataTableRequest ()

+

GetDataTableRequest ()

@@ -679,7 +679,7 @@

PUBLIC Ge -

PUBLIC GetDataTableRequest (character)

+

GetDataTableRequest (character)

@@ -777,7 +777,7 @@

PUBLIC Ge -

PUBLIC INT64 NumRecords

+

INT64 NumRecords

@@ -839,7 +839,7 @@

PUBLIC INT64 PagingContext"> -

PUBLIC CHARACTER PagingContext

+

CHARACTER PagingContext

@@ -901,7 +901,7 @@

PUBLIC CHARACTER QueryDefinition"> -

PUBLIC Ccs.BusinessLogic.IQueryDefinition QueryDefinition

+

Ccs.BusinessLogic.IQueryDefinition QueryDefinition

@@ -963,7 +963,7 @@

PUBLIC Ccs.BusinessLogic.IQueryDefinition QueryString"> -

PUBLIC CHARACTER QueryString

+

CHARACTER QueryString

@@ -1025,7 +1025,7 @@

PUBLIC CHARACTER Skip"> -

PUBLIC INT64 Skip

+

INT64 Skip

@@ -1087,7 +1087,7 @@

PUBLIC INT64 TableName"> -

PUBLIC CHARACTER TableName

+

CHARACTER TableName

@@ -1147,6 +1147,6 @@

PUBLIC CHARACTER FromJson (JsonConstruct)"> -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -420,7 +420,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -500,7 +500,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC GetDataTableResponse ()

+

GetDataTableResponse ()

@@ -546,7 +546,7 @@

PUBLIC Ge -

PUBLIC GetDataTableResponse (character)

+

GetDataTableResponse (character)

@@ -644,7 +644,7 @@

PUBLIC Ge -

PUBLIC CHARACTER NextPagingContext

+

CHARACTER NextPagingContext

@@ -706,7 +706,7 @@

PUBLIC CHARACTER PreviousPagingContext"> -

PUBLIC CHARACTER PreviousPagingContext

+

CHARACTER PreviousPagingContext

@@ -768,7 +768,7 @@

PUBLIC CHARACTER TableName"> -

PUBLIC CHARACTER TableName

+

CHARACTER TableName

@@ -828,6 +828,6 @@

PUBLIC CHARACTER FromJson (JsonConstruct)"> -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -403,7 +403,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -483,7 +483,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC GetResultCountResponse ()

+

GetResultCountResponse ()

@@ -529,7 +529,7 @@

PUBLIC Ge -

PUBLIC GetResultCountResponse (IGetTableResultCountResponse[])

+

GetResultCountResponse (IGetTableResultCountResponse[])

@@ -591,7 +591,7 @@

PUBLIC Ge -

PUBLIC GetResultCountResponse (integer)

+

GetResultCountResponse (integer)

@@ -689,7 +689,7 @@

PUBLIC Ge -

PUBLIC Ccs.BusinessLogic.IGetTableResultCountResponse ResultCounts

+

Ccs.BusinessLogic.IGetTableResultCountResponse ResultCounts

@@ -158,7 +158,7 @@ @@ -201,7 +201,7 @@ @@ -219,7 +219,7 @@ @@ -239,7 +239,7 @@ @@ -307,7 +307,7 @@ @@ -324,7 +324,7 @@ @@ -341,7 +341,7 @@ @@ -380,7 +380,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -749,6 +749,6 @@

PUBLIC Ccs.BusinessLogic.IGetTableResultCountResponse

- 04.15.2022 11:51:49 + 04.18.2022 11:20:22 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.GetTableResultCountResponse.html b/docs/PCTDoc/OpenEdge.BusinessLogic.GetTableResultCountResponse.html index adfa45a7..90fc4689 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.GetTableResultCountResponse.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.GetTableResultCountResponse.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + +
@@ -442,7 +442,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -522,7 +522,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC GetTableResultCountResponse ()

+

GetTableResultCountResponse ()

@@ -568,7 +568,7 @@

PUBLIC Ge -

PUBLIC GetTableResultCountResponse (character)

+

GetTableResultCountResponse (character)

@@ -630,7 +630,7 @@

PUBLIC Ge -

PUBLIC GetTableResultCountResponse (character, int64, logical)

+

GetTableResultCountResponse (character, int64, logical)

@@ -760,7 +760,7 @@

PUBLIC Ge -

PUBLIC LOGICAL Exact

+

LOGICAL Exact

@@ -822,7 +822,7 @@

PUBLIC LOGICAL NumResults"> -

PUBLIC INT64 NumResults

+

INT64 NumResults

@@ -884,7 +884,7 @@

PUBLIC INT64 TableName"> -

PUBLIC CHARACTER TableName

+

CHARACTER TableName

@@ -944,6 +944,6 @@

PUBLIC CHARACTER QueryEntryFromJson (JsonObject)"> -

PUBLIC Ccs.BusinessLogic.IQueryEntry QueryEntryFromJson (JsonObject)

+

Ccs.BusinessLogic.IQueryEntry QueryEntryFromJson (JsonObject)

@@ -365,7 +365,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry QueryEntryDeserializer ()"> -

PRIVATE QueryEntryDeserializer ()

+

QueryEntryDeserializer ()

@@ -158,7 +158,7 @@ @@ -201,7 +201,7 @@ @@ -219,7 +219,7 @@ @@ -239,7 +239,7 @@ @@ -260,7 +260,7 @@ @@ -327,7 +327,7 @@ @@ -344,7 +344,7 @@ @@ -383,7 +383,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -445,6 +445,6 @@

PRIVATE Q

--> - 04.15.2022 11:51:49 + 04.18.2022 11:20:23 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.IO.package.html b/docs/PCTDoc/OpenEdge.BusinessLogic.IO.package.html index 89e5f2ec..adbc44e2 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.IO.package.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.IO.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -71,7 +71,7 @@
- 04.15.2022 11:52:48 + 04.18.2022 11:20:41
diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQuery.html b/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQuery.html index 00161f63..e47729bd 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQuery.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQuery.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + +
@@ -445,7 +445,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -525,7 +525,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC NamedQuery ()

+

NamedQuery ()

@@ -571,7 +571,7 @@

PUBLIC Na -

PUBLIC NamedQuery (character)

+

NamedQuery (character)

@@ -633,7 +633,7 @@

PUBLIC Na -

PUBLIC NamedQuery (character, INamedQueryParameter[])

+

NamedQuery (character, INamedQueryParameter[])

@@ -711,7 +711,7 @@

PUBLIC Na -

PUBLIC NamedQuery (character, integer)

+

NamedQuery (character, integer)

@@ -825,7 +825,7 @@

PUBLIC Na -

PUBLIC CHARACTER Name

+

CHARACTER Name

@@ -887,7 +887,7 @@

PUBLIC CHARACTER Parameters"> -

PUBLIC Ccs.BusinessLogic.INamedQueryParameter Parameters

+

Ccs.BusinessLogic.INamedQueryParameter Parameters

@@ -158,7 +158,7 @@ @@ -201,7 +201,7 @@ @@ -219,7 +219,7 @@ @@ -239,7 +239,7 @@ @@ -260,7 +260,7 @@ @@ -327,7 +327,7 @@ @@ -344,7 +344,7 @@ @@ -361,7 +361,7 @@ @@ -400,7 +400,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -947,6 +947,6 @@

PUBLIC Ccs.BusinessLogic.INamedQueryParameter
- 04.15.2022 11:51:49 + 04.18.2022 11:20:23 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQueryParameter.html b/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQueryParameter.html index 7bfc105a..d8792343 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQueryParameter.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.NamedQueryParameter.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -462,7 +462,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -542,7 +542,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC NamedQueryParameter ()

+

NamedQueryParameter ()

@@ -588,7 +588,7 @@

PUBLIC Na -

PUBLIC NamedQueryParameter (character)

+

NamedQueryParameter (character)

@@ -650,7 +650,7 @@

PUBLIC Na -

PUBLIC NamedQueryParameter (character, IPrimitiveArrayHolder)

+

NamedQueryParameter (character, IPrimitiveArrayHolder)

@@ -728,7 +728,7 @@

PUBLIC Na -

PUBLIC NamedQueryParameter (character, IPrimitiveHolder)

+

NamedQueryParameter (character, IPrimitiveHolder)

@@ -842,7 +842,7 @@

PUBLIC Na -

PUBLIC CHARACTER Name

+

CHARACTER Name

@@ -904,7 +904,7 @@

PUBLIC CHARACTER Value"> -

PUBLIC Ccs.Common.Support.IPrimitiveHolder Value

+

Ccs.Common.Support.IPrimitiveHolder Value

@@ -966,7 +966,7 @@

PUBLIC Ccs.Common.Support.IPrimitiveHolder Values"> -

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder Values

+

Ccs.Common.Support.IPrimitiveArrayHolder Values

@@ -160,7 +160,7 @@ @@ -182,7 +182,7 @@ @@ -206,7 +206,7 @@ @@ -228,7 +228,7 @@ @@ -252,7 +252,7 @@ @@ -279,7 +279,7 @@ @@ -304,7 +304,7 @@ @@ -326,7 +326,7 @@ @@ -348,7 +348,7 @@ @@ -371,7 +371,7 @@ @@ -393,7 +393,7 @@ @@ -442,7 +442,7 @@ @@ -556,7 +556,7 @@ -

PROTECTED CHARACTER BuildClause (handle, IQueryPredicate)

+

CHARACTER BuildClause (handle, IQueryPredicate)

@@ -1026,6 +1026,6 @@

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder
- 04.15.2022 11:51:50 + 04.18.2022 11:20:23 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.Query.QueryBuilder.html b/docs/PCTDoc/OpenEdge.BusinessLogic.Query.QueryBuilder.html index f49b720e..e04ae8a2 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.Query.QueryBuilder.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.Query.QueryBuilder.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- # + - # + - + + - + + - + + - + + - + + - # + - # + - # + - # + - + + - # +
@@ -650,7 +650,7 @@

PROTECTED CHARACTER BuildGroup (handle, IQueryGroup)"> -

PROTECTED CHARACTER BuildGroup (handle, IQueryGroup)

+

CHARACTER BuildGroup (handle, IQueryGroup)

@@ -744,7 +744,7 @@

PROTECTED CHARACTER BuildQuery (IGetDataRequest, handle)"> -

PUBLIC HANDLE BuildQuery (IGetDataRequest, handle)

+

HANDLE BuildQuery (IGetDataRequest, handle)

@@ -838,7 +838,7 @@

PUBLIC HANDLE BuildQueryString (IGetDataRequest)"> -

PUBLIC CHARACTER BuildQueryString (IGetDataRequest)

+

CHARACTER BuildQueryString (IGetDataRequest)

@@ -916,7 +916,7 @@

PUBLIC CHARACTER BuildQueryString (IGetDataRequest, handle)"> -

PUBLIC CHARACTER BuildQueryString (IGetDataRequest, handle)

+

CHARACTER BuildQueryString (IGetDataRequest, handle)

@@ -1010,7 +1010,7 @@

PUBLIC CHARACTER BuildQueryString (IGetDataTableRequest, logical, logical, handle)"> -

PUBLIC CHARACTER BuildQueryString (IGetDataTableRequest, logical, logical, handle)

+

CHARACTER BuildQueryString (IGetDataTableRequest, logical, logical, handle)

@@ -1136,7 +1136,7 @@

PUBLIC CHARACTER BuildQueryStrings (IGetDataRequest, handle)"> -

PUBLIC CHARACTER BuildQueryStrings (IGetDataRequest, handle)

+

CHARACTER BuildQueryStrings (IGetDataRequest, handle)

@@ -1230,7 +1230,7 @@

PUBLIC CHARACTER GetFieldBuffer (handle, character)"> -

PROTECTED HANDLE GetFieldBuffer (handle, character)

+

HANDLE GetFieldBuffer (handle, character)

@@ -1324,7 +1324,7 @@

PROTECTED HANDLE GetTableBuffer (handle, character)"> -

PROTECTED HANDLE GetTableBuffer (handle, character)

+

HANDLE GetTableBuffer (handle, character)

@@ -1418,7 +1418,7 @@

PROTECTED HANDLE MapJoin (character, character, JoinEnum)"> -

PROTECTED CHARACTER MapJoin (character, character, JoinEnum)

+

CHARACTER MapJoin (character, character, JoinEnum)

@@ -1528,7 +1528,7 @@

PROTECTED CHARACTER MapOperator (QueryOperatorEnum, character)"> -

PROTECTED CHARACTER MapOperator (QueryOperatorEnum, character)

+

CHARACTER MapOperator (QueryOperatorEnum, character)

@@ -1622,7 +1622,7 @@

PROTECTED CHARACTER MergeQueryStrings (character, JoinEnum, character)"> -

PUBLIC CHARACTER MergeQueryStrings (character, JoinEnum, character)

+

CHARACTER MergeQueryStrings (character, JoinEnum, character)

@@ -1732,7 +1732,7 @@

PUBLIC CHARACTER ParseIsoDate (character)"> -

PROTECTED DATETIME-TZ ParseIsoDate (character)

+

DATETIME-TZ ParseIsoDate (character)

@@ -1862,6 +1862,6 @@

PROTECTED DATETIME-TZ FromJson (JsonConstruct)"> -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -442,7 +442,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -504,7 +504,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -584,7 +584,7 @@

PUBLIC CHARACTER QueryDefinition ()"> -

PUBLIC QueryDefinition ()

+

QueryDefinition ()

@@ -630,7 +630,7 @@

PUBLIC Qu -

PUBLIC QueryDefinition (IQueryEntry)

+

QueryDefinition (IQueryEntry)

@@ -692,7 +692,7 @@

PUBLIC Qu -

PUBLIC QueryDefinition (IQueryEntry, IQuerySortEntry[])

+

QueryDefinition (IQueryEntry, IQuerySortEntry[])

@@ -806,7 +806,7 @@

PUBLIC Qu -

PUBLIC Ccs.BusinessLogic.IQueryEntry QuerySelection

+

Ccs.BusinessLogic.IQueryEntry QuerySelection

@@ -868,7 +868,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry QuerySort"> -

PUBLIC Ccs.BusinessLogic.IQuerySortEntry QuerySort

+

Ccs.BusinessLogic.IQuerySortEntry QuerySort

@@ -928,6 +928,6 @@

PUBLIC Ccs.BusinessLogic.IQuerySortEntry FromJson (JsonConstruct)"> -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -421,7 +421,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -483,7 +483,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -563,7 +563,7 @@

PUBLIC CHARACTER QueryGroup ()"> -

PUBLIC QueryGroup ()

+

QueryGroup ()

@@ -609,7 +609,7 @@

PUBLIC Qu -

PUBLIC QueryGroup (integer)

+

QueryGroup (integer)

@@ -707,7 +707,7 @@

PUBLIC Qu -

PUBLIC Ccs.BusinessLogic.IQueryEntry Entries

+

Ccs.BusinessLogic.IQueryEntry Entries

@@ -769,7 +769,7 @@

PUBLIC Ccs.BusinessLogic.IQueryEntry Join"> -

PUBLIC Ccs.BusinessLogic.JoinEnum Join

+

Ccs.BusinessLogic.JoinEnum Join

@@ -829,6 +829,6 @@

PUBLIC Ccs.BusinessLogic.JoinEnum ToEnum (character)"> -

PUBLIC Ccs.BusinessLogic.QueryOperatorEnum ToEnum (character)

+

Ccs.BusinessLogic.QueryOperatorEnum ToEnum (character)

@@ -158,7 +158,7 @@ @@ -179,7 +179,7 @@ @@ -219,7 +219,7 @@ @@ -237,7 +237,7 @@ @@ -259,7 +259,7 @@ @@ -327,7 +327,7 @@ @@ -344,7 +344,7 @@ @@ -361,7 +361,7 @@ @@ -378,7 +378,7 @@ @@ -395,7 +395,7 @@ @@ -434,7 +434,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -444,6 +444,6 @@

STATIC Qu

--> - 04.15.2022 11:51:51 + 04.18.2022 11:20:23 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.QueryPredicate.html b/docs/PCTDoc/OpenEdge.BusinessLogic.QueryPredicate.html index 2a50ea19..e728cc80 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.QueryPredicate.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.QueryPredicate.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -496,7 +496,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -558,7 +558,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -638,7 +638,7 @@

PUBLIC CHARACTER QueryPredicate ()"> -

PUBLIC QueryPredicate ()

+

QueryPredicate ()

@@ -684,7 +684,7 @@

PUBLIC Qu -

PUBLIC QueryPredicate (character, QueryOperatorEnum, IPrimitiveArrayHolder)

+

QueryPredicate (character, QueryOperatorEnum, IPrimitiveArrayHolder)

@@ -778,7 +778,7 @@

PUBLIC Qu -

PUBLIC QueryPredicate (character, QueryOperatorEnum, IPrimitiveHolder)

+

QueryPredicate (character, QueryOperatorEnum, IPrimitiveHolder)

@@ -908,7 +908,7 @@

PUBLIC Qu -

PUBLIC CHARACTER FieldName

+

CHARACTER FieldName

@@ -970,7 +970,7 @@

PUBLIC CHARACTER Join"> -

PUBLIC Ccs.BusinessLogic.JoinEnum Join

+

Ccs.BusinessLogic.JoinEnum Join

@@ -1032,7 +1032,7 @@

PUBLIC Ccs.BusinessLogic.JoinEnum Operator"> -

PUBLIC Ccs.BusinessLogic.QueryOperatorEnum Operator

+

Ccs.BusinessLogic.QueryOperatorEnum Operator

@@ -1094,7 +1094,7 @@

PUBLIC Ccs.BusinessLogic.QueryOperatorEnum Value"> -

PUBLIC Ccs.Common.Support.IPrimitiveHolder Value

+

Ccs.Common.Support.IPrimitiveHolder Value

@@ -1156,7 +1156,7 @@

PUBLIC Ccs.Common.Support.IPrimitiveHolder Values"> -

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder Values

+

Ccs.Common.Support.IPrimitiveArrayHolder Values

@@ -158,7 +158,7 @@ @@ -179,7 +179,7 @@ @@ -219,7 +219,7 @@ @@ -237,7 +237,7 @@ @@ -257,7 +257,7 @@ @@ -324,7 +324,7 @@ @@ -341,7 +341,7 @@ @@ -380,7 +380,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -1216,6 +1216,6 @@

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder
- 04.15.2022 11:51:51 + 04.18.2022 11:20:23 diff --git a/docs/PCTDoc/OpenEdge.BusinessLogic.QuerySortEntry.html b/docs/PCTDoc/OpenEdge.BusinessLogic.QuerySortEntry.html index 3b0af7a8..3d82000c 100644 --- a/docs/PCTDoc/OpenEdge.BusinessLogic.QuerySortEntry.html +++ b/docs/PCTDoc/OpenEdge.BusinessLogic.QuerySortEntry.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + +
@@ -442,7 +442,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -504,7 +504,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -584,7 +584,7 @@

PUBLIC CHARACTER QuerySortEntry ()"> -

PUBLIC QuerySortEntry ()

+

QuerySortEntry ()

@@ -630,7 +630,7 @@

PUBLIC Qu -

PUBLIC QuerySortEntry (character)

+

QuerySortEntry (character)

@@ -692,7 +692,7 @@

PUBLIC Qu -

PUBLIC QuerySortEntry (character, SortOrderEnum)

+

QuerySortEntry (character, SortOrderEnum)

@@ -806,7 +806,7 @@

PUBLIC Qu -

PUBLIC CHARACTER FieldName

+

CHARACTER FieldName

@@ -868,7 +868,7 @@

PUBLIC CHARACTER SortOrder"> -

PUBLIC Ccs.BusinessLogic.SortOrderEnum SortOrder

+

Ccs.BusinessLogic.SortOrderEnum SortOrder

@@ -928,6 +928,6 @@

PUBLIC Ccs.BusinessLogic.SortOrderEnum FromJson (JsonConstruct)"> -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -365,7 +365,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -481,7 +481,7 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct -

PUBLIC Ccs.BusinessLogic.CommitScopeEnum CommitScope

+

Ccs.BusinessLogic.CommitScopeEnum CommitScope

@@ -543,7 +543,7 @@

PUBLIC Ccs.BusinessLogic.CommitScopeEnum CustomRequest"> -

PUBLIC Progress.Lang.Object CustomRequest

+

Progress.Lang.Object CustomRequest

@@ -603,6 +603,6 @@

PUBLIC Progress.Lang.Object Equals (character, character)"> -

PUBLIC Equals (character, character)

+

Equals (character, character)

@@ -3794,7 +3794,7 @@

PUBLIC Eq -

PUBLIC Equals (date, date)

+

Equals (date, date)

@@ -3872,7 +3872,7 @@

PUBLIC Eq -

PUBLIC Equals (datetime, datetime)

+

Equals (datetime, datetime)

@@ -3950,7 +3950,7 @@

PUBLIC Eq -

PUBLIC Equals (datetime-tz, datetime-tz)

+

Equals (datetime-tz, datetime-tz)

@@ -4028,7 +4028,7 @@

PUBLIC Eq -

PUBLIC Equals (decimal, decimal)

+

Equals (decimal, decimal)

@@ -4106,7 +4106,7 @@

PUBLIC Eq -

PUBLIC Equals (handle, handle)

+

Equals (handle, handle)

@@ -4184,7 +4184,7 @@

PUBLIC Eq -

PUBLIC Equals (int64, int64)

+

Equals (int64, int64)

@@ -4262,7 +4262,7 @@

PUBLIC Eq -

PUBLIC Equals (integer, integer)

+

Equals (integer, integer)

@@ -4340,7 +4340,7 @@

PUBLIC Eq -

PUBLIC Equals (logical, logical)

+

Equals (logical, logical)

@@ -4418,7 +4418,7 @@

PUBLIC Eq -

PUBLIC Equals (longchar, longchar)

+

Equals (longchar, longchar)

@@ -4496,7 +4496,7 @@

PUBLIC Eq -

PUBLIC Equals (Object, Object)

+

Equals (Object, Object)

@@ -4574,7 +4574,7 @@

PUBLIC Eq -

PUBLIC Equals (recid, recid)

+

Equals (recid, recid)

@@ -4652,7 +4652,7 @@

PUBLIC Eq -

PUBLIC Equals (rowid, rowid)

+

Equals (rowid, rowid)

@@ -4730,7 +4730,7 @@

PUBLIC Eq -

PUBLIC HasDeterminateExtent (character[])

+

HasDeterminateExtent (character[])

@@ -4792,7 +4792,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (character[], character)

+

HasDeterminateExtent (character[], character)

@@ -4870,7 +4870,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (int64[])

+

HasDeterminateExtent (int64[])

@@ -4932,7 +4932,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (int64[], character)

+

HasDeterminateExtent (int64[], character)

@@ -5010,7 +5010,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (integer[])

+

HasDeterminateExtent (integer[])

@@ -5072,7 +5072,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (integer[], character)

+

HasDeterminateExtent (integer[], character)

@@ -5150,7 +5150,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (Object[], character)

+

HasDeterminateExtent (Object[], character)

@@ -5228,7 +5228,7 @@

PUBLIC Ha -

PUBLIC IsAbstract (Class)

+

IsAbstract (Class)

@@ -5290,7 +5290,7 @@

PUBLIC Is -

PUBLIC IsAvailable (handle)

+

IsAvailable (handle)

@@ -5352,7 +5352,7 @@

PUBLIC Is -

PUBLIC IsAvailable (handle, character)

+

IsAvailable (handle, character)

@@ -5430,7 +5430,7 @@

PUBLIC Is -

PUBLIC IsDecimal (character)

+

IsDecimal (character)

@@ -5492,7 +5492,7 @@

PUBLIC Is -

PUBLIC IsDecimal (character, character)

+

IsDecimal (character, character)

@@ -5570,7 +5570,7 @@

PUBLIC Is -

PUBLIC IsEmpty (character)

+

IsEmpty (character)

@@ -5632,7 +5632,7 @@

PUBLIC Is -

PUBLIC IsEmpty (handle)

+

IsEmpty (handle)

@@ -5694,7 +5694,7 @@

PUBLIC Is -

PUBLIC IsEmpty (handle, character)

+

IsEmpty (handle, character)

@@ -5772,7 +5772,7 @@

PUBLIC Is -

PUBLIC IsEmpty (longchar, character)

+

IsEmpty (longchar, character)

@@ -5850,7 +5850,7 @@

PUBLIC Is -

PUBLIC IsEmpty (memptr)

+

IsEmpty (memptr)

@@ -5912,7 +5912,7 @@

PUBLIC Is -

PUBLIC IsEmpty (memptr, character)

+

IsEmpty (memptr, character)

@@ -5990,7 +5990,7 @@

PUBLIC Is -

PUBLIC IsFalse (logical)

+

IsFalse (logical)

@@ -6052,7 +6052,7 @@

PUBLIC Is -

PUBLIC IsFalse (logical, character)

+

IsFalse (logical, character)

@@ -6130,7 +6130,7 @@

PUBLIC Is -

PUBLIC IsFinal (Class)

+

IsFinal (Class)

@@ -6192,7 +6192,7 @@

PUBLIC Is -

PUBLIC IsIn (character, longchar, character)

+

IsIn (character, longchar, character)

@@ -6286,7 +6286,7 @@

PUBLIC Is -

PUBLIC IsIn (character, longchar, character, character)

+

IsIn (character, longchar, character, character)

@@ -6396,7 +6396,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (character[])

+

IsIndeterminateArray (character[])

@@ -6458,7 +6458,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (character[], character)

+

IsIndeterminateArray (character[], character)

@@ -6536,7 +6536,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (int64[])

+

IsIndeterminateArray (int64[])

@@ -6598,7 +6598,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (int64[], character)

+

IsIndeterminateArray (int64[], character)

@@ -6676,7 +6676,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (integer[])

+

IsIndeterminateArray (integer[])

@@ -6738,7 +6738,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (integer[], character)

+

IsIndeterminateArray (integer[], character)

@@ -6816,7 +6816,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (Object[], character)

+

IsIndeterminateArray (Object[], character)

@@ -6894,7 +6894,7 @@

PUBLIC Is -

PUBLIC IsInt64 (character)

+

IsInt64 (character)

@@ -6956,7 +6956,7 @@

PUBLIC Is -

PUBLIC IsInt64 (character, character)

+

IsInt64 (character, character)

@@ -7034,7 +7034,7 @@

PUBLIC Is -

PUBLIC IsInteger (character)

+

IsInteger (character)

@@ -7096,7 +7096,7 @@

PUBLIC Is -

PUBLIC IsInteger (character, character)

+

IsInteger (character, character)

@@ -7174,7 +7174,7 @@

PUBLIC Is -

PUBLIC IsInterface (Class)

+

IsInterface (Class)

@@ -7236,7 +7236,7 @@

PUBLIC Is -

PUBLIC IsLogical (character)

+

IsLogical (character)

@@ -7298,7 +7298,7 @@

PUBLIC Is -

PUBLIC IsLogical (character, character)

+

IsLogical (character, character)

@@ -7376,7 +7376,7 @@

PUBLIC Is -

PUBLIC IsLogical (character, character, character)

+

IsLogical (character, character, character)

@@ -7470,7 +7470,7 @@

PUBLIC Is -

PUBLIC IsNegative (decimal)

+

IsNegative (decimal)

@@ -7532,7 +7532,7 @@

PUBLIC Is -

PUBLIC IsNegative (decimal, character)

+

IsNegative (decimal, character)

@@ -7610,7 +7610,7 @@

PUBLIC Is -

PUBLIC IsNegative (int64)

+

IsNegative (int64)

@@ -7672,7 +7672,7 @@

PUBLIC Is -

PUBLIC IsNegative (int64, character)

+

IsNegative (int64, character)

@@ -7750,7 +7750,7 @@

PUBLIC Is -

PUBLIC IsNegative (integer)

+

IsNegative (integer)

@@ -7812,7 +7812,7 @@

PUBLIC Is -

PUBLIC IsNegative (integer, character)

+

IsNegative (integer, character)

@@ -7890,7 +7890,7 @@

PUBLIC Is -

PUBLIC IsNull (character)

+

IsNull (character)

@@ -7952,7 +7952,7 @@

PUBLIC Is -

PUBLIC IsNull (character, character)

+

IsNull (character, character)

@@ -8030,7 +8030,7 @@

PUBLIC Is -

PUBLIC IsNull (date)

+

IsNull (date)

@@ -8092,7 +8092,7 @@

PUBLIC Is -

PUBLIC IsNull (date, character)

+

IsNull (date, character)

@@ -8170,7 +8170,7 @@

PUBLIC Is -

PUBLIC IsNull (datetime)

+

IsNull (datetime)

@@ -8232,7 +8232,7 @@

PUBLIC Is -

PUBLIC IsNull (datetime, character)

+

IsNull (datetime, character)

@@ -8310,7 +8310,7 @@

PUBLIC Is -

PUBLIC IsNull (datetime-tz)

+

IsNull (datetime-tz)

@@ -8372,7 +8372,7 @@

PUBLIC Is -

PUBLIC IsNull (datetime-tz, character)

+

IsNull (datetime-tz, character)

@@ -8450,7 +8450,7 @@

PUBLIC Is -

PUBLIC IsNull (decimal)

+

IsNull (decimal)

@@ -8512,7 +8512,7 @@

PUBLIC Is -

PUBLIC IsNull (decimal, character)

+

IsNull (decimal, character)

@@ -8590,7 +8590,7 @@

PUBLIC Is -

PUBLIC IsNull (handle)

+

IsNull (handle)

@@ -8652,7 +8652,7 @@

PUBLIC Is -

PUBLIC IsNull (handle, character)

+

IsNull (handle, character)

@@ -8730,7 +8730,7 @@

PUBLIC Is -

PUBLIC IsNull (int64)

+

IsNull (int64)

@@ -8792,7 +8792,7 @@

PUBLIC Is -

PUBLIC IsNull (int64, character)

+

IsNull (int64, character)

@@ -8870,7 +8870,7 @@

PUBLIC Is -

PUBLIC IsNull (integer)

+

IsNull (integer)

@@ -8932,7 +8932,7 @@

PUBLIC Is -

PUBLIC IsNull (integer, character)

+

IsNull (integer, character)

@@ -9010,7 +9010,7 @@

PUBLIC Is -

PUBLIC IsNull (longchar)

+

IsNull (longchar)

@@ -9072,7 +9072,7 @@

PUBLIC Is -

PUBLIC IsNull (longchar, character)

+

IsNull (longchar, character)

@@ -9150,7 +9150,7 @@

PUBLIC Is -

PUBLIC IsNull (Object)

+

IsNull (Object)

@@ -9212,7 +9212,7 @@

PUBLIC Is -

PUBLIC IsNull (Object, character)

+

IsNull (Object, character)

@@ -9290,7 +9290,7 @@

PUBLIC Is -

PUBLIC IsNull (Object[])

+

IsNull (Object[])

@@ -9352,7 +9352,7 @@

PUBLIC Is -

PUBLIC IsNull (Object[], character)

+

IsNull (Object[], character)

@@ -9430,7 +9430,7 @@

PUBLIC Is -

PUBLIC IsNull (raw)

+

IsNull (raw)

@@ -9492,7 +9492,7 @@

PUBLIC Is -

PUBLIC IsNull (raw, character)

+

IsNull (raw, character)

@@ -9570,7 +9570,7 @@

PUBLIC Is -

PUBLIC IsPositive (decimal)

+

IsPositive (decimal)

@@ -9632,7 +9632,7 @@

PUBLIC Is -

PUBLIC IsPositive (decimal, character)

+

IsPositive (decimal, character)

@@ -9710,7 +9710,7 @@

PUBLIC Is -

PUBLIC IsPositive (int64)

+

IsPositive (int64)

@@ -9772,7 +9772,7 @@

PUBLIC Is -

PUBLIC IsPositive (int64, character)

+

IsPositive (int64, character)

@@ -9850,7 +9850,7 @@

PUBLIC Is -

PUBLIC IsPositive (integer)

+

IsPositive (integer)

@@ -9912,7 +9912,7 @@

PUBLIC Is -

PUBLIC IsPositive (integer, character)

+

IsPositive (integer, character)

@@ -9990,7 +9990,7 @@

PUBLIC Is -

PUBLIC IsTrue (logical)

+

IsTrue (logical)

@@ -10052,7 +10052,7 @@

PUBLIC Is -

PUBLIC IsTrue (logical, character)

+

IsTrue (logical, character)

@@ -10130,7 +10130,7 @@

PUBLIC Is -

PUBLIC IsType (handle, DataTypeEnum)

+

IsType (handle, DataTypeEnum)

@@ -10208,7 +10208,7 @@

PUBLIC Is -

PUBLIC IsType (handle, DataTypeEnum, character)

+

IsType (handle, DataTypeEnum, character)

@@ -10302,7 +10302,7 @@

PUBLIC Is -

PUBLIC IsType (Object, Class)

+

IsType (Object, Class)

@@ -10380,7 +10380,7 @@

PUBLIC Is -

PUBLIC IsType (Object[], Class)

+

IsType (Object[], Class)

@@ -10458,7 +10458,7 @@

PUBLIC Is -

PUBLIC IsUnknown (logical)

+

IsUnknown (logical)

@@ -10520,7 +10520,7 @@

PUBLIC Is -

PUBLIC IsUnknown (logical, character)

+

IsUnknown (logical, character)

@@ -10598,7 +10598,7 @@

PUBLIC Is -

PUBLIC IsZero (decimal)

+

IsZero (decimal)

@@ -10660,7 +10660,7 @@

PUBLIC Is -

PUBLIC IsZero (decimal, character)

+

IsZero (decimal, character)

@@ -10738,7 +10738,7 @@

PUBLIC Is -

PUBLIC IsZero (int64)

+

IsZero (int64)

@@ -10800,7 +10800,7 @@

PUBLIC Is -

PUBLIC IsZero (int64, character)

+

IsZero (int64, character)

@@ -10878,7 +10878,7 @@

PUBLIC Is -

PUBLIC IsZero (integer)

+

IsZero (integer)

@@ -10940,7 +10940,7 @@

PUBLIC Is -

PUBLIC IsZero (integer, character)

+

IsZero (integer, character)

@@ -11018,7 +11018,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (decimal)

+

IsZeroOrNegative (decimal)

@@ -11080,7 +11080,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (decimal, character)

+

IsZeroOrNegative (decimal, character)

@@ -11158,7 +11158,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (int64)

+

IsZeroOrNegative (int64)

@@ -11220,7 +11220,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (int64, character)

+

IsZeroOrNegative (int64, character)

@@ -11298,7 +11298,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (integer)

+

IsZeroOrNegative (integer)

@@ -11360,7 +11360,7 @@

PUBLIC Is -

PUBLIC IsZeroOrNegative (integer, character)

+

IsZeroOrNegative (integer, character)

@@ -11438,7 +11438,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (decimal)

+

IsZeroOrPositive (decimal)

@@ -11500,7 +11500,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (decimal, character)

+

IsZeroOrPositive (decimal, character)

@@ -11578,7 +11578,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (int64)

+

IsZeroOrPositive (int64)

@@ -11640,7 +11640,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (int64, character)

+

IsZeroOrPositive (int64, character)

@@ -11718,7 +11718,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (integer)

+

IsZeroOrPositive (integer)

@@ -11780,7 +11780,7 @@

PUBLIC Is -

PUBLIC IsZeroOrPositive (integer, character)

+

IsZeroOrPositive (integer, character)

@@ -11858,7 +11858,7 @@

PUBLIC Is -

PUBLIC NonZero (decimal)

+

NonZero (decimal)

@@ -11920,7 +11920,7 @@

PUBLIC No -

PUBLIC NonZero (decimal, character)

+

NonZero (decimal, character)

@@ -11998,7 +11998,7 @@

PUBLIC No -

PUBLIC NonZero (int64)

+

NonZero (int64)

@@ -12060,7 +12060,7 @@

PUBLIC No -

PUBLIC NonZero (int64, character)

+

NonZero (int64, character)

@@ -12138,7 +12138,7 @@

PUBLIC No -

PUBLIC NonZero (int64[])

+

NonZero (int64[])

@@ -12200,7 +12200,7 @@

PUBLIC No -

PUBLIC NonZero (int64[], character)

+

NonZero (int64[], character)

@@ -12278,7 +12278,7 @@

PUBLIC No -

PUBLIC NonZero (integer)

+

NonZero (integer)

@@ -12340,7 +12340,7 @@

PUBLIC No -

PUBLIC NonZero (integer, character)

+

NonZero (integer, character)

@@ -12418,7 +12418,7 @@

PUBLIC No -

PUBLIC NonZero (integer[])

+

NonZero (integer[])

@@ -12480,7 +12480,7 @@

PUBLIC No -

PUBLIC NonZero (integer[], character)

+

NonZero (integer[], character)

@@ -12558,7 +12558,7 @@

PUBLIC No -

PUBLIC NotAbstract (Class)

+

NotAbstract (Class)

@@ -12620,7 +12620,7 @@

PUBLIC No -

PUBLIC NotAvailable (handle)

+

NotAvailable (handle)

@@ -12682,7 +12682,7 @@

PUBLIC No -

PUBLIC NotAvailable (handle, character)

+

NotAvailable (handle, character)

@@ -12760,7 +12760,7 @@

PUBLIC No -

PUBLIC NotEmpty (handle)

+

NotEmpty (handle)

@@ -12822,7 +12822,7 @@

PUBLIC No -

PUBLIC NotEmpty (handle, character)

+

NotEmpty (handle, character)

@@ -12900,7 +12900,7 @@

PUBLIC No -

PUBLIC NotEmpty (longchar)

+

NotEmpty (longchar)

@@ -12962,7 +12962,7 @@

PUBLIC No -

PUBLIC NotEmpty (longchar, character)

+

NotEmpty (longchar, character)

@@ -13040,7 +13040,7 @@

PUBLIC No -

PUBLIC NotEmpty (memptr)

+

NotEmpty (memptr)

@@ -13102,7 +13102,7 @@

PUBLIC No -

PUBLIC NotEmpty (memptr, character)

+

NotEmpty (memptr, character)

@@ -13180,7 +13180,7 @@

PUBLIC No -

PUBLIC NotEqual (character, character)

+

NotEqual (character, character)

@@ -13258,7 +13258,7 @@

PUBLIC No -

PUBLIC NotEqual (decimal, decimal)

+

NotEqual (decimal, decimal)

@@ -13336,7 +13336,7 @@

PUBLIC No -

PUBLIC NotEqual (handle, handle)

+

NotEqual (handle, handle)

@@ -13414,7 +13414,7 @@

PUBLIC No -

PUBLIC NotEqual (int64, int64)

+

NotEqual (int64, int64)

@@ -13492,7 +13492,7 @@

PUBLIC No -

PUBLIC NotEqual (integer, integer)

+

NotEqual (integer, integer)

@@ -13570,7 +13570,7 @@

PUBLIC No -

PUBLIC NotEqual (longchar, longchar)

+

NotEqual (longchar, longchar)

@@ -13648,7 +13648,7 @@

PUBLIC No -

PUBLIC NotEqual (Object, Object)

+

NotEqual (Object, Object)

@@ -13726,7 +13726,7 @@

PUBLIC No -

PUBLIC NotEqual (recid, recid)

+

NotEqual (recid, recid)

@@ -13804,7 +13804,7 @@

PUBLIC No -

PUBLIC NotEqual (rowid, rowid)

+

NotEqual (rowid, rowid)

@@ -13882,7 +13882,7 @@

PUBLIC No -

PUBLIC NotFalse (logical)

+

NotFalse (logical)

@@ -13944,7 +13944,7 @@

PUBLIC No -

PUBLIC NotFalse (logical, character)

+

NotFalse (logical, character)

@@ -14022,7 +14022,7 @@

PUBLIC No -

PUBLIC NotFinal (Class)

+

NotFinal (Class)

@@ -14084,7 +14084,7 @@

PUBLIC No -

PUBLIC NotIn (character, longchar, character)

+

NotIn (character, longchar, character)

@@ -14178,7 +14178,7 @@

PUBLIC No -

PUBLIC NotIn (character, longchar, character, character)

+

NotIn (character, longchar, character, character)

@@ -14288,7 +14288,7 @@

PUBLIC No -

PUBLIC NotInterface (Class)

+

NotInterface (Class)

@@ -14350,7 +14350,7 @@

PUBLIC No -

PUBLIC NotNull (character)

+

NotNull (character)

@@ -14412,7 +14412,7 @@

PUBLIC No -

PUBLIC NotNull (character, character)

+

NotNull (character, character)

@@ -14490,7 +14490,7 @@

PUBLIC No -

PUBLIC NotNull (character[])

+

NotNull (character[])

@@ -14552,7 +14552,7 @@

PUBLIC No -

PUBLIC NotNull (character[], character)

+

NotNull (character[], character)

@@ -14630,7 +14630,7 @@

PUBLIC No -

PUBLIC NotNull (date)

+

NotNull (date)

@@ -14692,7 +14692,7 @@

PUBLIC No -

PUBLIC NotNull (date, character)

+

NotNull (date, character)

@@ -14770,7 +14770,7 @@

PUBLIC No -

PUBLIC NotNull (datetime)

+

NotNull (datetime)

@@ -14832,7 +14832,7 @@

PUBLIC No -

PUBLIC NotNull (datetime, character)

+

NotNull (datetime, character)

@@ -14910,7 +14910,7 @@

PUBLIC No -

PUBLIC NotNull (datetime-tz)

+

NotNull (datetime-tz)

@@ -14972,7 +14972,7 @@

PUBLIC No -

PUBLIC NotNull (datetime-tz, character)

+

NotNull (datetime-tz, character)

@@ -15050,7 +15050,7 @@

PUBLIC No -

PUBLIC NotNull (decimal)

+

NotNull (decimal)

@@ -15112,7 +15112,7 @@

PUBLIC No -

PUBLIC NotNull (decimal, character)

+

NotNull (decimal, character)

@@ -15190,7 +15190,7 @@

PUBLIC No -

PUBLIC NotNull (handle)

+

NotNull (handle)

@@ -15252,7 +15252,7 @@

PUBLIC No -

PUBLIC NotNull (handle, character)

+

NotNull (handle, character)

@@ -15330,7 +15330,7 @@

PUBLIC No -

PUBLIC NotNull (int64)

+

NotNull (int64)

@@ -15392,7 +15392,7 @@

PUBLIC No -

PUBLIC NotNull (int64, character)

+

NotNull (int64, character)

@@ -15470,7 +15470,7 @@

PUBLIC No -

PUBLIC NotNull (integer)

+

NotNull (integer)

@@ -15532,7 +15532,7 @@

PUBLIC No -

PUBLIC NotNull (integer, character)

+

NotNull (integer, character)

@@ -15610,7 +15610,7 @@

PUBLIC No -

PUBLIC NotNull (longchar)

+

NotNull (longchar)

@@ -15672,7 +15672,7 @@

PUBLIC No -

PUBLIC NotNull (longchar, character)

+

NotNull (longchar, character)

@@ -15750,7 +15750,7 @@

PUBLIC No -

PUBLIC NotNull (Object)

+

NotNull (Object)

@@ -15812,7 +15812,7 @@

PUBLIC No -

PUBLIC NotNull (Object, character)

+

NotNull (Object, character)

@@ -15890,7 +15890,7 @@

PUBLIC No -

PUBLIC NotNull (Object[])

+

NotNull (Object[])

@@ -15952,7 +15952,7 @@

PUBLIC No -

PUBLIC NotNull (Object[], character)

+

NotNull (Object[], character)

@@ -16030,7 +16030,7 @@

PUBLIC No -

PUBLIC NotNull (raw)

+

NotNull (raw)

@@ -16092,7 +16092,7 @@

PUBLIC No -

PUBLIC NotNull (raw, character)

+

NotNull (raw, character)

@@ -16170,7 +16170,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (character)

+

NotNullOrEmpty (character)

@@ -16232,7 +16232,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (character, character)

+

NotNullOrEmpty (character, character)

@@ -16310,7 +16310,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (character[])

+

NotNullOrEmpty (character[])

@@ -16372,7 +16372,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (character[], character)

+

NotNullOrEmpty (character[], character)

@@ -16450,7 +16450,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (ICollection)

+

NotNullOrEmpty (ICollection)

@@ -16512,7 +16512,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (ICollection, character)

+

NotNullOrEmpty (ICollection, character)

@@ -16590,7 +16590,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (IMap)

+

NotNullOrEmpty (IMap)

@@ -16652,7 +16652,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (IMap, character)

+

NotNullOrEmpty (IMap, character)

@@ -16730,7 +16730,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (longchar)

+

NotNullOrEmpty (longchar)

@@ -16792,7 +16792,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (longchar, character)

+

NotNullOrEmpty (longchar, character)

@@ -16870,7 +16870,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (Object[])

+

NotNullOrEmpty (Object[])

@@ -16932,7 +16932,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (Object[], character)

+

NotNullOrEmpty (Object[], character)

@@ -17010,7 +17010,7 @@

PUBLIC No -

PUBLIC NotNullOrZero (integer)

+

NotNullOrZero (integer)

@@ -17072,7 +17072,7 @@

PUBLIC No -

PUBLIC NotNullOrZero (integer, character)

+

NotNullOrZero (integer, character)

@@ -17150,7 +17150,7 @@

PUBLIC No -

PUBLIC NotTrue (logical)

+

NotTrue (logical)

@@ -17212,7 +17212,7 @@

PUBLIC No -

PUBLIC NotTrue (logical, character)

+

NotTrue (logical, character)

@@ -17290,7 +17290,7 @@

PUBLIC No -

PUBLIC NotType (handle, DataTypeEnum)

+

NotType (handle, DataTypeEnum)

@@ -17368,7 +17368,7 @@

PUBLIC No -

PUBLIC NotType (handle, DataTypeEnum, character)

+

NotType (handle, DataTypeEnum, character)

@@ -17462,7 +17462,7 @@

PUBLIC No -

PUBLIC NotType (Object, Class)

+

NotType (Object, Class)

@@ -17540,7 +17540,7 @@

PUBLIC No -

PUBLIC NotUnknown (logical)

+

NotUnknown (logical)

@@ -17602,7 +17602,7 @@

PUBLIC No -

PUBLIC NotUnknown (logical, character)

+

NotUnknown (logical, character)

@@ -17680,7 +17680,7 @@

PUBLIC No -

PUBLIC NotZero (decimal)

+

NotZero (decimal)

@@ -17742,7 +17742,7 @@

PUBLIC No -

PUBLIC NotZero (decimal, character)

+

NotZero (decimal, character)

@@ -17820,7 +17820,7 @@

PUBLIC No -

PUBLIC NotZero (int64)

+

NotZero (int64)

@@ -17882,7 +17882,7 @@

PUBLIC No -

PUBLIC NotZero (int64, character)

+

NotZero (int64, character)

@@ -17960,7 +17960,7 @@

PUBLIC No -

PUBLIC NotZero (integer)

+

NotZero (integer)

@@ -18022,7 +18022,7 @@

PUBLIC No -

PUBLIC NotZero (integer, character)

+

NotZero (integer, character)

@@ -18100,7 +18100,7 @@

PUBLIC No -

PUBLIC RaiseError (character)

+

RaiseError (character)

@@ -160,7 +160,7 @@ @@ -181,7 +181,7 @@ @@ -203,7 +203,7 @@ @@ -224,7 +224,7 @@ @@ -245,7 +245,7 @@ @@ -266,7 +266,7 @@ @@ -288,7 +288,7 @@ @@ -309,7 +309,7 @@ @@ -330,7 +330,7 @@ @@ -352,7 +352,7 @@ @@ -373,7 +373,7 @@ @@ -395,7 +395,7 @@ @@ -415,7 +415,7 @@ @@ -437,7 +437,7 @@ @@ -460,7 +460,7 @@ @@ -482,7 +482,7 @@ @@ -505,7 +505,7 @@ @@ -526,7 +526,7 @@ @@ -548,7 +548,7 @@ @@ -569,7 +569,7 @@ @@ -590,7 +590,7 @@ @@ -611,7 +611,7 @@ @@ -633,7 +633,7 @@ @@ -654,7 +654,7 @@ @@ -676,7 +676,7 @@ @@ -697,7 +697,7 @@ @@ -719,7 +719,7 @@ @@ -740,7 +740,7 @@ @@ -762,7 +762,7 @@ @@ -783,7 +783,7 @@ @@ -805,7 +805,7 @@ @@ -825,7 +825,7 @@ @@ -847,7 +847,7 @@ @@ -870,7 +870,7 @@ @@ -983,7 +983,7 @@ -

PUBLIC Equals (Object, Object)

+

Equals (Object, Object)

@@ -18214,6 +18214,6 @@

PUBLIC Ra

--> - 04.15.2022 11:51:55 + 04.18.2022 11:20:25 diff --git a/docs/PCTDoc/OpenEdge.Core.Assertion.AssertObject.html b/docs/PCTDoc/OpenEdge.Core.Assertion.AssertObject.html index 85e0ce9a..17559030 100644 --- a/docs/PCTDoc/OpenEdge.Core.Assertion.AssertObject.html +++ b/docs/PCTDoc/OpenEdge.Core.Assertion.AssertObject.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -1061,7 +1061,7 @@

PUBLIC Eq -

PUBLIC HasDeterminateExtent (Object[])

+

HasDeterminateExtent (Object[])

@@ -1123,7 +1123,7 @@

PUBLIC Ha -

PUBLIC HasDeterminateExtent (Object[], character)

+

HasDeterminateExtent (Object[], character)

@@ -1201,7 +1201,7 @@

PUBLIC Ha -

PUBLIC IsAbstract (Class)

+

IsAbstract (Class)

@@ -1263,7 +1263,7 @@

PUBLIC Is -

PUBLIC IsFinal (Class)

+

IsFinal (Class)

@@ -1325,7 +1325,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (Object[])

+

IsIndeterminateArray (Object[])

@@ -1387,7 +1387,7 @@

PUBLIC Is -

PUBLIC IsIndeterminateArray (Object[], character)

+

IsIndeterminateArray (Object[], character)

@@ -1465,7 +1465,7 @@

PUBLIC Is -

PUBLIC IsInterface (Class)

+

IsInterface (Class)

@@ -1527,7 +1527,7 @@

PUBLIC Is -

PUBLIC IsNull (Object)

+

IsNull (Object)

@@ -1589,7 +1589,7 @@

PUBLIC Is -

PUBLIC IsNull (Object, character)

+

IsNull (Object, character)

@@ -1667,7 +1667,7 @@

PUBLIC Is -

PUBLIC IsNull (Object[])

+

IsNull (Object[])

@@ -1729,7 +1729,7 @@

PUBLIC Is -

PUBLIC IsNull (Object[], character)

+

IsNull (Object[], character)

@@ -1807,7 +1807,7 @@

PUBLIC Is -

PUBLIC IsSerializable (Object)

+

IsSerializable (Object)

@@ -1869,7 +1869,7 @@

PUBLIC Is -

PUBLIC IsType (handle, DataTypeEnum)

+

IsType (handle, DataTypeEnum)

@@ -1947,7 +1947,7 @@

PUBLIC Is -

PUBLIC IsType (handle, DataTypeEnum, character)

+

IsType (handle, DataTypeEnum, character)

@@ -2041,7 +2041,7 @@

PUBLIC Is -

PUBLIC IsType (Object, Class)

+

IsType (Object, Class)

@@ -2119,7 +2119,7 @@

PUBLIC Is -

PUBLIC IsType (Object[], Class)

+

IsType (Object[], Class)

@@ -2197,7 +2197,7 @@

PUBLIC Is -

PUBLIC NotAbstract (Class)

+

NotAbstract (Class)

@@ -2259,7 +2259,7 @@

PUBLIC No -

PUBLIC NotEqual (Object, Object)

+

NotEqual (Object, Object)

@@ -2337,7 +2337,7 @@

PUBLIC No -

PUBLIC NotFinal (Class)

+

NotFinal (Class)

@@ -2399,7 +2399,7 @@

PUBLIC No -

PUBLIC NotInterface (Class)

+

NotInterface (Class)

@@ -2461,7 +2461,7 @@

PUBLIC No -

PUBLIC NotNull (Object)

+

NotNull (Object)

@@ -2523,7 +2523,7 @@

PUBLIC No -

PUBLIC NotNull (Object, character)

+

NotNull (Object, character)

@@ -2601,7 +2601,7 @@

PUBLIC No -

PUBLIC NotNull (Object[])

+

NotNull (Object[])

@@ -2663,7 +2663,7 @@

PUBLIC No -

PUBLIC NotNull (Object[], character)

+

NotNull (Object[], character)

@@ -2741,7 +2741,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (ICollection)

+

NotNullOrEmpty (ICollection)

@@ -2803,7 +2803,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (ICollection, character)

+

NotNullOrEmpty (ICollection, character)

@@ -2881,7 +2881,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (IMap)

+

NotNullOrEmpty (IMap)

@@ -2943,7 +2943,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (IMap, character)

+

NotNullOrEmpty (IMap, character)

@@ -3021,7 +3021,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (Object[])

+

NotNullOrEmpty (Object[])

@@ -3083,7 +3083,7 @@

PUBLIC No -

PUBLIC NotNullOrEmpty (Object[], character)

+

NotNullOrEmpty (Object[], character)

@@ -3161,7 +3161,7 @@

PUBLIC No -

PUBLIC NotSerializable (Object)

+

NotSerializable (Object)

@@ -3223,7 +3223,7 @@

PUBLIC No -

PUBLIC NotType (handle, DataTypeEnum)

+

NotType (handle, DataTypeEnum)

@@ -3301,7 +3301,7 @@

PUBLIC No -

PUBLIC NotType (handle, DataTypeEnum, character)

+

NotType (handle, DataTypeEnum, character)

@@ -3395,7 +3395,7 @@

PUBLIC No -

PUBLIC NotType (Object, Class)

+

NotType (Object, Class)

@@ -158,7 +158,7 @@ @@ -270,7 +270,7 @@ -

PUBLIC FromJson (JsonConstruct)

+

FromJson (JsonConstruct)

@@ -3525,6 +3525,6 @@

PUBLIC No

--> - 04.15.2022 11:51:56 + 04.18.2022 11:20:25 diff --git a/docs/PCTDoc/OpenEdge.Core.Assertion.package.html b/docs/PCTDoc/OpenEdge.Core.Assertion.package.html index 961e1344..229978cc 100644 --- a/docs/PCTDoc/OpenEdge.Core.Assertion.package.html +++ b/docs/PCTDoc/OpenEdge.Core.Assertion.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -70,7 +70,7 @@
- 04.15.2022 11:52:49 + 04.18.2022 11:20:41
diff --git a/docs/PCTDoc/OpenEdge.Core.Json.IJsonSerializer.html b/docs/PCTDoc/OpenEdge.Core.Json.IJsonSerializer.html index b01fafac..97fd5c3a 100644 --- a/docs/PCTDoc/OpenEdge.Core.Json.IJsonSerializer.html +++ b/docs/PCTDoc/OpenEdge.Core.Json.IJsonSerializer.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + +
@@ -332,7 +332,7 @@

PUBLIC Fr -

PUBLIC Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

+

Progress.Json.ObjectModel.JsonConstruct ToJsonConstruct ()

@@ -160,7 +160,7 @@ @@ -182,7 +182,7 @@ @@ -210,7 +210,7 @@ @@ -232,7 +232,7 @@ @@ -255,7 +255,7 @@ @@ -277,7 +277,7 @@ @@ -299,7 +299,7 @@ @@ -328,7 +328,7 @@ @@ -357,7 +357,7 @@ @@ -379,7 +379,7 @@ @@ -401,7 +401,7 @@ @@ -447,7 +447,7 @@ @@ -469,7 +469,7 @@ @@ -502,7 +502,7 @@ @@ -523,7 +523,7 @@ @@ -545,7 +545,7 @@ @@ -569,7 +569,7 @@ @@ -607,7 +607,7 @@ @@ -666,7 +666,7 @@ @@ -754,7 +754,7 @@ -

PUBLIC AddToArray (integer, Object, JsonArray)

+

AddToArray (integer, Object, JsonArray)

@@ -446,6 +446,6 @@

PUBLIC Progress.Json.ObjectModel.JsonConstruct
--> - 04.15.2022 11:51:56 + 04.18.2022 11:20:26 diff --git a/docs/PCTDoc/OpenEdge.Core.Json.JsonConverter.html b/docs/PCTDoc/OpenEdge.Core.Json.JsonConverter.html index aa127cba..7e0172ba 100644 --- a/docs/PCTDoc/OpenEdge.Core.Json.JsonConverter.html +++ b/docs/PCTDoc/OpenEdge.Core.Json.JsonConverter.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - - +
@@ -848,7 +848,7 @@

PUBLIC Ad -

PUBLIC AddToObject (Object, Object, JsonObject)

+

AddToObject (Object, Object, JsonObject)

@@ -942,7 +942,7 @@

PUBLIC Ad -

PUBLIC Merge (JsonObject, JsonObject, logical)

+

Merge (JsonObject, JsonObject, logical)

@@ -1036,7 +1036,7 @@

PUBLIC Me -

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (ICollection)

+

Progress.Json.ObjectModel.JsonArray ToArray (ICollection)

@@ -1114,7 +1114,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (IObjectArrayHolder)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (IObjectArrayHolder)

+

Progress.Json.ObjectModel.JsonArray ToArray (IObjectArrayHolder)

@@ -1192,7 +1192,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (IPrimitiveArrayHolder)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (IPrimitiveArrayHolder)

+

Progress.Json.ObjectModel.JsonArray ToArray (IPrimitiveArrayHolder)

@@ -1270,7 +1270,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (Object[])"> -

PUBLIC Progress.Json.ObjectModel.JsonArray ToArray (Object[])

+

Progress.Json.ObjectModel.JsonArray ToArray (Object[])

@@ -1348,7 +1348,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray ToEnum (JsonArray, integer, Class)"> -

PUBLIC Progress.Lang.Enum ToEnum (JsonArray, integer, Class)

+

Progress.Lang.Enum ToEnum (JsonArray, integer, Class)

@@ -1458,7 +1458,7 @@

PUBLIC Progress.Lang.Enum ToEnum (JsonObject, character, Class)"> -

PUBLIC Progress.Lang.Enum ToEnum (JsonObject, character, Class)

+

Progress.Lang.Enum ToEnum (JsonObject, character, Class)

@@ -1568,7 +1568,7 @@

PUBLIC Progress.Lang.Enum ToObject (IMap)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (IMap)

+

Progress.Json.ObjectModel.JsonObject ToObject (IMap)

@@ -1646,7 +1646,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (KeyValuePair)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (KeyValuePair)

+

Progress.Json.ObjectModel.JsonObject ToObject (KeyValuePair)

@@ -1724,7 +1724,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Error)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Error)

+

Progress.Json.ObjectModel.JsonObject ToObject (Error)

@@ -1802,7 +1802,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Object, Object)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Object, Object)

+

Progress.Json.ObjectModel.JsonObject ToObject (Object, Object)

@@ -1896,7 +1896,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Stop)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject ToObject (Stop)

+

Progress.Json.ObjectModel.JsonObject ToObject (Stop)

@@ -1974,7 +1974,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject ToObjectArray (JsonArray)"> -

PUBLIC OpenEdge.Core.IObjectArrayHolder ToObjectArray (JsonArray)

+

OpenEdge.Core.IObjectArrayHolder ToObjectArray (JsonArray)

@@ -2052,7 +2052,7 @@

PUBLIC OpenEdge.Core.IObjectArrayHolder ToObjectArray (JsonArray, Class)"> -

PUBLIC OpenEdge.Core.IObjectArrayHolder ToObjectArray (JsonArray, Class)

+

OpenEdge.Core.IObjectArrayHolder ToObjectArray (JsonArray, Class)

@@ -2146,7 +2146,7 @@

PUBLIC OpenEdge.Core.IObjectArrayHolder ToPrimitiveArray (JsonArray)"> -

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder ToPrimitiveArray (JsonArray)

+

Ccs.Common.Support.IPrimitiveArrayHolder ToPrimitiveArray (JsonArray)

@@ -2224,7 +2224,7 @@

PUBLIC Ccs.Common.Support.IPrimitiveArrayHolder -

PUBLIC Ccs.Common.Support.IPrimitiveHolder ToScalar (JsonArray, integer)

+

Ccs.Common.Support.IPrimitiveHolder ToScalar (JsonArray, integer)

@@ -2318,7 +2318,7 @@

PUBLIC Ccs.Common.Support.IPrimitiveHolder ToScalar (JsonObject, character)"> -

PUBLIC Ccs.Common.Support.IPrimitiveHolder ToScalar (JsonObject, character)

+

Ccs.Common.Support.IPrimitiveHolder ToScalar (JsonObject, character)

@@ -2430,7 +2430,7 @@

PUBLIC Ccs.Common.Support.IPrimitiveHolder JsonConverter ()"> -

PRIVATE JsonConverter ()

+

JsonConverter ()

@@ -163,7 +163,7 @@ @@ -184,7 +184,7 @@ @@ -211,7 +211,7 @@ @@ -252,7 +252,7 @@ @@ -279,7 +279,7 @@ @@ -303,7 +303,7 @@ @@ -356,7 +356,7 @@ @@ -419,10 +419,10 @@ - @@ -436,10 +436,10 @@ - @@ -453,10 +453,10 @@ - @@ -470,10 +470,10 @@ - @@ -512,7 +512,7 @@ -

PUBLIC Progress.Lang.Object Deserialize (JsonArray)

+

Progress.Lang.Object Deserialize (JsonArray)

@@ -2510,6 +2510,6 @@

PRIVATE J

--> - 04.15.2022 11:51:56 + 04.18.2022 11:20:26 diff --git a/docs/PCTDoc/OpenEdge.Core.Json.JsonSerializer.html b/docs/PCTDoc/OpenEdge.Core.Json.JsonSerializer.html index 01c4ac09..45586bee 100644 --- a/docs/PCTDoc/OpenEdge.Core.Json.JsonSerializer.html +++ b/docs/PCTDoc/OpenEdge.Core.Json.JsonSerializer.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - - + Purpose
+ - # +
+ - # +
+ - # +
+ - # +
@@ -590,7 +590,7 @@

PUBLIC Progress.Lang.Object Deserialize (JsonObject)"> -

PUBLIC Progress.Lang.Object Deserialize (JsonObject)

+

Progress.Lang.Object Deserialize (JsonObject)

@@ -668,7 +668,7 @@

PUBLIC Progress.Lang.Object OpenEdge.Core.Json.IJsonSerializer NewSerializableObject (Class)"> -

PUBLIC OpenEdge.Core.Json.IJsonSerializer NewSerializableObject (Class)

+

OpenEdge.Core.Json.IJsonSerializer NewSerializableObject (Class)

@@ -746,7 +746,7 @@

PUBLIC Serialize (Object)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject Serialize (Object)

+

Progress.Json.ObjectModel.JsonObject Serialize (Object)

@@ -824,7 +824,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject Serialize (Object[])"> -

PUBLIC Progress.Json.ObjectModel.JsonArray Serialize (Object[])

+

Progress.Json.ObjectModel.JsonArray Serialize (Object[])

@@ -160,7 +160,7 @@ @@ -182,7 +182,7 @@ @@ -202,7 +202,7 @@ @@ -219,7 +219,7 @@ @@ -236,7 +236,7 @@ @@ -258,7 +258,7 @@ @@ -280,7 +280,7 @@ @@ -303,7 +303,7 @@ @@ -325,7 +325,7 @@ @@ -347,7 +347,7 @@ @@ -369,7 +369,7 @@ @@ -391,7 +391,7 @@ @@ -413,7 +413,7 @@ @@ -434,7 +434,7 @@ @@ -456,7 +456,7 @@ @@ -478,7 +478,7 @@ @@ -504,7 +504,7 @@ @@ -526,7 +526,7 @@ @@ -552,7 +552,7 @@ @@ -572,7 +572,7 @@ @@ -590,7 +590,7 @@ @@ -610,7 +610,7 @@ @@ -653,7 +653,7 @@ @@ -671,7 +671,7 @@ @@ -691,7 +691,7 @@ @@ -757,7 +757,7 @@ @@ -774,7 +774,7 @@ @@ -791,7 +791,7 @@ @@ -830,7 +830,7 @@ -

PUBLIC Append (longchar)

+

Append (longchar)

@@ -902,7 +902,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray ToAblObject (JsonObject, Class)"> -

PUBLIC Progress.Lang.Object ToAblObject (JsonObject, Class)

+

Progress.Lang.Object ToAblObject (JsonObject, Class)

+
@@ -996,7 +996,7 @@

PUBLIC Progress.Lang.Object ToAblObject (JsonObject, Class, Class)"> -

PUBLIC Progress.Lang.Object ToAblObject (JsonObject, Class, Class)

+

Progress.Lang.Object ToAblObject (JsonObject, Class, Class)

@@ -1124,7 +1124,7 @@

PUBLIC Progress.Lang.Object JsonSerializer ()"> -

PRIVATE JsonSerializer ()

+

JsonSerializer ()

@@ -260,6 +175,23 @@ /* Default constructor */
+ + + + + +
@@ -1206,11 +1206,11 @@

PRIVATE J -

PROTECTED CHARACTER PROP_DATA

+

CHARACTER PROP_DATA

+ + +
-
+
@@ -1268,11 +1268,11 @@

PROTECTED CHARACTER PROP_OBJECT"> -

PROTECTED CHARACTER PROP_OBJECT

+

CHARACTER PROP_OBJECT

- - - - - -
-
+
@@ -1330,11 +1330,11 @@

PROTECTED CHARACTER PROP_PRODS-VERSION"> -

PROTECTED CHARACTER PROP_PRODS-VERSION

+

CHARACTER PROP_PRODS-VERSION

-
+
@@ -1392,11 +1392,11 @@

PROTECTED CHARACTER PROP_SERIALIZER"> -

PROTECTED CHARACTER PROP_SERIALIZER

+

CHARACTER PROP_SERIALIZER

@@ -69,7 +69,7 @@ Inherits: @@ -101,7 +101,7 @@
-
+
@@ -1452,6 +1452,6 @@

PROTECTED CHARACTER
Progress.IO.InputStream

+
Progress.IO.MemoryInputStream

- Progress.IO.InputStream + Progress.IO.MemoryInputStream

-
/* *************************************************************************************************************************
Copyright (c) 2019-2020 by Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
File:MemptrInputStream
Description:An InputStream implementation that holds data in-memory. This is
legacy code that now acts as a wrapper to the Progress.IO.MemoryInputStream
and should not be used
Author(s):pjudge
Created:2019-03-27
Notes:* This should be replaced in 12.0.0+ with the Progress.IO.MemoryInputStream, for performance reasons
/* The current/last-read byte in the stream
+
/* *************************************************************************************************************************
Copyright (c) 2019-2020 by Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
File:MemptrInputStream
Description:An InputStream implementation that holds data in-memory. This is
legacy code that now acts as a wrapper to the Progress.IO.MemoryInputStream
and should not be used
Author(s):pjudge
Created:2019-03-27
Notes:* This should be replaced in 12.0.0+ with the Progress.IO.MemoryInputStream, for performance reasons

@@ -114,7 +114,7 @@

- +
@@ -255,31 +161,13 @@
- + - - - - MemptrInputStream () - - - -/* Default constructor */
-
- - + - MemptrInputStream (Memptr) + MemptrInputStream (memptr) @@ -290,13 +178,13 @@ - + + - MemptrInputStream (memptr) + MemptrInputStream (MemoryOutputStream) @@ -330,7 +218,7 @@
--> - +

- + + +
+ + + + + Constructor Detail -
-

PUBLIC Close ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - -
-
-
-
-
- -
+ +
- Top - + Top +
-

PUBLIC INT64 Read (character, character)

+

MemptrInputStream (memptr)

@@ -69,7 +69,7 @@ Inherits: @@ -101,7 +101,7 @@
@@ -488,42 +314,10 @@

PUBLIC INT64
- Top - + Top +
-

PUBLIC INT64 Read (character, longchar)

+

MemptrInputStream (MemoryOutputStream)

- - - -
@@ -582,418 +376,10 @@

PUBLIC INT64 Read (memptr, int64, int64)"> - - -

PUBLIC INT64 Read (memptr, int64, int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose: ABSTRACT INT64 Read(INPUT pmData AS MEMPTR, INPUT offset AS INT64, INPUT len AS INT64).
Description:
When overridden in a derived class, reads ‘len’ bytes of data from the current input
stream into a specified MEMPTR variable starting at offset ‘offset’ and returns number
of bytes read.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pTarget - - OpenEdge.Core.Memptr - -
- - -
- pOffset - - INT64 - -
- - -
- pLength - - INT64 - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
- -
-
- - Top - - -
-

PUBLIC INT64 SkipBytes (int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* Skips over and discards n btyes from the current input stream.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pSkip - - INT64 - -
- - -
- Returns - - INT64 - -
- - int64 Returns number of bytes skipped. Returns 0, if we already at the end of the stream. -
-
-
-
-
-
-
-
- - -
- - - - - Constructor Detail - - -
- - - - - - - - - - - +
-
- - Top - - -
-

PUBLIC MemptrInputStream ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* Default constructor
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MemptrInputStream (Memptr)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pData - - OpenEdge.Core.Memptr - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MemptrInputStream (memptr)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - @@ -1035,7 +421,7 @@

PUBLIC Me

--> - + -

- - - - - - - - -
- Parameters: -
- pData - - OpenEdge.Core.Memptr + Progress.IO.MemoryOutputStream
- Returns - - OpenEdge.Core.Memptr - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 Position

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INT64 - -
- - -
-
-
-
-
-


- - 04.15.2022 11:51:57 + --> + 04.18.2022 11:20:26 diff --git a/docs/PCTDoc/OpenEdge.Core.MemptrOutputStream.html b/docs/PCTDoc/OpenEdge.Core.MemptrOutputStream.html index c09c39b5..43c92ffc 100644 --- a/docs/PCTDoc/OpenEdge.Core.MemptrOutputStream.html +++ b/docs/PCTDoc/OpenEdge.Core.MemptrOutputStream.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -60,7 +60,7 @@ Parent classes:
-
Progress.IO.OutputStream

+
Progress.IO.MemoryOutputStream

- Progress.IO.OutputStream + Progress.IO.MemoryOutputStream

-
/* *************************************************************************************************************************
Copyright (c) 2019-2020 by Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
File:MemptrOutputStream
Description:An OutputStream implementation that holds data in-memory. This is
legacy code that now acts as a wrapper to the Progress.IO.MemoryOutputStream
and should not be used
Author(s):pjudge
Created:2019-02-20
Notes:* This should be replaced in 12.0.0+ with the Progress.IO.MemoryOutputStream, for performance reasons
+
/* *************************************************************************************************************************
Copyright (c) 2019-2020 by Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
File:MemptrOutputStream
Description:An OutputStream implementation that holds data in-memory. This is
legacy code that now acts as a wrapper to the Progress.IO.MemoryOutputStream
and should not be used
Author(s):pjudge
Created:2019-02-20
Notes:* This should be replaced in 12.0.0+ with the Progress.IO.MemoryOutputStream, for performance reasons
/* Default constructor

@@ -114,7 +114,7 @@

- +
@@ -246,7 +161,7 @@
- + +
+ + + + + + + MemptrOutputStream (int64) + + +
+
@@ -287,7 +219,7 @@
--> - +

- + + +
+ + + + + Constructor Detail + + +
+ - - - - - - - - -
- Top - + Top +
-

PUBLIC Flush ()

+

MemptrOutputStream ()

- -
@@ -370,7 +303,7 @@

PUBLIC Fl
-
+
/* Default constructor
- -
-
-
-
-
- -

-
-
- - - + -
- Returns - - MEMPTR - -
- - -
- - - - - -


- - 04.15.2022 11:51:57 + --> + 04.18.2022 11:20:26 diff --git a/docs/PCTDoc/OpenEdge.Core.String.html b/docs/PCTDoc/OpenEdge.Core.String.html index 85d9d867..8e0b65fd 100644 --- a/docs/PCTDoc/OpenEdge.Core.String.html +++ b/docs/PCTDoc/OpenEdge.Core.String.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -892,7 +892,7 @@

PUBLIC Ap -

PUBLIC Append (String)

+

Append (String)

@@ -954,7 +954,7 @@

PUBLIC Ap -

PUBLIC OpenEdge.Core.String Empty ()

+

OpenEdge.Core.String Empty ()

@@ -1016,7 +1016,7 @@

PUBLIC OpenEdge.C -

PUBLIC LOGICAL Equals (Object)

+

LOGICAL Equals (Object)

@@ -1094,7 +1094,7 @@

PUBLIC LOGICAL IsNullOrEmpty ()"> -

PUBLIC LOGICAL IsNullOrEmpty ()

+

LOGICAL IsNullOrEmpty ()

@@ -1156,7 +1156,7 @@

PUBLIC LOGICAL IsNullOrEmpty (longchar)"> -

PUBLIC LOGICAL IsNullOrEmpty (longchar)

+

LOGICAL IsNullOrEmpty (longchar)

@@ -1234,7 +1234,7 @@

PUBLIC LOGICAL IsQuoted (longchar)"> -

PUBLIC LOGICAL IsQuoted (longchar)

+

LOGICAL IsQuoted (longchar)

@@ -1312,7 +1312,7 @@

PUBLIC LOGICAL IsQuoted (longchar, character)"> -

PUBLIC LOGICAL IsQuoted (longchar, character)

+

LOGICAL IsQuoted (longchar, character)

@@ -1406,7 +1406,7 @@

PUBLIC LOGICAL OpenEdge.Core.String Join (Array, character)"> -

PUBLIC OpenEdge.Core.String Join (Array, character)

+

OpenEdge.Core.String Join (Array, character)

@@ -1500,7 +1500,7 @@

PUBLIC OpenEdge.C -

PUBLIC LONGCHAR Join (character[], character)

+

LONGCHAR Join (character[], character)

@@ -1594,7 +1594,7 @@

PUBLIC LONGCHAR OpenEdge.Core.String Join (String[], character)"> -

PUBLIC OpenEdge.Core.String Join (String[], character)

+

OpenEdge.Core.String Join (String[], character)

@@ -1688,7 +1688,7 @@

PUBLIC OpenEdge.C -

PUBLIC Prepend (longchar)

+

Prepend (longchar)

@@ -1750,7 +1750,7 @@

PUBLIC Pr -

PUBLIC Prepend (String)

+

Prepend (String)

@@ -1812,7 +1812,7 @@

PUBLIC Pr -

PUBLIC OpenEdge.Core.Collections.Array Split ()

+

OpenEdge.Core.Collections.Array Split ()

@@ -1874,7 +1874,7 @@

PUBLIC OpenEdge.Core.Collections.Array Split (character)"> -

PUBLIC OpenEdge.Core.Collections.Array Split (character)

+

OpenEdge.Core.Collections.Array Split (character)

@@ -1952,7 +1952,7 @@

PUBLIC OpenEdge.Core.Collections.Array Split (longchar)"> -

PUBLIC CHARACTER Split (longchar)

+

CHARACTER Split (longchar)

@@ -2030,7 +2030,7 @@

PUBLIC CHARACTER Split (longchar, character)"> -

PUBLIC CHARACTER Split (longchar, character)

+

CHARACTER Split (longchar, character)

@@ -2124,7 +2124,7 @@

PUBLIC CHARACTER Split (String)"> -

PUBLIC OpenEdge.Core.Collections.Array Split (String)

+

OpenEdge.Core.Collections.Array Split (String)

@@ -2202,7 +2202,7 @@

PUBLIC OpenEdge.Core.Collections.Array Split (String, character)"> -

PUBLIC OpenEdge.Core.Collections.Array Split (String, character)

+

OpenEdge.Core.Collections.Array Split (String, character)

@@ -2296,7 +2296,7 @@

PUBLIC OpenEdge.Core.Collections.Array ToString ()"> -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -2358,7 +2358,7 @@

PUBLIC CHARACTER Trim ()"> -

PUBLIC Trim ()

+

Trim ()

@@ -2404,7 +2404,7 @@

PUBLIC Tr -

PUBLIC Trim (character)

+

Trim (character)

@@ -2466,7 +2466,7 @@

PUBLIC Tr -

PUBLIC OpenEdge.Core.String Unknown ()

+

OpenEdge.Core.String Unknown ()

@@ -2546,7 +2546,7 @@

PUBLIC OpenEdge.C -

PUBLIC String ()

+

String ()

@@ -2592,7 +2592,7 @@

PUBLIC St -

PUBLIC String (character)

+

String (character)

@@ -2654,7 +2654,7 @@

PUBLIC St -

PUBLIC String (longchar)

+

String (longchar)

@@ -2752,7 +2752,7 @@

PUBLIC St -

PUBLIC CHARACTER Encoding

+

CHARACTER Encoding

@@ -2814,7 +2814,7 @@

PUBLIC CHARACTER Size"> -

PUBLIC INT64 Size

+

INT64 Size

@@ -2876,7 +2876,7 @@

PUBLIC INT64 Value"> -

PUBLIC LONGCHAR Value

+

LONGCHAR Value

@@ -2936,6 +2936,6 @@

PUBLIC LONGCHAR AddAnnotationToGroup (character[2], character, JsonObject, JsonObject)"> -

PROTECTED AddAnnotationToGroup (character[2], character, JsonObject, JsonObject)

+

AddAnnotationToGroup (character[2], character, JsonObject, JsonObject)

@@ -658,7 +658,7 @@

PROTECTED -

PROTECTED AddAnnotationToGroup (JsonObject, character, JsonObject)

+

AddAnnotationToGroup (JsonObject, character, JsonObject)

@@ -752,7 +752,7 @@

PROTECTED -

PROTECTED AddReferences (buffer, IStringStringMap, JsonObject)

+

AddReferences (buffer, IStringStringMap, JsonObject)

@@ -846,7 +846,7 @@

PROTECTED -

PUBLIC Destroy ()

+

Destroy ()

@@ -892,7 +892,7 @@

PUBLIC De -

PROTECTED Progress.Json.ObjectModel.JsonObject ExtractAnnotations (buffer, IStringStringMap)

+

Progress.Json.ObjectModel.JsonObject ExtractAnnotations (buffer, IStringStringMap)

@@ -986,7 +986,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PRIVATE FindSourceRecord (character, buffer)

+

FindSourceRecord (character, buffer)

@@ -1064,7 +1064,7 @@

PRIVATE F -

PUBLIC Progress.Json.ObjectModel.JsonObject GetAnnotations (character, IStringStringMap)

+

Progress.Json.ObjectModel.JsonObject GetAnnotations (character, IStringStringMap)

@@ -1158,7 +1158,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject GetAnnotations (IStringStringMap)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject GetAnnotations (IStringStringMap)

+

Progress.Json.ObjectModel.JsonObject GetAnnotations (IStringStringMap)

@@ -1236,7 +1236,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject GetRefName (buffer)"> -

PROTECTED CHARACTER GetRefName (buffer)

+

CHARACTER GetRefName (buffer)

@@ -1314,7 +1314,7 @@

PROTECTED CHARACTER Initialize ()"> -

PUBLIC Initialize ()

+

Initialize ()

@@ -1360,7 +1360,7 @@

PUBLIC In -

PUBLIC ParseXref (character)

+

ParseXref (character)

@@ -1422,7 +1422,7 @@

PUBLIC Pa -

PUBLIC ParseXref (FileInputStream)

+

ParseXref (FileInputStream)

@@ -1502,7 +1502,7 @@

PUBLIC Pa -

PUBLIC AnnotationWriter ()

+

AnnotationWriter ()

@@ -1548,7 +1548,7 @@

PUBLIC An -

PUBLIC AnnotationWriter (character)

+

AnnotationWriter (character)

@@ -1610,7 +1610,7 @@

PUBLIC An -

PUBLIC AnnotationWriter (FileInputStream)

+

AnnotationWriter (FileInputStream)

@@ -164,7 +164,7 @@ @@ -186,7 +186,7 @@ @@ -212,7 +212,7 @@ @@ -233,7 +233,7 @@ @@ -322,10 +322,10 @@ - @@ -364,7 +364,7 @@ -

PUBLIC INTEGER Ceiling (decimal)

+

INTEGER Ceiling (decimal)

@@ -1706,6 +1706,6 @@

PUBLIC An

--> - 04.15.2022 11:51:58 + 04.18.2022 11:20:27 diff --git a/docs/PCTDoc/OpenEdge.Core.Util.MathUtil.html b/docs/PCTDoc/OpenEdge.Core.Util.MathUtil.html index 0dd64213..90f4740f 100644 --- a/docs/PCTDoc/OpenEdge.Core.Util.MathUtil.html +++ b/docs/PCTDoc/OpenEdge.Core.Util.MathUtil.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + Purpose
+ - - +
@@ -442,7 +442,7 @@

PUBLIC INTEGER ExponentialToDec (character)"> -

PUBLIC DECIMAL ExponentialToDec (character)

+

DECIMAL ExponentialToDec (character)

@@ -520,7 +520,7 @@

PUBLIC DECIMAL ExponentialToDec (character, integer)"> -

PUBLIC DECIMAL ExponentialToDec (character, integer)

+

DECIMAL ExponentialToDec (character, integer)

@@ -614,7 +614,7 @@

PUBLIC DECIMAL HexToInt (character)"> -

PUBLIC INT64 HexToInt (character)

+

INT64 HexToInt (character)

@@ -692,7 +692,7 @@

PUBLIC INT64 IntToHex (integer, integer)"> -

PUBLIC CHARACTER IntToHex (integer, integer)

+

CHARACTER IntToHex (integer, integer)

@@ -840,11 +840,11 @@

PUBLIC CHARACTER DEFAULT_BASE"> -

PRIVATE INTEGER DEFAULT_BASE

+

INTEGER DEFAULT_BASE

-
+
@@ -900,6 +900,6 @@

PRIVATE INTEGER Decode (longchar, character)"> -

PUBLIC LONGCHAR Decode (longchar, character)

+

LONGCHAR Decode (longchar, character)

@@ -463,7 +463,7 @@

PUBLIC LONGCHAR Encode (longchar, character)"> -

PUBLIC LONGCHAR Encode (longchar, character)

+

LONGCHAR Encode (longchar, character)

@@ -557,7 +557,7 @@

PUBLIC LONGCHAR UnicodeToUtf8 (character)"> -

PUBLIC INT64 UnicodeToUtf8 (character)

+

INT64 UnicodeToUtf8 (character)

@@ -635,7 +635,7 @@

PUBLIC INT64 UnicodeToUtf8 (int64)"> -

PUBLIC INT64 UnicodeToUtf8 (int64)

+

INT64 UnicodeToUtf8 (int64)

@@ -713,7 +713,7 @@

PUBLIC INT64 Utf8ToUnicode (character)"> -

PUBLIC INTEGER Utf8ToUnicode (character)

+

INTEGER Utf8ToUnicode (character)

@@ -791,7 +791,7 @@

PUBLIC INTEGER Utf8ToUnicode (int64)"> -

PUBLIC INTEGER Utf8ToUnicode (int64)

+

INTEGER Utf8ToUnicode (int64)

@@ -921,6 +921,6 @@

PUBLIC INTEGER REALM_ATTR_CITY"> -

PUBLIC CHARACTER REALM_ATTR_CITY

+

CHARACTER REALM_ATTR_CITY

-
+
@@ -838,11 +838,11 @@

PUBLIC CHARACTER REALM_ATTR_CN"> -

PUBLIC CHARACTER REALM_ATTR_CN

+

CHARACTER REALM_ATTR_CN

-
+
@@ -900,11 +900,11 @@

PUBLIC CHARACTER REALM_ATTR_CREATEDATE"> -

PUBLIC CHARACTER REALM_ATTR_CREATEDATE

+

CHARACTER REALM_ATTR_CREATEDATE

-
+
@@ -962,11 +962,11 @@

PUBLIC CHARACTER REALM_ATTR_DESCRIPTION"> -

PUBLIC CHARACTER REALM_ATTR_DESCRIPTION

+

CHARACTER REALM_ATTR_DESCRIPTION

-
+
@@ -1024,11 +1024,11 @@

PUBLIC CHARACTER REALM_ATTR_DISPLAYNAME"> -

PUBLIC CHARACTER REALM_ATTR_DISPLAYNAME

+

CHARACTER REALM_ATTR_DISPLAYNAME

-
+
@@ -1086,11 +1086,11 @@

PUBLIC CHARACTER REALM_ATTR_DOMAIN"> -

PUBLIC CHARACTER REALM_ATTR_DOMAIN

+

CHARACTER REALM_ATTR_DOMAIN

-
+
@@ -1148,11 +1148,11 @@

PUBLIC CHARACTER REALM_ATTR_EMAIL"> -

PUBLIC CHARACTER REALM_ATTR_EMAIL

+

CHARACTER REALM_ATTR_EMAIL

-
+
@@ -1210,11 +1210,11 @@

PUBLIC CHARACTER REALM_ATTR_EMPLOYEENUM"> -

PUBLIC CHARACTER REALM_ATTR_EMPLOYEENUM

+

CHARACTER REALM_ATTR_EMPLOYEENUM

-
+
@@ -1272,11 +1272,11 @@

PUBLIC CHARACTER REALM_ATTR_ENABLED"> -

PUBLIC CHARACTER REALM_ATTR_ENABLED

+

CHARACTER REALM_ATTR_ENABLED

-
+
@@ -1334,11 +1334,11 @@

PUBLIC CHARACTER REALM_ATTR_EXPIRED"> -

PUBLIC CHARACTER REALM_ATTR_EXPIRED

+

CHARACTER REALM_ATTR_EXPIRED

-
+
@@ -1396,11 +1396,11 @@

PUBLIC CHARACTER REALM_ATTR_GIVENNAME"> -

PUBLIC CHARACTER REALM_ATTR_GIVENNAME

+

CHARACTER REALM_ATTR_GIVENNAME

-
+
@@ -1458,11 +1458,11 @@

PUBLIC CHARACTER REALM_ATTR_GROUPNUMBER"> -

PUBLIC CHARACTER REALM_ATTR_GROUPNUMBER

+

CHARACTER REALM_ATTR_GROUPNUMBER

-
+
@@ -1520,11 +1520,11 @@

PUBLIC CHARACTER REALM_ATTR_LANGUAGE"> -

PUBLIC CHARACTER REALM_ATTR_LANGUAGE

+

CHARACTER REALM_ATTR_LANGUAGE

-
+
@@ -1582,11 +1582,11 @@

PUBLIC CHARACTER REALM_ATTR_LOCKED"> -

PUBLIC CHARACTER REALM_ATTR_LOCKED

+

CHARACTER REALM_ATTR_LOCKED

-
+
@@ -1644,11 +1644,11 @@

PUBLIC CHARACTER REALM_ATTR_MIDDLEINITIAL"> -

PUBLIC CHARACTER REALM_ATTR_MIDDLEINITIAL

+

CHARACTER REALM_ATTR_MIDDLEINITIAL

-
+
@@ -1706,11 +1706,11 @@

PUBLIC CHARACTER REALM_ATTR_MOBILE"> -

PUBLIC CHARACTER REALM_ATTR_MOBILE

+

CHARACTER REALM_ATTR_MOBILE

-
+
@@ -1768,11 +1768,11 @@

PUBLIC CHARACTER REALM_ATTR_POBOX"> -

PUBLIC CHARACTER REALM_ATTR_POBOX

+

CHARACTER REALM_ATTR_POBOX

-
+
@@ -1830,11 +1830,11 @@

PUBLIC CHARACTER REALM_ATTR_POSTALCODE"> -

PUBLIC CHARACTER REALM_ATTR_POSTALCODE

+

CHARACTER REALM_ATTR_POSTALCODE

-
+
@@ -1892,11 +1892,11 @@

PUBLIC CHARACTER REALM_ATTR_ROLES"> -

PUBLIC CHARACTER REALM_ATTR_ROLES

+

CHARACTER REALM_ATTR_ROLES

-
+
@@ -1954,11 +1954,11 @@

PUBLIC CHARACTER REALM_ATTR_SN"> -

PUBLIC CHARACTER REALM_ATTR_SN

+

CHARACTER REALM_ATTR_SN

-
+
@@ -2016,11 +2016,11 @@

PUBLIC CHARACTER REALM_ATTR_STATE"> -

PUBLIC CHARACTER REALM_ATTR_STATE

+

CHARACTER REALM_ATTR_STATE

-
+
@@ -2078,11 +2078,11 @@

PUBLIC CHARACTER REALM_ATTR_STREET"> -

PUBLIC CHARACTER REALM_ATTR_STREET

+

CHARACTER REALM_ATTR_STREET

-
+
@@ -2140,11 +2140,11 @@

PUBLIC CHARACTER REALM_ATTR_SURNAME"> -

PUBLIC CHARACTER REALM_ATTR_SURNAME

+

CHARACTER REALM_ATTR_SURNAME

-
+
@@ -2202,11 +2202,11 @@

PUBLIC CHARACTER REALM_ATTR_TELEPHONE"> -

PUBLIC CHARACTER REALM_ATTR_TELEPHONE

+

CHARACTER REALM_ATTR_TELEPHONE

-
+
@@ -2264,11 +2264,11 @@

PUBLIC CHARACTER REALM_ATTR_TITLE"> -

PUBLIC CHARACTER REALM_ATTR_TITLE

+

CHARACTER REALM_ATTR_TITLE

-
+
@@ -2326,11 +2326,11 @@

PUBLIC CHARACTER REALM_ATTR_UID"> -

PUBLIC CHARACTER REALM_ATTR_UID

+

CHARACTER REALM_ATTR_UID

-
+
@@ -2388,11 +2388,11 @@

PUBLIC CHARACTER REALM_ATTR_USERID"> -

PUBLIC CHARACTER REALM_ATTR_USERID

+

CHARACTER REALM_ATTR_USERID

-
+
@@ -2450,11 +2450,11 @@

PUBLIC CHARACTER REALM_ATTR_USERNAME"> -

PUBLIC CHARACTER REALM_ATTR_USERNAME

+

CHARACTER REALM_ATTR_USERNAME

-
+
@@ -2512,11 +2512,11 @@

PUBLIC CHARACTER REALM_ATTR_USERNUMBER"> -

PUBLIC CHARACTER REALM_ATTR_USERNUMBER

+

CHARACTER REALM_ATTR_USERNUMBER

-
+
@@ -2572,6 +2572,6 @@

PUBLIC CHARACTER AuthorizeOperationHandler (Object, AuthorizeOperationEventArgs)"> -

PRIVATE AuthorizeOperationHandler (Object, AuthorizeOperationEventArgs)

+

AuthorizeOperationHandler (Object, AuthorizeOperationEventArgs)

@@ -614,7 +614,7 @@

PRIVATE A -

PRIVATE DefineEvents ()

+

DefineEvents ()

@@ -660,7 +660,7 @@

PRIVATE D -

PRIVATE DiscoverServiceHandler (Object, ServiceDiscoveryEventArgs)

+

DiscoverServiceHandler (Object, ServiceDiscoveryEventArgs)

@@ -738,7 +738,7 @@

PRIVATE D -

PRIVATE CHARACTER GetStatusReason (integer)

+

CHARACTER GetStatusReason (integer)

@@ -816,7 +816,7 @@

PRIVATE CHARACTER InitializeRegistries ()"> -

PRIVATE InitializeRegistries ()

+

InitializeRegistries ()

@@ -862,7 +862,7 @@

PRIVATE I -

PRIVATE InvokedHandler (Object, OperationInvocationEventArgs)

+

InvokedHandler (Object, OperationInvocationEventArgs)

@@ -940,7 +940,7 @@

PRIVATE I -

PRIVATE InvokingHandler (Object, OperationInvocationEventArgs)

+

InvokingHandler (Object, OperationInvocationEventArgs)

@@ -1018,7 +1018,7 @@

PRIVATE I -

PRIVATE LoadEntityHandler (Object, HandlerLoadEntityEventArgs)

+

LoadEntityHandler (Object, HandlerLoadEntityEventArgs)

@@ -1096,7 +1096,7 @@

PRIVATE L -

PRIVATE OperationErrorHandler (Object, HandlerErrorEventArgs)

+

OperationErrorHandler (Object, HandlerErrorEventArgs)

@@ -1174,7 +1174,7 @@

PRIVATE O -

PRIVATE SessionCleanup ()

+

SessionCleanup ()

@@ -1220,7 +1220,7 @@

PRIVATE S -

PRIVATE UnloadEntityHandler (Object, HandlerLoadEntityEventArgs)

+

UnloadEntityHandler (Object, HandlerLoadEntityEventArgs)

@@ -1298,7 +1298,7 @@

PRIVATE U -

PRIVATE UpdateLogging ()

+

UpdateLogging ()

@@ -1362,7 +1362,7 @@

PRIVATE U -

PUBLIC DOHEventHandler ()

+

DOHEventHandler ()

@@ -1444,7 +1444,7 @@

PUBLIC DO -

PROTECTED Spark.Core.Manager.ICatalogManager oCatalogManager

+

Spark.Core.Manager.ICatalogManager oCatalogManager

@@ -1506,7 +1506,7 @@

PROTECTED oLogger"> -

PROTECTED OpenEdge.Logging.ILogWriter oLogger

+

OpenEdge.Logging.ILogWriter oLogger

@@ -1568,7 +1568,7 @@

PROTECTED OpenEdge.Logging.ILogWriter Spark.Core.Manager.ILoggingManager oLoggingManager"> -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -1628,6 +1628,6 @@

PROTECTED HandleGet (IWebRequest)"> -

PROTECTED INTEGER HandleGet (IWebRequest)

+

INTEGER HandleGet (IWebRequest)

@@ -360,7 +360,7 @@

PROTECTED INTEGER HandleNotAllowedMethod (IWebRequest)"> -

PROTECTED INTEGER HandleNotAllowedMethod (IWebRequest)

+

INTEGER HandleNotAllowedMethod (IWebRequest)

@@ -438,7 +438,7 @@

PROTECTED INTEGER HandleNotImplemented (IWebRequest)"> -

PROTECTED INTEGER HandleNotImplemented (IWebRequest)

+

INTEGER HandleNotImplemented (IWebRequest)

@@ -282,7 +282,7 @@ @@ -300,7 +300,7 @@ @@ -318,7 +318,7 @@ @@ -336,7 +336,7 @@ @@ -354,7 +354,7 @@ @@ -372,7 +372,7 @@ @@ -390,7 +390,7 @@ @@ -408,7 +408,7 @@ @@ -426,7 +426,7 @@ @@ -444,7 +444,7 @@ @@ -462,7 +462,7 @@ @@ -473,14 +473,14 @@ @@ -498,7 +498,7 @@ @@ -516,7 +516,7 @@ @@ -534,7 +534,7 @@ @@ -552,7 +552,7 @@ @@ -570,7 +570,7 @@ @@ -588,7 +588,7 @@ @@ -606,7 +606,7 @@ @@ -624,7 +624,7 @@ @@ -642,7 +642,7 @@ @@ -660,7 +660,7 @@ @@ -678,7 +678,7 @@ @@ -696,7 +696,7 @@ @@ -783,7 +783,7 @@ @@ -800,7 +800,7 @@ @@ -817,7 +817,7 @@ @@ -834,7 +834,7 @@ @@ -851,7 +851,7 @@ @@ -868,7 +868,7 @@ @@ -885,7 +885,7 @@ @@ -902,7 +902,7 @@ @@ -919,7 +919,7 @@ @@ -936,7 +936,7 @@ @@ -953,7 +953,7 @@ @@ -970,7 +970,7 @@ @@ -1009,7 +1009,7 @@ -

PUBLIC addProperty (character, character, character, character, character, character)

+

addProperty (character, character, character, character, character, character)

@@ -568,6 +568,6 @@

PROTECTED INTEGER Spark.Core.Service.Service:dispose () +/* initialize */

- # + - + + - # + - # + - # + - # + - # + - # + - # + - # + - # + - + + -/**************************** Public Helper Methods ****************************/
Overrides Spark.Core.Service.Service:initialize () +/**************************** Public Helper Methods ****************************/
- # + - + + - # + - + + - # + - # + - # + - + + - # + - # + - # + - + + - # + - # + - + + - + + - + + - # + - # + - # + - + + - + + - + + - # + - + +
@@ -1151,7 +1151,7 @@

PUBLIC ad -

PROTECTED checkForResources ()

+

checkForResources ()

@@ -1197,7 +1197,7 @@

PROTECTED -

PROTECTED clearResourceMethods (character)

+

clearResourceMethods (character)

@@ -1259,7 +1259,7 @@

PROTECTED -

PUBLIC describeEntity (character, character, character, character, character)

+

describeEntity (character, character, character, character, character)

@@ -1385,7 +1385,7 @@

PUBLIC de -

PUBLIC describeFields (character, character, JsonObject)

+

describeFields (character, character, JsonObject)

@@ -1479,7 +1479,7 @@

PUBLIC de -

PUBLIC describeResource (character, character, character, character, character, character)

+

describeResource (character, character, character, character, character, character)

@@ -1621,7 +1621,7 @@

PUBLIC de -

PUBLIC dispose ()

+

dispose ()

@@ -1638,7 +1638,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -1667,7 +1667,7 @@

PUBLIC di

-

PROTECTED LOGICAL getBeforeImageFlag (character, character)

+

LOGICAL getBeforeImageFlag (character, character)

@@ -1761,7 +1761,7 @@

PROTECTED LOGICAL getCatalog (character, character)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getCatalog (character, character)

+

Progress.Json.ObjectModel.JsonObject getCatalog (character, character)

@@ -1855,7 +1855,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getDataDefs (character)"> -

PROTECTED Progress.Json.ObjectModel.JsonObject getDataDefs (character)

+

Progress.Json.ObjectModel.JsonObject getDataDefs (character)

@@ -1933,7 +1933,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PROTECTED CHARACTER getJsonType (character)

+

CHARACTER getJsonType (character)

@@ -2011,7 +2011,7 @@

PROTECTED CHARACTER getList (JsonArray)"> -

PROTECTED CHARACTER getList (JsonArray)

+

CHARACTER getList (JsonArray)

@@ -2089,7 +2089,7 @@

PROTECTED CHARACTER getOperations (character)"> -

PROTECTED Progress.Json.ObjectModel.JsonArray getOperations (character)

+

Progress.Json.ObjectModel.JsonArray getOperations (character)

@@ -2167,7 +2167,7 @@

PROTECTED Progress.Json.ObjectModel.JsonArray -

PROTECTED Progress.Json.ObjectModel.JsonArray getRelations (character)

+

Progress.Json.ObjectModel.JsonArray getRelations (character)

@@ -2245,7 +2245,7 @@

PROTECTED Progress.Json.ObjectModel.JsonArray -

PROTECTED Progress.Json.ObjectModel.JsonArray getResources (character, character)

+

Progress.Json.ObjectModel.JsonArray getResources (character, character)

@@ -2339,7 +2339,7 @@

PROTECTED Progress.Json.ObjectModel.JsonArray -

PROTECTED Progress.Json.ObjectModel.JsonObject getSchema (character, logical)

+

Progress.Json.ObjectModel.JsonObject getSchema (character, logical)

@@ -2433,7 +2433,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PROTECTED Progress.Json.ObjectModel.JsonArray getServices (character, character)

+

Progress.Json.ObjectModel.JsonArray getServices (character, character)

@@ -2527,7 +2527,7 @@

PROTECTED Progress.Json.ObjectModel.JsonArray -

PROTECTED Progress.Json.ObjectModel.JsonObject getTable (character, character, character, character, character)

+

Progress.Json.ObjectModel.JsonObject getTable (character, character, character, character, character)

@@ -2669,7 +2669,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PUBLIC initialize ()

+

initialize ()

@@ -2686,7 +2686,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -2715,7 +2715,7 @@

PUBLIC in

-

PROTECTED loadDynamicResource (character)

+

loadDynamicResource (character)

@@ -2777,7 +2777,7 @@

PROTECTED -

PUBLIC loadResources ()

+

loadResources ()

@@ -2823,7 +2823,7 @@

PUBLIC lo -

PROTECTED processAnnotations (character, character, character)

+

processAnnotations (character, character, character)

@@ -2917,7 +2917,7 @@

PROTECTED -

PUBLIC registerAllServices (IServiceRegistry)

+

registerAllServices (IServiceRegistry)

@@ -2979,7 +2979,7 @@

PUBLIC re -

PROTECTED registerMethods (character)

+

registerMethods (character)

@@ -3041,7 +3041,7 @@

PROTECTED -

PROTECTED registerMethods (character, character)

+

registerMethods (character, character)

@@ -3119,7 +3119,7 @@

PROTECTED -

PROTECTED registerProcedures (character, character, handle)

+

registerProcedures (character, character, handle)

@@ -3213,7 +3213,7 @@

PROTECTED -

PUBLIC OpenEdge.Web.DataObject.DataObjectService registerService (IServiceRegistry, character, SemanticVersion)

+

OpenEdge.Web.DataObject.DataObjectService registerService (IServiceRegistry, character, SemanticVersion)

@@ -3323,7 +3323,7 @@

PUBLIC OpenEdge.Web.DataObject.DataObjectService -

PROTECTED runPreloader ()

+

runPreloader ()

@@ -3369,7 +3369,7 @@

PROTECTED -

PROTECTED setResourceMethod (character, character, character, JsonArray)

+

setResourceMethod (character, character, character, JsonArray)

@@ -3479,7 +3479,7 @@

PROTECTED -

PROTECTED setResourceProcedure (character, character, character)

+

setResourceProcedure (character, character, character)

@@ -3573,7 +3573,7 @@

PROTECTED -

PUBLIC stopProcedures ()

+

stopProcedures ()

@@ -3619,7 +3619,7 @@

PUBLIC st -

PROTECTED CHARACTER stripFileExtensions (character)

+

CHARACTER stripFileExtensions (character)

@@ -3751,7 +3751,7 @@

PROTECTED CHARACTER Annotations"> -

PROTECTED Progress.Json.ObjectModel.JsonObject Annotations

+

Progress.Json.ObjectModel.JsonObject Annotations

@@ -3813,7 +3813,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PUBLIC DECIMAL ApiVersion

+

DECIMAL ApiVersion

@@ -3875,7 +3875,7 @@

PUBLIC DECIMAL CatalogService"> -

PUBLIC CHARACTER CatalogService

+

CHARACTER CatalogService

@@ -3937,7 +3937,7 @@

PUBLIC CHARACTER IdProperty"> -

PUBLIC CHARACTER IdProperty

+

CHARACTER IdProperty

@@ -3999,7 +3999,7 @@

PUBLIC CHARACTER Spark.Core.Manager.ILoggingManager oLoggingManager"> -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -4061,7 +4061,7 @@

PROTECTED Spark.Core.Manager.ISchemaManager oSchemaManager"> -

PROTECTED Spark.Core.Manager.ISchemaManager oSchemaManager

+

Spark.Core.Manager.ISchemaManager oSchemaManager

@@ -4123,7 +4123,7 @@

PROTECTED ParamUUID"> -

PROTECTED INT64 ParamUUID

+

INT64 ParamUUID

@@ -4185,7 +4185,7 @@

PROTECTED INT64 ReadFilter"> -

PUBLIC CHARACTER ReadFilter

+

CHARACTER ReadFilter

@@ -4247,7 +4247,7 @@

PUBLIC CHARACTER SeqProperty"> -

PUBLIC CHARACTER SeqProperty

+

CHARACTER SeqProperty

@@ -4309,7 +4309,7 @@

PUBLIC CHARACTER ServicePrefix"> -

PUBLIC CHARACTER ServicePrefix

+

CHARACTER ServicePrefix

@@ -4371,7 +4371,7 @@

PUBLIC CHARACTER TemporaryDir"> -

PROTECTED CHARACTER TemporaryDir

+

CHARACTER TemporaryDir

@@ -4433,7 +4433,7 @@

PROTECTED CHARACTER UseRequestObj"> -

PUBLIC LOGICAL UseRequestObj

+

LOGICAL UseRequestObj

@@ -4493,6 +4493,6 @@

PUBLIC LOGICAL getSSORawToken ()"> -

PUBLIC CHARACTER getSSORawToken ()

+

CHARACTER getSSORawToken ()

@@ -1409,7 +1409,7 @@

PUBLIC CHARACTER getSSOToken ()"> -

PUBLIC CHARACTER getSSOToken ()

+

CHARACTER getSSOToken ()

@@ -1471,7 +1471,7 @@

PUBLIC CHARACTER getUserArrayPropertyAsChar (character)"> -

PUBLIC CHARACTER getUserArrayPropertyAsChar (character)

+

CHARACTER getUserArrayPropertyAsChar (character)

@@ -1549,7 +1549,7 @@

PUBLIC CHARACTER getUserArrayPropertyAsDec (character)"> -

PUBLIC DECIMAL getUserArrayPropertyAsDec (character)

+

DECIMAL getUserArrayPropertyAsDec (character)

@@ -1627,7 +1627,7 @@

PUBLIC DECIMAL getUserArrayPropertyAsInt (character)"> -

PUBLIC INTEGER getUserArrayPropertyAsInt (character)

+

INTEGER getUserArrayPropertyAsInt (character)

@@ -1705,7 +1705,7 @@

PUBLIC INTEGER getUserProperties ()"> -

PUBLIC CHARACTER getUserProperties ()

+

CHARACTER getUserProperties ()

@@ -1767,7 +1767,7 @@

PUBLIC CHARACTER getUserProperty (character)"> -

PUBLIC CHARACTER getUserProperty (character)

+

CHARACTER getUserProperty (character)

@@ -1845,7 +1845,7 @@

PUBLIC CHARACTER getUserPropertyArray (character[])"> -

PUBLIC CHARACTER getUserPropertyArray (character[])

+

CHARACTER getUserPropertyArray (character[])

@@ -1923,7 +1923,7 @@

PUBLIC CHARACTER getUserPropertyArray (character[], character[])"> -

PUBLIC getUserPropertyArray (character[], character[])

+

getUserPropertyArray (character[], character[])

@@ -2001,7 +2001,7 @@

PUBLIC ge -

PUBLIC CHARACTER getUserPropertyAsChar (character)

+

CHARACTER getUserPropertyAsChar (character)

@@ -2079,7 +2079,7 @@

PUBLIC CHARACTER getUserPropertyAsDate (character)"> -

PUBLIC DATE getUserPropertyAsDate (character)

+

DATE getUserPropertyAsDate (character)

@@ -2157,7 +2157,7 @@

PUBLIC DATE -

PUBLIC DATETIME getUserPropertyAsDatetime (character)

+

DATETIME getUserPropertyAsDatetime (character)

@@ -2235,7 +2235,7 @@

PUBLIC DATETIME getUserPropertyAsDatetimeTz (character)"> -

PUBLIC DATETIME-TZ getUserPropertyAsDatetimeTz (character)

+

DATETIME-TZ getUserPropertyAsDatetimeTz (character)

@@ -2313,7 +2313,7 @@

PUBLIC DATETIME-TZ getUserPropertyAsDec (character)"> -

PUBLIC DECIMAL getUserPropertyAsDec (character)

+

DECIMAL getUserPropertyAsDec (character)

@@ -2391,7 +2391,7 @@

PUBLIC DECIMAL getUserPropertyAsInt (character)"> -

PUBLIC INTEGER getUserPropertyAsInt (character)

+

INTEGER getUserPropertyAsInt (character)

@@ -2469,7 +2469,7 @@

PUBLIC INTEGER getUserPropertyAsInt64 (character)"> -

PUBLIC INT64 getUserPropertyAsInt64 (character)

+

INT64 getUserPropertyAsInt64 (character)

@@ -2547,7 +2547,7 @@

PUBLIC INT64 getUserPropertyAsLog (character)"> -

PUBLIC LOGICAL getUserPropertyAsLog (character)

+

LOGICAL getUserPropertyAsLog (character)

@@ -2625,7 +2625,7 @@

PUBLIC LOGICAL getUserPropertyAsLongchar (character)"> -

PUBLIC LONGCHAR getUserPropertyAsLongchar (character)

+

LONGCHAR getUserPropertyAsLongchar (character)

@@ -2703,7 +2703,7 @@

PUBLIC LONGCHAR hasUserProperty (character)"> -

PUBLIC LOGICAL hasUserProperty (character)

+

LOGICAL hasUserProperty (character)

@@ -2781,7 +2781,7 @@

PUBLIC LOGICAL initializeContext ()"> -

PROTECTED initializeContext ()

+

initializeContext ()

@@ -2827,7 +2827,7 @@

PROTECTED -

PUBLIC initializeContext (character)

+

initializeContext (character)

@@ -2889,7 +2889,7 @@

PUBLIC in -

PUBLIC initializeContext (handle)

+

initializeContext (handle)

@@ -2951,7 +2951,7 @@

PUBLIC in -

PROTECTED initializeUserProperties ()

+

initializeUserProperties ()

@@ -2997,7 +2997,7 @@

PROTECTED -

PUBLIC initializeUserProperty (character)

+

initializeUserProperty (character)

@@ -3059,7 +3059,7 @@

PUBLIC in -

PUBLIC invalidateContext ()

+

invalidateContext ()

@@ -3105,7 +3105,7 @@

PUBLIC in -

PROTECTED prepareForSerializeContext ()

+

prepareForSerializeContext ()

@@ -3151,7 +3151,7 @@

PROTECTED -

PUBLIC removeUserProperty (character)

+

removeUserProperty (character)

@@ -3213,7 +3213,7 @@

PUBLIC re -

PUBLIC saveContext ()

+

saveContext ()

@@ -3259,7 +3259,7 @@

PUBLIC sa -

PUBLIC LONGCHAR serializeContext ()

+

LONGCHAR serializeContext ()

@@ -3321,7 +3321,7 @@

PUBLIC LONGCHAR setActivityPassword (character)"> -

PUBLIC setActivityPassword (character)

+

setActivityPassword (character)

@@ -3383,7 +3383,7 @@

PUBLIC se -

PROTECTED setTrackingChangesOnUserProperties ()

+

setTrackingChangesOnUserProperties ()

@@ -3429,7 +3429,7 @@

PROTECTED -

PUBLIC setUserProperty (character, character)

+

setUserProperty (character, character)

@@ -3507,7 +3507,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, character[])

+

setUserProperty (character, character[])

@@ -3585,7 +3585,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, date)

+

setUserProperty (character, date)

@@ -3663,7 +3663,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, datetime)

+

setUserProperty (character, datetime)

@@ -3741,7 +3741,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, datetime-tz)

+

setUserProperty (character, datetime-tz)

@@ -3819,7 +3819,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, decimal)

+

setUserProperty (character, decimal)

@@ -3897,7 +3897,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, decimal[])

+

setUserProperty (character, decimal[])

@@ -3975,7 +3975,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, int64)

+

setUserProperty (character, int64)

@@ -4053,7 +4053,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, integer)

+

setUserProperty (character, integer)

@@ -4131,7 +4131,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, integer[])

+

setUserProperty (character, integer[])

@@ -4209,7 +4209,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, logical)

+

setUserProperty (character, logical)

@@ -4287,7 +4287,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, longchar)

+

setUserProperty (character, longchar)

@@ -4383,7 +4383,7 @@

PUBLIC se -

PUBLIC ClientContext ()

+

ClientContext ()

@@ -4465,7 +4465,7 @@

PUBLIC Cl -

PUBLIC CHARACTER activityPassword

+

CHARACTER activityPassword

@@ -4527,7 +4527,7 @@

PUBLIC CHARACTER clientPrincipal"> -

PUBLIC HANDLE clientPrincipal

+

HANDLE clientPrincipal

@@ -4589,7 +4589,7 @@

PUBLIC HANDLE contextID"> -

PUBLIC CHARACTER contextID

+

CHARACTER contextID

@@ -4651,7 +4651,7 @@

PUBLIC CHARACTER loginExpiration"> -

PUBLIC DATETIME-TZ loginExpiration

+

DATETIME-TZ loginExpiration

@@ -4713,7 +4713,7 @@

PUBLIC DATETIME-TZ Spark.Core.Manager.IStateManager oStateManager"> -

PROTECTED Spark.Core.Manager.IStateManager oStateManager

+

Spark.Core.Manager.IStateManager oStateManager

@@ -4775,11 +4775,11 @@

PROTECTED stateClassID"> -

PUBLIC CHARACTER stateClassID

+

CHARACTER stateClassID

-
+
@@ -4837,7 +4837,7 @@

PUBLIC CHARACTER userDomain"> -

PUBLIC CHARACTER userDomain

+

CHARACTER userDomain

@@ -4899,7 +4899,7 @@

PUBLIC CHARACTER userExtra"> -

PUBLIC CHARACTER userExtra

+

CHARACTER userExtra

@@ -4961,7 +4961,7 @@

PUBLIC CHARACTER userID"> -

PUBLIC CHARACTER userID

+

CHARACTER userID

@@ -180,7 +180,7 @@ @@ -203,7 +203,7 @@ @@ -227,7 +227,7 @@ @@ -237,14 +237,14 @@ @@ -262,7 +262,7 @@ @@ -284,7 +284,7 @@ @@ -306,7 +306,7 @@ @@ -328,7 +328,7 @@ @@ -373,7 +373,7 @@ @@ -436,7 +436,7 @@ @@ -475,7 +475,7 @@ -

PUBLIC dispose ()

+

dispose ()

@@ -5021,6 +5021,6 @@

PUBLIC CHARACTER Spark.Core.Service.Service:dispose () +

- + + - + + - + + - + + -
Overrides Spark.Core.Service.Service:initialize () +
- # + - + + - + + - + + - + + - + + - # +
@@ -492,7 +492,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -521,7 +521,7 @@

PUBLIC di

-

PUBLIC LOGICAL getConnectionParam (character, character, ILifecycleScope, character)

+

LOGICAL getConnectionParam (character, character, ILifecycleScope, character)

@@ -647,7 +647,7 @@

PUBLIC LOGICAL getProcHandle (character, character)"> -

PUBLIC HANDLE getProcHandle (character, character)

+

HANDLE getProcHandle (character, character)

@@ -741,7 +741,7 @@

PUBLIC HANDLE getServer (character)"> -

PUBLIC HANDLE getServer (character)

+

HANDLE getServer (character)

@@ -819,7 +819,7 @@

PUBLIC HANDLE initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -836,7 +836,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -865,7 +865,7 @@

PUBLIC in

-

PROTECTED loadConfig ()

+

loadConfig ()

@@ -911,7 +911,7 @@

PROTECTED -

PUBLIC HANDLE reconnectServer (character)

+

HANDLE reconnectServer (character)

@@ -989,7 +989,7 @@

PUBLIC HANDLE stopLifeCycle (ILifecycleScope)"> -

PUBLIC stopLifeCycle (ILifecycleScope)

+

stopLifeCycle (ILifecycleScope)

@@ -1051,7 +1051,7 @@

PUBLIC st -

PUBLIC stopServer (character)

+

stopServer (character)

@@ -1113,7 +1113,7 @@

PUBLIC st -

PUBLIC LOGICAL validContext (character)

+

LOGICAL validContext (character)

@@ -1209,7 +1209,7 @@

PUBLIC LOGICAL ConnectionManager ()"> -

PUBLIC ConnectionManager ()

+

ConnectionManager ()

@@ -1291,7 +1291,7 @@

PUBLIC Co -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -1351,6 +1351,6 @@

PROTECTED addProperty (character, character, character, character, character, character)"> -

PUBLIC addProperty (character, character, character, character, character, character)

+

addProperty (character, character, character, character, character, character)

@@ -609,7 +609,7 @@

PUBLIC ad -

PUBLIC describeEntity (character, character, character, character, character)

+

describeEntity (character, character, character, character, character)

@@ -735,7 +735,7 @@

PUBLIC de -

PUBLIC describeFields (character, character, JsonObject)

+

describeFields (character, character, JsonObject)

@@ -829,7 +829,7 @@

PUBLIC de -

PUBLIC describeResource (character, character, character, character, character, character)

+

describeResource (character, character, character, character, character, character)

@@ -971,7 +971,7 @@

PUBLIC de -

PUBLIC Progress.Json.ObjectModel.JsonObject getCatalog (character, character)

+

Progress.Json.ObjectModel.JsonObject getCatalog (character, character)

@@ -1065,7 +1065,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject loadResources ()"> -

PUBLIC loadResources ()

+

loadResources ()

@@ -1111,7 +1111,7 @@

PUBLIC lo -

PUBLIC registerAllServices (IServiceRegistry)

+

registerAllServices (IServiceRegistry)

@@ -1173,7 +1173,7 @@

PUBLIC re -

PUBLIC OpenEdge.Web.DataObject.DataObjectService registerService (IServiceRegistry, character, SemanticVersion)

+

OpenEdge.Web.DataObject.DataObjectService registerService (IServiceRegistry, character, SemanticVersion)

@@ -1283,7 +1283,7 @@

PUBLIC OpenEdge.Web.DataObject.DataObjectService -

PUBLIC stopProcedures ()

+

stopProcedures ()

@@ -1383,7 +1383,7 @@

PUBLIC st -

PUBLIC DECIMAL ApiVersion

+

DECIMAL ApiVersion

@@ -1445,7 +1445,7 @@

PUBLIC DECIMAL IdProperty"> -

PUBLIC CHARACTER IdProperty

+

CHARACTER IdProperty

@@ -1507,7 +1507,7 @@

PUBLIC CHARACTER ReadFilter"> -

PUBLIC CHARACTER ReadFilter

+

CHARACTER ReadFilter

@@ -1569,7 +1569,7 @@

PUBLIC CHARACTER ServicePrefix"> -

PUBLIC CHARACTER ServicePrefix

+

CHARACTER ServicePrefix

@@ -1631,7 +1631,7 @@

PUBLIC CHARACTER UseRequestObj"> -

PUBLIC LOGICAL UseRequestObj

+

LOGICAL UseRequestObj

@@ -1691,6 +1691,6 @@

PUBLIC LOGICAL getUserArrayPropertyAsChar (character)"> -

PUBLIC CHARACTER getUserArrayPropertyAsChar (character)

+

CHARACTER getUserArrayPropertyAsChar (character)

@@ -953,7 +953,7 @@

PUBLIC CHARACTER getUserArrayPropertyAsDec (character)"> -

PUBLIC DECIMAL getUserArrayPropertyAsDec (character)

+

DECIMAL getUserArrayPropertyAsDec (character)

@@ -1031,7 +1031,7 @@

PUBLIC DECIMAL getUserArrayPropertyAsInt (character)"> -

PUBLIC INTEGER getUserArrayPropertyAsInt (character)

+

INTEGER getUserArrayPropertyAsInt (character)

@@ -1109,7 +1109,7 @@

PUBLIC INTEGER getUserProperties ()"> -

PUBLIC CHARACTER getUserProperties ()

+

CHARACTER getUserProperties ()

@@ -1171,7 +1171,7 @@

PUBLIC CHARACTER getUserProperty (character)"> -

PUBLIC CHARACTER getUserProperty (character)

+

CHARACTER getUserProperty (character)

@@ -1249,7 +1249,7 @@

PUBLIC CHARACTER getUserPropertyArray (character[])"> -

PUBLIC CHARACTER getUserPropertyArray (character[])

+

CHARACTER getUserPropertyArray (character[])

@@ -1327,7 +1327,7 @@

PUBLIC CHARACTER getUserPropertyArray (character[], character[])"> -

PUBLIC getUserPropertyArray (character[], character[])

+

getUserPropertyArray (character[], character[])

@@ -1405,7 +1405,7 @@

PUBLIC ge -

PUBLIC CHARACTER getUserPropertyAsChar (character)

+

CHARACTER getUserPropertyAsChar (character)

@@ -1483,7 +1483,7 @@

PUBLIC CHARACTER getUserPropertyAsDate (character)"> -

PUBLIC DATE getUserPropertyAsDate (character)

+

DATE getUserPropertyAsDate (character)

@@ -1561,7 +1561,7 @@

PUBLIC DATE -

PUBLIC DATETIME getUserPropertyAsDatetime (character)

+

DATETIME getUserPropertyAsDatetime (character)

@@ -1639,7 +1639,7 @@

PUBLIC DATETIME getUserPropertyAsDatetimeTz (character)"> -

PUBLIC DATETIME-TZ getUserPropertyAsDatetimeTz (character)

+

DATETIME-TZ getUserPropertyAsDatetimeTz (character)

@@ -1717,7 +1717,7 @@

PUBLIC DATETIME-TZ getUserPropertyAsDec (character)"> -

PUBLIC DECIMAL getUserPropertyAsDec (character)

+

DECIMAL getUserPropertyAsDec (character)

@@ -1795,7 +1795,7 @@

PUBLIC DECIMAL getUserPropertyAsInt (character)"> -

PUBLIC INTEGER getUserPropertyAsInt (character)

+

INTEGER getUserPropertyAsInt (character)

@@ -1873,7 +1873,7 @@

PUBLIC INTEGER getUserPropertyAsInt64 (character)"> -

PUBLIC INT64 getUserPropertyAsInt64 (character)

+

INT64 getUserPropertyAsInt64 (character)

@@ -1951,7 +1951,7 @@

PUBLIC INT64 getUserPropertyAsLog (character)"> -

PUBLIC LOGICAL getUserPropertyAsLog (character)

+

LOGICAL getUserPropertyAsLog (character)

@@ -2029,7 +2029,7 @@

PUBLIC LOGICAL getUserPropertyAsLongchar (character)"> -

PUBLIC LONGCHAR getUserPropertyAsLongchar (character)

+

LONGCHAR getUserPropertyAsLongchar (character)

@@ -2107,7 +2107,7 @@

PUBLIC LONGCHAR hasUserProperty (character)"> -

PUBLIC LOGICAL hasUserProperty (character)

+

LOGICAL hasUserProperty (character)

@@ -2185,7 +2185,7 @@

PUBLIC LOGICAL initializeUserProperty (character)"> -

PUBLIC initializeUserProperty (character)

+

initializeUserProperty (character)

@@ -2247,7 +2247,7 @@

PUBLIC in -

PUBLIC invalidateContext ()

+

invalidateContext ()

@@ -2293,7 +2293,7 @@

PUBLIC in -

PUBLIC removeUserProperty (character)

+

removeUserProperty (character)

@@ -2355,7 +2355,7 @@

PUBLIC re -

PUBLIC setActivityPassword (character)

+

setActivityPassword (character)

@@ -2417,7 +2417,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, character)

+

setUserProperty (character, character)

@@ -2495,7 +2495,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, character[])

+

setUserProperty (character, character[])

@@ -2573,7 +2573,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, date)

+

setUserProperty (character, date)

@@ -2651,7 +2651,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, datetime)

+

setUserProperty (character, datetime)

@@ -2729,7 +2729,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, datetime-tz)

+

setUserProperty (character, datetime-tz)

@@ -2807,7 +2807,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, decimal)

+

setUserProperty (character, decimal)

@@ -2885,7 +2885,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, decimal[])

+

setUserProperty (character, decimal[])

@@ -2963,7 +2963,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, int64)

+

setUserProperty (character, int64)

@@ -3041,7 +3041,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, integer)

+

setUserProperty (character, integer)

@@ -3119,7 +3119,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, integer[])

+

setUserProperty (character, integer[])

@@ -3197,7 +3197,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, logical)

+

setUserProperty (character, logical)

@@ -3275,7 +3275,7 @@

PUBLIC se -

PUBLIC setUserProperty (character, longchar)

+

setUserProperty (character, longchar)

@@ -3407,7 +3407,7 @@

PUBLIC se -

PUBLIC CHARACTER activityPassword

+

CHARACTER activityPassword

@@ -3469,7 +3469,7 @@

PUBLIC CHARACTER loginExpiration"> -

PUBLIC DATETIME-TZ loginExpiration

+

DATETIME-TZ loginExpiration

@@ -3531,7 +3531,7 @@

PUBLIC DATETIME-TZ userDomain"> -

PUBLIC CHARACTER userDomain

+

CHARACTER userDomain

@@ -3593,7 +3593,7 @@

PUBLIC CHARACTER userExtra"> -

PUBLIC CHARACTER userExtra

+

CHARACTER userExtra

@@ -3655,7 +3655,7 @@

PUBLIC CHARACTER userID"> -

PUBLIC CHARACTER userID

+

CHARACTER userID

@@ -3715,6 +3715,6 @@

PUBLIC CHARACTER getConnectionParam (character, character, ILifecycleScope, character)"> -

PUBLIC LOGICAL getConnectionParam (character, character, ILifecycleScope, character)

+

LOGICAL getConnectionParam (character, character, ILifecycleScope, character)

@@ -474,7 +474,7 @@

PUBLIC LOGICAL getProcHandle (character, character)"> -

PUBLIC HANDLE getProcHandle (character, character)

+

HANDLE getProcHandle (character, character)

@@ -568,7 +568,7 @@

PUBLIC HANDLE getServer (character)"> -

PUBLIC HANDLE getServer (character)

+

HANDLE getServer (character)

@@ -646,7 +646,7 @@

PUBLIC HANDLE reconnectServer (character)"> -

PUBLIC HANDLE reconnectServer (character)

+

HANDLE reconnectServer (character)

@@ -724,7 +724,7 @@

PUBLIC HANDLE stopLifeCycle (ILifecycleScope)"> -

PUBLIC stopLifeCycle (ILifecycleScope)

+

stopLifeCycle (ILifecycleScope)

@@ -786,7 +786,7 @@

PUBLIC st -

PUBLIC stopServer (character)

+

stopServer (character)

@@ -848,7 +848,7 @@

PUBLIC st -

PUBLIC LOGICAL validContext (character)

+

LOGICAL validContext (character)

@@ -978,6 +978,6 @@

PUBLIC LOGICAL logError (character, Error, character, integer)"> -

PUBLIC logError (character, Error, character, integer)

+

logError (character, Error, character, integer)

@@ -432,7 +432,7 @@

PUBLIC lo -

PUBLIC logMessage (character, character, integer)

+

logMessage (character, character, integer)

@@ -526,7 +526,7 @@

PUBLIC lo -

PUBLIC CHARACTER updateLogEntryTypes ()

+

CHARACTER updateLogEntryTypes ()

@@ -588,7 +588,7 @@

PUBLIC CHARACTER updateLoggingLevel ()"> -

PUBLIC INTEGER updateLoggingLevel ()

+

INTEGER updateLoggingLevel ()

@@ -704,7 +704,7 @@

PUBLIC INTEGER oLogConfig"> -

PUBLIC Progress.Json.ObjectModel.JsonObject oLogConfig

+

Progress.Json.ObjectModel.JsonObject oLogConfig

@@ -764,6 +764,6 @@

PUBLIC Progress.Json.ObjectModel.JsonObject deleteObjects ()"> -

PUBLIC deleteObjects ()

+

deleteObjects ()

@@ -496,7 +496,7 @@

PUBLIC de -

PUBLIC dumpObjects ()

+

dumpObjects ()

@@ -542,7 +542,7 @@

PUBLIC du -

PUBLIC LOGICAL getDataset (character, dataset-handle)

+

LOGICAL getDataset (character, dataset-handle)

@@ -636,7 +636,7 @@

PUBLIC LOGICAL getDataset (longchar, dataset-handle)"> -

PUBLIC LOGICAL getDataset (longchar, dataset-handle)

+

LOGICAL getDataset (longchar, dataset-handle)

@@ -730,7 +730,7 @@

PUBLIC LOGICAL getObject (character, character, character, character, longchar)"> -

PUBLIC getObject (character, character, character, character, longchar)

+

getObject (character, character, character, character, longchar)

@@ -856,7 +856,7 @@

PUBLIC ge -

PUBLIC getObjectChildren (character, character)

+

getObjectChildren (character, character)

@@ -934,7 +934,7 @@

PUBLIC ge -

PUBLIC getObjectList (character, character)

+

getObjectList (character, character)

@@ -1012,7 +1012,7 @@

PUBLIC ge -

PUBLIC LOGICAL getTempTable (character, table-handle)

+

LOGICAL getTempTable (character, table-handle)

@@ -1106,7 +1106,7 @@

PUBLIC LOGICAL initMethodSignature (MethodSignature)"> -

PUBLIC initMethodSignature (MethodSignature)

+

initMethodSignature (MethodSignature)

@@ -1168,7 +1168,7 @@

PUBLIC in -

PUBLIC initSchema ()

+

initSchema ()

@@ -1214,7 +1214,7 @@

PUBLIC in -

PUBLIC registerDataset (handle)

+

registerDataset (handle)

@@ -1276,7 +1276,7 @@

PUBLIC re -

PUBLIC registerTempTable (character, handle)

+

registerTempTable (character, handle)

@@ -1354,7 +1354,7 @@

PUBLIC re -

PUBLIC registerTempTable (handle)

+

registerTempTable (handle)

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -280,7 +280,7 @@ -

PUBLIC callServiceFunction (Class, character)

+

callServiceFunction (Class, character)

@@ -1468,6 +1468,6 @@

PUBLIC re

--> - 04.15.2022 11:52:03 + 04.18.2022 11:20:29 diff --git a/docs/PCTDoc/Spark.Core.Manager.IServiceManager.html b/docs/PCTDoc/Spark.Core.Manager.IServiceManager.html index 60f387c1..9c0161f0 100644 --- a/docs/PCTDoc/Spark.Core.Manager.IServiceManager.html +++ b/docs/PCTDoc/Spark.Core.Manager.IServiceManager.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + +
@@ -358,7 +358,7 @@

PUBLIC ca -

PUBLIC callServiceFunction (Class, character, IAbstractMessage, IAbstractMessage)

+

callServiceFunction (Class, character, IAbstractMessage, IAbstractMessage)

@@ -468,7 +468,7 @@

PUBLIC ca -

PUBLIC Progress.Lang.Class getServiceImplementation (Class)

+

Progress.Lang.Class getServiceImplementation (Class)

@@ -598,6 +598,6 @@

PUBLIC Progress.Lang.Class databasesConnected ()"> -

PUBLIC LOGICAL databasesConnected ()

+

LOGICAL databasesConnected ()

@@ -444,7 +444,7 @@

PUBLIC LOGICAL establishRequestEnvironment ()"> -

PUBLIC establishRequestEnvironment ()

+

establishRequestEnvironment ()

@@ -490,7 +490,7 @@

PUBLIC es -

PUBLIC CHARACTER getUserSSOToken (character, datetime-tz)

+

CHARACTER getUserSSOToken (character, datetime-tz)

@@ -584,7 +584,7 @@

PUBLIC CHARACTER getUserSSOToken (datetime-tz)"> -

PUBLIC CHARACTER getUserSSOToken (datetime-tz)

+

CHARACTER getUserSSOToken (datetime-tz)

@@ -662,7 +662,7 @@

PUBLIC CHARACTER invalidateContext ()"> -

PUBLIC invalidateContext ()

+

invalidateContext ()

@@ -708,7 +708,7 @@

PUBLIC in -

PUBLIC invalidateContext (character)

+

invalidateContext (character)

@@ -770,7 +770,7 @@

PUBLIC in -

PUBLIC invalidateContext (handle)

+

invalidateContext (handle)

@@ -832,7 +832,7 @@

PUBLIC in -

PUBLIC setSessionAttribute (SessionAttributeEnum, character)

+

setSessionAttribute (SessionAttributeEnum, character)

@@ -910,7 +910,7 @@

PUBLIC se -

PUBLIC RAW userLogin (character, character, character, character)

+

RAW userLogin (character, character, character, character)

@@ -224,7 +224,7 @@ @@ -263,7 +263,7 @@ -

PUBLIC stopManagers ()

+

stopManagers ()

@@ -1088,6 +1088,6 @@

PUBLIC RAW

--> - 04.15.2022 11:52:03 + 04.18.2022 11:20:29 diff --git a/docs/PCTDoc/Spark.Core.Manager.IStartupManager.html b/docs/PCTDoc/Spark.Core.Manager.IStartupManager.html index 87291e0e..6e33885e 100644 --- a/docs/PCTDoc/Spark.Core.Manager.IStartupManager.html +++ b/docs/PCTDoc/Spark.Core.Manager.IStartupManager.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + +
@@ -363,7 +363,7 @@

PUBLIC st -

PUBLIC INTEGER interfaceStopAfter

+

INTEGER interfaceStopAfter

@@ -423,6 +423,6 @@

PUBLIC INTEGER readContextFromStore (character, character)"> -

PUBLIC LONGCHAR readContextFromStore (character, character)

+

LONGCHAR readContextFromStore (character, character)

@@ -425,7 +425,7 @@

PUBLIC LONGCHAR readContextFromStoreAndLock (character, character)"> -

PUBLIC LONGCHAR readContextFromStoreAndLock (character, character)

+

LONGCHAR readContextFromStoreAndLock (character, character)

@@ -519,7 +519,7 @@

PUBLIC LONGCHAR removeContextFromStore (character, character)"> -

PUBLIC removeContextFromStore (character, character)

+

removeContextFromStore (character, character)

@@ -597,7 +597,7 @@

PUBLIC re -

PUBLIC updateLastUsed (character, character)

+

updateLastUsed (character, character)

@@ -675,7 +675,7 @@

PUBLIC up -

PUBLIC writeContextToStore (longchar, datetime-tz, character, character)

+

writeContextToStore (longchar, datetime-tz, character, character)

@@ -785,7 +785,7 @@

PUBLIC wr -

PUBLIC writeContextToStore (longchar, StateLifeCycleEnum, character, character)

+

writeContextToStore (longchar, StateLifeCycleEnum, character, character)

@@ -155,7 +155,7 @@ @@ -263,7 +263,7 @@ -

PUBLIC CHARACTER getTranslatedMessage (character)

+

CHARACTER getTranslatedMessage (character)

@@ -947,6 +947,6 @@

PUBLIC wr

--> - 04.15.2022 11:52:03 + 04.18.2022 11:20:29 diff --git a/docs/PCTDoc/Spark.Core.Manager.ITranslationManager.html b/docs/PCTDoc/Spark.Core.Manager.ITranslationManager.html index 440c39ed..216077b5 100644 --- a/docs/PCTDoc/Spark.Core.Manager.ITranslationManager.html +++ b/docs/PCTDoc/Spark.Core.Manager.ITranslationManager.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + +
@@ -341,7 +341,7 @@

PUBLIC CHARACTER getTranslatedMessage (character, integer)"> -

PUBLIC CHARACTER getTranslatedMessage (character, integer)

+

CHARACTER getTranslatedMessage (character, integer)

@@ -165,14 +165,14 @@ @@ -189,7 +189,7 @@ @@ -207,7 +207,7 @@ @@ -224,7 +224,7 @@ @@ -264,7 +264,7 @@ @@ -327,7 +327,7 @@ @@ -344,7 +344,7 @@ @@ -383,7 +383,7 @@ -

PUBLIC dispose ()

+

dispose ()

@@ -487,6 +487,6 @@

PUBLIC CHARACTER Spark.Core.Service.Service:dispose () +

- + + -
Overrides Spark.Core.Service.Service:initialize () +
- + + - + + - + + - + + - + + - # + - + +
@@ -400,7 +400,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -429,7 +429,7 @@

PUBLIC di

-

PUBLIC initialize ()

+

initialize ()

@@ -446,7 +446,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -475,7 +475,7 @@

PUBLIC in

-

PUBLIC logError (character, Error, character, integer)

+

logError (character, Error, character, integer)

@@ -585,7 +585,7 @@

PUBLIC lo -

PUBLIC logMessage (character, character, integer)

+

logMessage (character, character, integer)

@@ -679,7 +679,7 @@

PUBLIC lo -

PUBLIC CHARACTER updateLogEntryTypes ()

+

CHARACTER updateLogEntryTypes ()

@@ -741,7 +741,7 @@

PUBLIC CHARACTER updateLoggingLevel ()"> -

PUBLIC INTEGER updateLoggingLevel ()

+

INTEGER updateLoggingLevel ()

@@ -821,7 +821,7 @@

PUBLIC INTEGER LoggingManager ()"> -

PUBLIC LoggingManager ()

+

LoggingManager ()

- - +
@@ -903,7 +903,7 @@

PUBLIC Lo -

PROTECTED CHARACTER LogConfigPath

+

CHARACTER LogConfigPath

@@ -266,7 +226,7 @@ -->

- + - -
@@ -965,7 +965,7 @@

PROTECTED CHARACTER oLogConfig"> -

PUBLIC Progress.Json.ObjectModel.JsonObject oLogConfig

+

Progress.Json.ObjectModel.JsonObject oLogConfig

- - - - - - - - - +
@@ -1025,6 +1025,6 @@

PUBLIC Progress.Json.ObjectModel.JsonObject dispose () - -

- -/** -* Destroy/Shutdown/Anti-Initializer -*/
Inherited from Spark.Core.Service.Service -
- - + - A - - - - initialize () - - - -/** -* Initializer/Startup -*/
Inherited from Spark.Core.Service.Service -
- + -->
@@ -201,7 +161,7 @@
- + +
- - - - - -
-
- - Top - - -
-

PUBLIC initialize ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.Service -
-
-
-
Purpose:
-
- - - -
-
-
-
-
-


- + -->
@@ -396,7 +264,7 @@

PUBLIC in

-

PUBLIC Manager ()

+

Manager ()

@@ -155,7 +155,7 @@ @@ -173,7 +173,7 @@ @@ -184,14 +184,14 @@ @@ -209,7 +209,7 @@ @@ -226,7 +226,7 @@ @@ -244,7 +244,7 @@ @@ -262,7 +262,7 @@ @@ -280,7 +280,7 @@ @@ -298,7 +298,7 @@ @@ -316,7 +316,7 @@ @@ -333,7 +333,7 @@ @@ -351,7 +351,7 @@ @@ -369,7 +369,7 @@ @@ -387,7 +387,7 @@ @@ -398,14 +398,14 @@ @@ -423,7 +423,7 @@ @@ -441,7 +441,7 @@ @@ -459,7 +459,7 @@ @@ -477,7 +477,7 @@ @@ -495,7 +495,7 @@ @@ -582,7 +582,7 @@ @@ -621,7 +621,7 @@ -

PROTECTED LOGICAL addSchemaToSignature (character, MethodSignature)

+

LOGICAL addSchemaToSignature (character, MethodSignature)

@@ -476,6 +344,6 @@

PUBLIC Ma

--> - 04.15.2022 11:52:04 + 04.18.2022 11:20:29 diff --git a/docs/PCTDoc/Spark.Core.Manager.SchemaManager.html b/docs/PCTDoc/Spark.Core.Manager.SchemaManager.html index 67036f47..56a6cb39 100644 --- a/docs/PCTDoc/Spark.Core.Manager.SchemaManager.html +++ b/docs/PCTDoc/Spark.Core.Manager.SchemaManager.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- # + - + + - + + -/* initialize */
Overrides Spark.Core.Service.Service:dispose () +/* initialize */
- + + - # + - # + - # + - + + - + + - + + - + + - + + - + + - + + - + + -/* dumpObjects */
Overrides Spark.Core.Service.Service:initialize () +/* dumpObjects */
- + + - + + - # + - + + - + + - + + - # +
@@ -715,7 +715,7 @@

PROTECTED LOGICAL deleteObjects ()"> -

PUBLIC deleteObjects ()

+

deleteObjects ()

@@ -761,7 +761,7 @@

PUBLIC de -

PUBLIC dispose ()

+

dispose ()

@@ -778,7 +778,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -807,7 +807,7 @@

PUBLIC di

-

PUBLIC dumpObjects ()

+

dumpObjects ()

@@ -853,7 +853,7 @@

PUBLIC du -

PROTECTED examineDatabases ()

+

examineDatabases ()

@@ -899,7 +899,7 @@

PROTECTED -

PROTECTED examineTables (character)

+

examineTables (character)

@@ -961,7 +961,7 @@

PROTECTED -

PROTECTED examineTables (character, character, character, logical)

+

examineTables (character, character, character, logical)

@@ -1071,7 +1071,7 @@

PROTECTED -

PUBLIC fixSerializedNames (table-handle)

+

fixSerializedNames (table-handle)

@@ -1133,7 +1133,7 @@

PUBLIC fi -

PUBLIC LOGICAL getDataset (character, dataset-handle)

+

LOGICAL getDataset (character, dataset-handle)

@@ -1227,7 +1227,7 @@

PUBLIC LOGICAL getDataset (longchar, dataset-handle)"> -

PUBLIC LOGICAL getDataset (longchar, dataset-handle)

+

LOGICAL getDataset (longchar, dataset-handle)

@@ -1321,7 +1321,7 @@

PUBLIC LOGICAL getObject (character, character, character, character, longchar)"> -

PUBLIC getObject (character, character, character, character, longchar)

+

getObject (character, character, character, character, longchar)

@@ -1447,7 +1447,7 @@

PUBLIC ge -

PUBLIC getObjectChildren (character, character)

+

getObjectChildren (character, character)

@@ -1525,7 +1525,7 @@

PUBLIC ge -

PUBLIC getObjectList (character, character)

+

getObjectList (character, character)

@@ -1603,7 +1603,7 @@

PUBLIC ge -

PUBLIC LOGICAL getTempTable (character, table-handle)

+

LOGICAL getTempTable (character, table-handle)

@@ -1697,7 +1697,7 @@

PUBLIC LOGICAL initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -1714,7 +1714,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -1743,7 +1743,7 @@

PUBLIC in

-

PUBLIC initMethodSignature (MethodSignature)

+

initMethodSignature (MethodSignature)

@@ -1805,7 +1805,7 @@

PUBLIC in -

PUBLIC initSchema ()

+

initSchema ()

@@ -1851,7 +1851,7 @@

PUBLIC in -

PROTECTED registerDatabases ()

+

registerDatabases ()

@@ -1897,7 +1897,7 @@

PROTECTED -

PUBLIC registerDataset (handle)

+

registerDataset (handle)

@@ -1959,7 +1959,7 @@

PUBLIC re -

PUBLIC registerTempTable (character, handle)

+

registerTempTable (character, handle)

@@ -2037,7 +2037,7 @@

PUBLIC re -

PUBLIC registerTempTable (handle)

+

registerTempTable (handle)

@@ -2153,7 +2153,7 @@

PUBLIC re -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -233,7 +233,7 @@ @@ -263,7 +263,7 @@ @@ -285,7 +285,7 @@ @@ -308,7 +308,7 @@ @@ -333,7 +333,7 @@ @@ -356,7 +356,7 @@ @@ -366,14 +366,14 @@ @@ -390,7 +390,7 @@ @@ -414,7 +414,7 @@ @@ -437,7 +437,7 @@ @@ -480,7 +480,7 @@ @@ -543,7 +543,7 @@ @@ -582,7 +582,7 @@ -

PUBLIC callServiceFunction (Class, character)

+

callServiceFunction (Class, character)

@@ -2213,6 +2213,6 @@

PROTECTED Spark.Core.Service.Service:dispose () +

- # + - # + - + + - + + - + + - + + - + + -
Overrides Spark.Core.Service.Service:initialize () +
- # + - - + - - + - + + - + + - # +
@@ -660,7 +660,7 @@

PUBLIC ca -

PUBLIC callServiceFunction (Class, character, IAbstractMessage, IAbstractMessage)

+

callServiceFunction (Class, character, IAbstractMessage, IAbstractMessage)

@@ -770,7 +770,7 @@

PUBLIC ca -

PUBLIC dispose ()

+

dispose ()

@@ -787,7 +787,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -816,7 +816,7 @@

PUBLIC di

-

PROTECTED Ccs.ServiceManager.ILifecycleScope getLifeCycleScope (character)

+

Ccs.ServiceManager.ILifecycleScope getLifeCycleScope (character)

@@ -894,7 +894,7 @@

PROTECTED Ccs.ServiceManager.ILifecycleScope -

PROTECTED Ccs.ServiceManager.ILifecycleScope getLifeCycleScope (Class)

+

Ccs.ServiceManager.ILifecycleScope getLifeCycleScope (Class)

@@ -972,7 +972,7 @@

PROTECTED Ccs.ServiceManager.ILifecycleScope -

PUBLIC Progress.Lang.Object getService (Class)

+

Progress.Lang.Object getService (Class)

@@ -1050,7 +1050,7 @@

PUBLIC Progress.Lang.Object getService (Class, ILifecycleScope)"> -

PUBLIC Progress.Lang.Object getService (Class, ILifecycleScope)

+

Progress.Lang.Object getService (Class, ILifecycleScope)

@@ -1144,7 +1144,7 @@

PUBLIC Progress.Lang.Object getService (Class, character)"> -

PUBLIC Progress.Lang.Object getService (Class, character)

+

Progress.Lang.Object getService (Class, character)

@@ -1238,7 +1238,7 @@

PUBLIC Progress.Lang.Object getServiceImplementation (Class)"> -

PUBLIC Progress.Lang.Class getServiceImplementation (Class)

+

Progress.Lang.Class getServiceImplementation (Class)

@@ -1316,7 +1316,7 @@

PUBLIC Progress.Lang.Class initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -1333,7 +1333,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -1362,7 +1362,7 @@

PUBLIC in

-

PROTECTED loadConfig ()

+

loadConfig ()

@@ -1408,7 +1408,7 @@

PROTECTED -

PRIVATE Progress.Lang.Object startService (Class, character)

+

Progress.Lang.Object startService (Class, character)

@@ -1502,7 +1502,7 @@

PRIVATE Progress.Lang.Object stopService (character, character)"> -

PRIVATE stopService (character, character)

+

stopService (character, character)

@@ -1580,7 +1580,7 @@

PRIVATE s -

PUBLIC stopServices (ILifecycleScope)

+

stopServices (ILifecycleScope)

@@ -1660,7 +1660,7 @@

PUBLIC st -

PUBLIC ServiceManager ()

+

ServiceManager ()

@@ -1742,7 +1742,7 @@

PUBLIC Se -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -240,7 +240,7 @@ @@ -260,7 +260,7 @@ @@ -277,7 +277,7 @@ @@ -297,7 +297,7 @@ @@ -317,7 +317,7 @@ @@ -334,7 +334,7 @@ @@ -355,7 +355,7 @@ @@ -376,7 +376,7 @@ @@ -386,14 +386,14 @@ @@ -413,7 +413,7 @@ @@ -435,7 +435,7 @@ @@ -457,7 +457,7 @@ @@ -474,7 +474,7 @@ @@ -494,7 +494,7 @@ @@ -514,7 +514,7 @@ @@ -535,7 +535,7 @@ @@ -555,7 +555,7 @@ @@ -576,7 +576,7 @@ @@ -624,7 +624,7 @@ @@ -687,7 +687,7 @@ @@ -726,7 +726,7 @@ -

PROTECTED assertUserCredentials (handle)

+

assertUserCredentials (handle)

@@ -1802,6 +1802,6 @@

PROTECTED Spark.Core.Service.Service:dispose () +

- + + - + + - + + - + + - # + - # + - + + - + + - + + -
Overrides Spark.Core.Service.Service:initialize () +
- + + - + + - + + - # + - # + - - + - # + - # + - + + - + + - + + - + +
@@ -788,7 +788,7 @@

PROTECTED -

PUBLIC LOGICAL databasesConnected ()

+

LOGICAL databasesConnected ()

@@ -850,7 +850,7 @@

PUBLIC LOGICAL decryptPassword (character)"> -

PROTECTED CHARACTER decryptPassword (character)

+

CHARACTER decryptPassword (character)

@@ -928,7 +928,7 @@

PROTECTED CHARACTER dispose ()"> -

PUBLIC dispose ()

+

dispose ()

@@ -945,7 +945,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -974,7 +974,7 @@

PUBLIC di

-

PUBLIC endRequestEnvironment ()

+

endRequestEnvironment ()

@@ -1020,7 +1020,7 @@

PUBLIC en -

PUBLIC establishRequestEnvironment ()

+

establishRequestEnvironment ()

@@ -1066,7 +1066,7 @@

PUBLIC es -

PUBLIC establishRequestEnvironment (character)

+

establishRequestEnvironment (character)

@@ -1128,7 +1128,7 @@

PUBLIC es -

PUBLIC establishRequestEnvironment (handle)

+

establishRequestEnvironment (handle)

@@ -1190,7 +1190,7 @@

PUBLIC es -

PROTECTED getDatabaseOptions ()

+

getDatabaseOptions ()

@@ -1236,7 +1236,7 @@

PROTECTED -

PROTECTED CHARACTER getDomainAccessCode (character)

+

CHARACTER getDomainAccessCode (character)

@@ -1314,7 +1314,7 @@

PROTECTED CHARACTER getUserSSOToken (character, datetime-tz)"> -

PUBLIC CHARACTER getUserSSOToken (character, datetime-tz)

+

CHARACTER getUserSSOToken (character, datetime-tz)

@@ -1408,7 +1408,7 @@

PUBLIC CHARACTER getUserSSOToken (datetime-tz)"> -

PUBLIC CHARACTER getUserSSOToken (datetime-tz)

+

CHARACTER getUserSSOToken (datetime-tz)

@@ -1486,7 +1486,7 @@

PUBLIC CHARACTER initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -1503,7 +1503,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -1532,7 +1532,7 @@

PUBLIC in

-

PUBLIC invalidateContext ()

+

invalidateContext ()

@@ -1578,7 +1578,7 @@

PUBLIC in -

PUBLIC invalidateContext (character)

+

invalidateContext (character)

@@ -1640,7 +1640,7 @@

PUBLIC in -

PUBLIC invalidateContext (handle)

+

invalidateContext (handle)

@@ -1702,7 +1702,7 @@

PUBLIC in -

PROTECTED loadConfig ()

+

loadConfig ()

@@ -1748,7 +1748,7 @@

PROTECTED -

PROTECTED registerDomains ()

+

registerDomains ()

@@ -1794,7 +1794,7 @@

PROTECTED -

PRIVATE resetSession ()

+

resetSession ()

@@ -1840,7 +1840,7 @@

PRIVATE r -

PROTECTED resetSessionAttributes ()

+

resetSessionAttributes ()

@@ -1886,7 +1886,7 @@

PROTECTED -

PROTECTED setClientPrincipalAttributes (handle)

+

setClientPrincipalAttributes (handle)

@@ -1948,7 +1948,7 @@

PROTECTED -

PUBLIC setSessionAttribute (SessionAttributeEnum, character)

+

setSessionAttribute (SessionAttributeEnum, character)

@@ -2026,7 +2026,7 @@

PUBLIC se -

PUBLIC RAW userLogin (character, character, character, character)

+

RAW userLogin (character, character, character, character)

@@ -2170,7 +2170,7 @@

PUBLIC RAW -

PUBLIC SessionManager ()

+

SessionManager ()

@@ -2252,7 +2252,7 @@

PUBLIC Se -

PUBLIC Ccs.Common.IClientContext CurrentClientContext

+

Ccs.Common.IClientContext CurrentClientContext

@@ -225,7 +225,7 @@ @@ -235,14 +235,14 @@ @@ -260,7 +260,7 @@ @@ -277,7 +277,7 @@ @@ -295,7 +295,7 @@ @@ -312,7 +312,7 @@ @@ -353,7 +353,7 @@ @@ -413,10 +413,10 @@ - @@ -433,7 +433,7 @@ @@ -472,7 +472,7 @@ -

PRIVATE checkAllManagersAreListed ()

+

checkAllManagersAreListed ()

@@ -2312,6 +2312,6 @@

PUBLIC Ccs.Common.IClientContext Spark.Core.Service.Service:dispose () +

- + + - + + -
Overrides Spark.Core.Service.Service:initialize () +
- - + - - + - - + - - + - + + - - + Purpose
+ - + + - + +
@@ -518,7 +518,7 @@

PRIVATE c -

PRIVATE LOGICAL checkManagerIsListed (character, character)

+

LOGICAL checkManagerIsListed (character, character)

@@ -612,7 +612,7 @@

PRIVATE LOGICAL checkManagerIsListed (character, character, logical)"> -

PRIVATE LOGICAL checkManagerIsListed (character, character, logical)

+

LOGICAL checkManagerIsListed (character, character, logical)

@@ -722,7 +722,7 @@

PRIVATE LOGICAL dispose ()"> -

PUBLIC dispose ()

+

dispose ()

@@ -739,7 +739,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -768,7 +768,7 @@

PUBLIC di

-

PUBLIC Ccs.Common.IManager getManager (Class)

+

Ccs.Common.IManager getManager (Class)

@@ -846,7 +846,7 @@

PUBLIC Ccs.Common.IManager initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -863,7 +863,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -892,7 +892,7 @@

PUBLIC in

-

PRIVATE loadConfig ()

+

loadConfig ()

@@ -938,7 +938,7 @@

PRIVATE l -

PRIVATE startManager (character, character)

+

startManager (character, character)

@@ -1016,7 +1016,7 @@

PRIVATE s -

PRIVATE startManagers ()

+

startManagers ()

@@ -1062,7 +1062,7 @@

PRIVATE s -

PRIVATE stopManager (character)

+

stopManager (character)

@@ -1124,7 +1124,7 @@

PRIVATE s -

PUBLIC stopManagers ()

+

stopManagers ()

@@ -1188,7 +1188,7 @@

PUBLIC st -

PRIVATE StartupManager ()

+

StartupManager ()

@@ -1270,11 +1270,11 @@

PRIVATE S -

PUBLIC Spark.Core.Manager.IStartupManager Instance

+

Spark.Core.Manager.IStartupManager Instance

-
+
@@ -1332,7 +1332,7 @@

PUBLIC interfaceStopAfter"> -

PUBLIC INTEGER interfaceStopAfter

+

INTEGER interfaceStopAfter

@@ -188,14 +188,14 @@ @@ -219,7 +219,7 @@ @@ -243,7 +243,7 @@ @@ -266,7 +266,7 @@ @@ -289,7 +289,7 @@ @@ -314,7 +314,7 @@ @@ -362,7 +362,7 @@ @@ -447,7 +447,7 @@ -

PUBLIC LOGICAL cleanOldContextData (integer)

+

LOGICAL cleanOldContextData (integer)

@@ -1392,6 +1392,6 @@

PUBLIC INTEGER Spark.Core.Service.Service:dispose () +

- + + -
Overrides Spark.Core.Service.Service:initialize () +
- + + - + + - + + - + + - + + - + + - + +
@@ -525,7 +525,7 @@

PUBLIC LOGICAL dispose ()"> -

PUBLIC dispose ()

+

dispose ()

@@ -542,7 +542,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -571,7 +571,7 @@

PUBLIC di

-

PUBLIC initialize ()

+

initialize ()

@@ -588,7 +588,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -617,7 +617,7 @@

PUBLIC in

-

PUBLIC LONGCHAR readContextFromStore (character, character)

+

LONGCHAR readContextFromStore (character, character)

@@ -711,7 +711,7 @@

PUBLIC LONGCHAR readContextFromStoreAndLock (character, character)"> -

PUBLIC LONGCHAR readContextFromStoreAndLock (character, character)

+

LONGCHAR readContextFromStoreAndLock (character, character)

@@ -805,7 +805,7 @@

PUBLIC LONGCHAR removeContextFromStore (character, character)"> -

PUBLIC removeContextFromStore (character, character)

+

removeContextFromStore (character, character)

@@ -883,7 +883,7 @@

PUBLIC re -

PUBLIC updateLastUsed (character, character)

+

updateLastUsed (character, character)

@@ -961,7 +961,7 @@

PUBLIC up -

PUBLIC writeContextToStore (longchar, datetime-tz, character, character)

+

writeContextToStore (longchar, datetime-tz, character, character)

@@ -1071,7 +1071,7 @@

PUBLIC wr -

PUBLIC writeContextToStore (longchar, StateLifeCycleEnum, character, character)

+

writeContextToStore (longchar, StateLifeCycleEnum, character, character)

@@ -1199,7 +1199,7 @@

PUBLIC wr -

PUBLIC StateManager ()

+

StateManager ()

@@ -148,14 +148,14 @@ @@ -173,7 +173,7 @@ @@ -191,7 +191,7 @@ @@ -201,7 +201,7 @@ @@ -231,7 +231,7 @@ @@ -316,7 +316,7 @@ -

PUBLIC dispose ()

+

dispose ()

@@ -1279,6 +1279,6 @@

PUBLIC St

--> - 04.15.2022 11:52:06 + 04.18.2022 11:20:30 diff --git a/docs/PCTDoc/Spark.Core.Manager.TranslationManager.html b/docs/PCTDoc/Spark.Core.Manager.TranslationManager.html index d58a0759..eabb1d22 100644 --- a/docs/PCTDoc/Spark.Core.Manager.TranslationManager.html +++ b/docs/PCTDoc/Spark.Core.Manager.TranslationManager.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + -
Overrides Spark.Core.Service.Service:dispose () +
- + + - + + - + + -
Overrides Spark.Core.Service.Service:initialize () +
- + +
@@ -333,7 +333,7 @@

PUBLIC di

- Overrides Spark.Core.Service.Service:dispose () +
@@ -362,7 +362,7 @@

PUBLIC di

-

PUBLIC CHARACTER getTranslatedMessage (character)

+

CHARACTER getTranslatedMessage (character)

@@ -440,7 +440,7 @@

PUBLIC CHARACTER getTranslatedMessage (character, integer)"> -

PUBLIC CHARACTER getTranslatedMessage (character, integer)

+

CHARACTER getTranslatedMessage (character, integer)

@@ -534,7 +534,7 @@

PUBLIC CHARACTER initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -551,7 +551,7 @@

PUBLIC in

- Overrides Spark.Core.Service.Service:initialize () +
@@ -598,7 +598,7 @@

PUBLIC in

-

PUBLIC TranslationManager ()

+

TranslationManager ()

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -189,7 +189,7 @@ @@ -211,7 +211,7 @@ @@ -234,7 +234,7 @@ @@ -256,7 +256,7 @@ @@ -279,7 +279,7 @@ @@ -301,7 +301,7 @@ @@ -324,7 +324,7 @@ @@ -346,7 +346,7 @@ @@ -369,7 +369,7 @@ @@ -391,7 +391,7 @@ @@ -414,7 +414,7 @@ @@ -436,7 +436,7 @@ @@ -459,7 +459,7 @@ @@ -481,7 +481,7 @@ @@ -504,7 +504,7 @@ @@ -526,7 +526,7 @@ @@ -549,7 +549,7 @@ @@ -571,7 +571,7 @@ @@ -594,7 +594,7 @@ @@ -616,7 +616,7 @@ @@ -639,7 +639,7 @@ @@ -662,7 +662,7 @@ @@ -684,7 +684,7 @@ @@ -707,7 +707,7 @@ @@ -729,7 +729,7 @@ @@ -752,7 +752,7 @@ @@ -774,7 +774,7 @@ @@ -797,7 +797,7 @@ @@ -819,7 +819,7 @@ @@ -842,7 +842,7 @@ @@ -864,7 +864,7 @@ @@ -887,7 +887,7 @@ @@ -909,7 +909,7 @@ @@ -932,7 +932,7 @@ @@ -954,7 +954,7 @@ @@ -977,7 +977,7 @@ @@ -999,7 +999,7 @@ @@ -1022,7 +1022,7 @@ @@ -1044,7 +1044,7 @@ @@ -1067,7 +1067,7 @@ @@ -1089,7 +1089,7 @@ @@ -1112,7 +1112,7 @@ @@ -1134,7 +1134,7 @@ @@ -1157,7 +1157,7 @@ @@ -1179,7 +1179,7 @@ @@ -1202,7 +1202,7 @@ @@ -1224,7 +1224,7 @@ @@ -1247,7 +1247,7 @@ @@ -1269,7 +1269,7 @@ @@ -1292,7 +1292,7 @@ @@ -1314,7 +1314,7 @@ @@ -1337,7 +1337,7 @@ @@ -1359,7 +1359,7 @@ @@ -1382,7 +1382,7 @@ @@ -1404,7 +1404,7 @@ @@ -1427,7 +1427,7 @@ @@ -1447,7 +1447,7 @@ @@ -1467,7 +1467,7 @@ @@ -1487,7 +1487,7 @@ @@ -1510,7 +1510,7 @@ @@ -1531,7 +1531,7 @@ @@ -1548,7 +1548,7 @@ @@ -1568,7 +1568,7 @@ @@ -1589,7 +1589,7 @@ @@ -1606,7 +1606,7 @@ @@ -1623,7 +1623,7 @@ @@ -1640,7 +1640,7 @@ @@ -1657,7 +1657,7 @@ @@ -1674,7 +1674,7 @@ @@ -1691,7 +1691,7 @@ @@ -1708,7 +1708,7 @@ @@ -1725,7 +1725,7 @@ @@ -1742,7 +1742,7 @@ @@ -1759,7 +1759,7 @@ @@ -1776,7 +1776,7 @@ @@ -1793,7 +1793,7 @@ @@ -1810,7 +1810,7 @@ @@ -1827,7 +1827,7 @@ @@ -1844,7 +1844,7 @@ @@ -1861,7 +1861,7 @@ @@ -1878,7 +1878,7 @@ @@ -1895,7 +1895,7 @@ @@ -1912,7 +1912,7 @@ @@ -1929,7 +1929,7 @@ @@ -1946,7 +1946,7 @@ @@ -1963,7 +1963,7 @@ @@ -1980,7 +1980,7 @@ @@ -1997,7 +1997,7 @@ @@ -2014,7 +2014,7 @@ @@ -2031,7 +2031,7 @@ @@ -2048,7 +2048,7 @@ @@ -2065,7 +2065,7 @@ @@ -2082,7 +2082,7 @@ @@ -2131,7 +2131,7 @@ @@ -2148,7 +2148,7 @@ @@ -2215,7 +2215,7 @@ @@ -2254,7 +2254,7 @@ -

PUBLIC demoteObject (character)

+

demoteObject (character)

@@ -678,6 +678,6 @@

PUBLIC Tr

--> - 04.15.2022 11:52:06 + 04.18.2022 11:20:31 diff --git a/docs/PCTDoc/Spark.Core.Manager.package.html b/docs/PCTDoc/Spark.Core.Manager.package.html index 2942fef5..df113268 100644 --- a/docs/PCTDoc/Spark.Core.Manager.package.html +++ b/docs/PCTDoc/Spark.Core.Manager.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -293,7 +293,7 @@
- 04.15.2022 11:52:49 + 04.18.2022 11:20:41
diff --git a/docs/PCTDoc/Spark.Core.Message.AbstractMessage.html b/docs/PCTDoc/Spark.Core.Message.AbstractMessage.html index a7f86666..739c8eb2 100644 --- a/docs/PCTDoc/Spark.Core.Message.AbstractMessage.html +++ b/docs/PCTDoc/Spark.Core.Message.AbstractMessage.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + F - # + - # + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + F - + + F - + + F - + + - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - + + F - # + A - + + - + + - + +
@@ -2316,7 +2316,7 @@

PUBLIC de -

PROTECTED deserializeMessage (longchar)

+

deserializeMessage (longchar)

@@ -2378,7 +2378,7 @@

PROTECTED -

PROTECTED deserializeMessageFromFile (character)

+

deserializeMessageFromFile (character)

@@ -2440,7 +2440,7 @@

PROTECTED -

PUBLIC CHARACTER getParamAsChar (character)

+

CHARACTER getParamAsChar (character)

@@ -2518,7 +2518,7 @@

PUBLIC CHARACTER getParamAsChar (character, logical)"> -

PUBLIC CHARACTER getParamAsChar (character, logical)

+

CHARACTER getParamAsChar (character, logical)

@@ -2612,7 +2612,7 @@

PUBLIC CHARACTER getParamAsCharEx (character)"> -

PUBLIC CHARACTER getParamAsCharEx (character)

+

CHARACTER getParamAsCharEx (character)

@@ -2690,7 +2690,7 @@

PUBLIC CHARACTER getParamAsCharEx (character, logical)"> -

PUBLIC CHARACTER getParamAsCharEx (character, logical)

+

CHARACTER getParamAsCharEx (character, logical)

@@ -2784,7 +2784,7 @@

PUBLIC CHARACTER getParamAsDate (character)"> -

PUBLIC DATE getParamAsDate (character)

+

DATE getParamAsDate (character)

@@ -2862,7 +2862,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDate (character, logical)

+

DATE getParamAsDate (character, logical)

@@ -2956,7 +2956,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDateEx (character)

+

DATE getParamAsDateEx (character)

@@ -3034,7 +3034,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDateEx (character, logical)

+

DATE getParamAsDateEx (character, logical)

@@ -3128,7 +3128,7 @@

PUBLIC DATE -

PUBLIC DATETIME getParamAsDatetime (character)

+

DATETIME getParamAsDatetime (character)

@@ -3206,7 +3206,7 @@

PUBLIC DATETIME getParamAsDatetime (character, logical)"> -

PUBLIC DATETIME getParamAsDatetime (character, logical)

+

DATETIME getParamAsDatetime (character, logical)

@@ -3300,7 +3300,7 @@

PUBLIC DATETIME getParamAsDatetimeEx (character)"> -

PUBLIC DATETIME getParamAsDatetimeEx (character)

+

DATETIME getParamAsDatetimeEx (character)

@@ -3378,7 +3378,7 @@

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)"> -

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

+

DATETIME getParamAsDatetimeEx (character, logical)

@@ -3472,7 +3472,7 @@

PUBLIC DATETIME getParamAsDatetimeTZ (character)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

+

DATETIME-TZ getParamAsDatetimeTZ (character)

@@ -3550,7 +3550,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

+

DATETIME-TZ getParamAsDatetimeTZ (character, logical)

@@ -3644,7 +3644,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

+

DATETIME-TZ getParamAsDatetimeTZEx (character)

@@ -3722,7 +3722,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

+

DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

@@ -3816,7 +3816,7 @@

PUBLIC DATETIME-TZ getParamAsDec (character)"> -

PUBLIC DECIMAL getParamAsDec (character)

+

DECIMAL getParamAsDec (character)

@@ -3894,7 +3894,7 @@

PUBLIC DECIMAL getParamAsDec (character, logical)"> -

PUBLIC DECIMAL getParamAsDec (character, logical)

+

DECIMAL getParamAsDec (character, logical)

@@ -3988,7 +3988,7 @@

PUBLIC DECIMAL getParamAsDecEx (character)"> -

PUBLIC DECIMAL getParamAsDecEx (character)

+

DECIMAL getParamAsDecEx (character)

@@ -4066,7 +4066,7 @@

PUBLIC DECIMAL getParamAsDecEx (character, logical)"> -

PUBLIC DECIMAL getParamAsDecEx (character, logical)

+

DECIMAL getParamAsDecEx (character, logical)

@@ -4160,7 +4160,7 @@

PUBLIC DECIMAL getParamAsHandle (character, character, handle)"> -

PUBLIC getParamAsHandle (character, character, handle)

+

getParamAsHandle (character, character, handle)

@@ -4254,7 +4254,7 @@

PUBLIC ge -

PUBLIC INTEGER getParamAsInt (character)

+

INTEGER getParamAsInt (character)

@@ -4332,7 +4332,7 @@

PUBLIC INTEGER getParamAsInt (character, logical)"> -

PUBLIC INTEGER getParamAsInt (character, logical)

+

INTEGER getParamAsInt (character, logical)

@@ -4426,7 +4426,7 @@

PUBLIC INTEGER getParamAsInt64 (character)"> -

PUBLIC INT64 getParamAsInt64 (character)

+

INT64 getParamAsInt64 (character)

@@ -4504,7 +4504,7 @@

PUBLIC INT64 getParamAsInt64 (character, logical)"> -

PUBLIC INT64 getParamAsInt64 (character, logical)

+

INT64 getParamAsInt64 (character, logical)

@@ -4598,7 +4598,7 @@

PUBLIC INT64 getParamAsInt64Ex (character)"> -

PUBLIC INT64 getParamAsInt64Ex (character)

+

INT64 getParamAsInt64Ex (character)

@@ -4676,7 +4676,7 @@

PUBLIC INT64 getParamAsInt64Ex (character, logical)"> -

PUBLIC INT64 getParamAsInt64Ex (character, logical)

+

INT64 getParamAsInt64Ex (character, logical)

@@ -4770,7 +4770,7 @@

PUBLIC INT64 getParamAsIntEx (character)"> -

PUBLIC INTEGER getParamAsIntEx (character)

+

INTEGER getParamAsIntEx (character)

@@ -4848,7 +4848,7 @@

PUBLIC INTEGER getParamAsIntEx (character, logical)"> -

PUBLIC INTEGER getParamAsIntEx (character, logical)

+

INTEGER getParamAsIntEx (character, logical)

@@ -4942,7 +4942,7 @@

PUBLIC INTEGER getParamAsJsonArray (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

+

Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

@@ -5020,7 +5020,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

+

Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

@@ -5114,7 +5114,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonObject (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character)

+

Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character)

@@ -5192,7 +5192,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)

+

Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)

@@ -5286,7 +5286,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonText (character)"> -

PUBLIC LONGCHAR getParamAsJsonText (character)

+

LONGCHAR getParamAsJsonText (character)

@@ -5364,7 +5364,7 @@

PUBLIC LONGCHAR getParamAsJsonText (character, logical)"> -

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

+

LONGCHAR getParamAsJsonText (character, logical)

@@ -5458,7 +5458,7 @@

PUBLIC LONGCHAR getParamAsLog (character)"> -

PUBLIC LOGICAL getParamAsLog (character)

+

LOGICAL getParamAsLog (character)

@@ -5536,7 +5536,7 @@

PUBLIC LOGICAL getParamAsLog (character, logical)"> -

PUBLIC LOGICAL getParamAsLog (character, logical)

+

LOGICAL getParamAsLog (character, logical)

@@ -5630,7 +5630,7 @@

PUBLIC LOGICAL getParamAsLogEx (character)"> -

PUBLIC LOGICAL getParamAsLogEx (character)

+

LOGICAL getParamAsLogEx (character)

@@ -5708,7 +5708,7 @@

PUBLIC LOGICAL getParamAsLogEx (character, logical)"> -

PUBLIC LOGICAL getParamAsLogEx (character, logical)

+

LOGICAL getParamAsLogEx (character, logical)

@@ -5802,7 +5802,7 @@

PUBLIC LOGICAL getParamAsLongChar (character)"> -

PUBLIC LONGCHAR getParamAsLongChar (character)

+

LONGCHAR getParamAsLongChar (character)

@@ -5880,7 +5880,7 @@

PUBLIC LONGCHAR getParamAsLongChar (character, logical)"> -

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

+

LONGCHAR getParamAsLongChar (character, logical)

@@ -5974,7 +5974,7 @@

PUBLIC LONGCHAR getParamAsLongCharEx (character)"> -

PUBLIC LONGCHAR getParamAsLongCharEx (character)

+

LONGCHAR getParamAsLongCharEx (character)

@@ -6052,7 +6052,7 @@

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)"> -

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

+

LONGCHAR getParamAsLongCharEx (character, logical)

@@ -6146,7 +6146,7 @@

PUBLIC LONGCHAR getParamAsMemptr (character)"> -

PUBLIC MEMPTR getParamAsMemptr (character)

+

MEMPTR getParamAsMemptr (character)

@@ -6224,7 +6224,7 @@

PUBLIC MEMPTR getParamAsMemptr (character, logical)"> -

PUBLIC MEMPTR getParamAsMemptr (character, logical)

+

MEMPTR getParamAsMemptr (character, logical)

@@ -6318,7 +6318,7 @@

PUBLIC MEMPTR getParamAsMemptrEx (character)"> -

PUBLIC MEMPTR getParamAsMemptrEx (character)

+

MEMPTR getParamAsMemptrEx (character)

@@ -6396,7 +6396,7 @@

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)"> -

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

+

MEMPTR getParamAsMemptrEx (character, logical)

@@ -6490,7 +6490,7 @@

PUBLIC MEMPTR getParamAsRecid (character)"> -

PUBLIC RECID getParamAsRecid (character)

+

RECID getParamAsRecid (character)

@@ -6568,7 +6568,7 @@

PUBLIC RECID getParamAsRecid (character, logical)"> -

PUBLIC RECID getParamAsRecid (character, logical)

+

RECID getParamAsRecid (character, logical)

@@ -6662,7 +6662,7 @@

PUBLIC RECID getParamAsRecidEx (character)"> -

PUBLIC RECID getParamAsRecidEx (character)

+

RECID getParamAsRecidEx (character)

@@ -6740,7 +6740,7 @@

PUBLIC RECID getParamAsRecidEx (character, logical)"> -

PUBLIC RECID getParamAsRecidEx (character, logical)

+

RECID getParamAsRecidEx (character, logical)

@@ -6834,7 +6834,7 @@

PUBLIC RECID getParamAsRowid (character)"> -

PUBLIC ROWID getParamAsRowid (character)

+

ROWID getParamAsRowid (character)

@@ -6912,7 +6912,7 @@

PUBLIC ROWID getParamAsRowid (character, logical)"> -

PUBLIC ROWID getParamAsRowid (character, logical)

+

ROWID getParamAsRowid (character, logical)

@@ -7006,7 +7006,7 @@

PUBLIC ROWID getParamAsRowidEx (character)"> -

PUBLIC ROWID getParamAsRowidEx (character)

+

ROWID getParamAsRowidEx (character)

@@ -7084,7 +7084,7 @@

PUBLIC ROWID getParamAsRowidEx (character, logical)"> -

PUBLIC ROWID getParamAsRowidEx (character, logical)

+

ROWID getParamAsRowidEx (character, logical)

@@ -7178,7 +7178,7 @@

PUBLIC ROWID getParamCount ()"> -

PUBLIC INTEGER getParamCount ()

+

INTEGER getParamCount ()

@@ -7240,7 +7240,7 @@

PUBLIC INTEGER getParamObject ()"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamObject ()

+

Progress.Json.ObjectModel.JsonObject getParamObject ()

@@ -7302,7 +7302,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParams ()"> -

PUBLIC CHARACTER getParams ()

+

CHARACTER getParams ()

@@ -7364,7 +7364,7 @@

PUBLIC CHARACTER getParamType (character)"> -

PUBLIC INTEGER getParamType (character)

+

INTEGER getParamType (character)

@@ -7442,7 +7442,7 @@

PUBLIC INTEGER hasParam (character)"> -

PUBLIC LOGICAL hasParam (character)

+

LOGICAL hasParam (character)

@@ -7520,7 +7520,7 @@

PUBLIC LOGICAL promoteObject (character)"> -

PUBLIC promoteObject (character)

+

promoteObject (character)

@@ -7582,7 +7582,7 @@

PUBLIC pr -

PUBLIC removeParam (character)

+

removeParam (character)

@@ -7644,7 +7644,7 @@

PUBLIC re -

PUBLIC LONGCHAR serializeMessage ()

+

LONGCHAR serializeMessage ()

@@ -7706,7 +7706,7 @@

PUBLIC LONGCHAR setNullParam (character)"> -

PUBLIC setNullParam (character)

+

setNullParam (character)

@@ -7768,7 +7768,7 @@

PUBLIC se -

PUBLIC setParam (character, character)

+

setParam (character, character)

@@ -7846,7 +7846,7 @@

PUBLIC se -

PUBLIC setParam (character, character[])

+

setParam (character, character[])

@@ -7924,7 +7924,7 @@

PUBLIC se -

PUBLIC setParam (character, date)

+

setParam (character, date)

@@ -8002,7 +8002,7 @@

PUBLIC se -

PUBLIC setParam (character, date[])

+

setParam (character, date[])

@@ -8080,7 +8080,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime)

+

setParam (character, datetime)

@@ -8158,7 +8158,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime-tz)

+

setParam (character, datetime-tz)

@@ -8236,7 +8236,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime-tz[])

+

setParam (character, datetime-tz[])

@@ -8314,7 +8314,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime[])

+

setParam (character, datetime[])

@@ -8392,7 +8392,7 @@

PUBLIC se -

PUBLIC setParam (character, decimal)

+

setParam (character, decimal)

@@ -8470,7 +8470,7 @@

PUBLIC se -

PUBLIC setParam (character, decimal[])

+

setParam (character, decimal[])

@@ -8548,7 +8548,7 @@

PUBLIC se -

PUBLIC setParam (character, handle)

+

setParam (character, handle)

@@ -8626,7 +8626,7 @@

PUBLIC se -

PUBLIC setParam (character, handle, logical)

+

setParam (character, handle, logical)

@@ -8720,7 +8720,7 @@

PUBLIC se -

PUBLIC setParam (character, int64)

+

setParam (character, int64)

@@ -8798,7 +8798,7 @@

PUBLIC se -

PUBLIC setParam (character, int64[])

+

setParam (character, int64[])

@@ -8876,7 +8876,7 @@

PUBLIC se -

PUBLIC setParam (character, integer)

+

setParam (character, integer)

@@ -8954,7 +8954,7 @@

PUBLIC se -

PUBLIC setParam (character, integer[])

+

setParam (character, integer[])

@@ -9032,7 +9032,7 @@

PUBLIC se -

PUBLIC setParam (character, JsonArray)

+

setParam (character, JsonArray)

@@ -9110,7 +9110,7 @@

PUBLIC se -

PUBLIC setParam (character, JsonObject)

+

setParam (character, JsonObject)

@@ -9188,7 +9188,7 @@

PUBLIC se -

PUBLIC setParam (character, logical)

+

setParam (character, logical)

@@ -9266,7 +9266,7 @@

PUBLIC se -

PUBLIC setParam (character, logical[])

+

setParam (character, logical[])

@@ -9344,7 +9344,7 @@

PUBLIC se -

PUBLIC setParam (character, longchar)

+

setParam (character, longchar)

@@ -9422,7 +9422,7 @@

PUBLIC se -

PUBLIC setParam (character, longchar[])

+

setParam (character, longchar[])

@@ -9500,7 +9500,7 @@

PUBLIC se -

PUBLIC setParam (character, memptr)

+

setParam (character, memptr)

@@ -9578,7 +9578,7 @@

PUBLIC se -

PUBLIC setParam (character, memptr[])

+

setParam (character, memptr[])

@@ -9656,7 +9656,7 @@

PUBLIC se -

PUBLIC setParam (character, recid)

+

setParam (character, recid)

@@ -9734,7 +9734,7 @@

PUBLIC se -

PUBLIC setParam (character, recid[])

+

setParam (character, recid[])

@@ -9812,7 +9812,7 @@

PUBLIC se -

PUBLIC setParam (character, rowid)

+

setParam (character, rowid)

@@ -9890,7 +9890,7 @@

PUBLIC se -

PUBLIC setParam (character, rowid[])

+

setParam (character, rowid[])

@@ -9968,7 +9968,7 @@

PUBLIC se -

PROTECTED storeProperties ()

+

storeProperties ()

@@ -10032,7 +10032,7 @@

PROTECTED -

PUBLIC AbstractMessage ()

+

AbstractMessage ()

@@ -163,7 +163,7 @@ @@ -189,7 +189,7 @@ @@ -212,7 +212,7 @@ @@ -229,58 +229,7 @@ - - - - - - - - - - - - - - - - - - @@ -300,9707 +249,397 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@ -10078,7 +10078,7 @@

PUBLIC Ab -

PUBLIC AbstractMessage (longchar)

+

AbstractMessage (longchar)

+
@@ -10176,7 +10176,7 @@

PUBLIC Ab -

PUBLIC CHARACTER messageKeyPin

+

CHARACTER messageKeyPin

- - - - - - - - - - - @@ -181,23 +147,6 @@ deserializeMessage (longchar) - - - - - - @@ -206,9741 +155,149 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -10236,6 +10236,6 @@

PUBLIC CHARACTER demoteObject (character) - -

-
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - deserializeMessage (longchar) - - -
-
- - # -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - deserializeMessageFromFile (character) - -
- # - - - - - deserializeMessageFromFile (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParamAsChar (character) - - - -/** -* Get the Parameter value as a character string -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a character string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParamAsChar (character, logical) - - - -/** -* Get the Parameter value as a character string -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as a character string or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParamAsCharEx (character) - - - -/** -* Get the Parameter value as a character extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a character extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParamAsCharEx (character, logical) - - - -/** -* Get the Parameter value as a character extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exist -* @return The Parameter value as a character extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATE getParamAsDate (character) - - - -/** -* Get the Parameter value as a date -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an date -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - DATE getParamAsDate (character, logical) - - - -/** -* Get the Parameter value as a date -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an date or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATE getParamAsDateEx (character) - - - -/** -* Get the Parameter value as a date extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a date extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATE getParamAsDateEx (character, logical) - - - -/** -* Get the Parameter value as a date extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a date extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME getParamAsDatetime (character) - - - -/** -* Get the Parameter value as a datetime -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an datetime -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME getParamAsDatetime (character, logical) - - - -/** -* Get the Parameter value as a datetime -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an datetime or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME getParamAsDatetimeEx (character) - - - -/** -* Get the Parameter value as a datetime extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a datetime extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME getParamAsDatetimeEx (character, logical) - - - -/** -* Get the Parameter value as a datetime extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a datetime extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZ (character) - - - -/** -* Get the Parameter value as a datetime-tz -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an datetime-tz -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZ (character, logical) - - - -/** -* Get the Parameter value as a datetime-tz -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an datetime-tz or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZEx (character) - - - -/** -* Get the Parameter value as a datetime-tz extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a datetime-tz extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZEx (character, logical) - - - -/** -* Get the Parameter value as a datetime-tz extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a datetime-tz extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DECIMAL getParamAsDec (character) - - - -/** -* Get the Parameter value as a decimal -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an decimal -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DECIMAL getParamAsDec (character, logical) - - - -/** -* Get the Parameter value as a decimal -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an decimal or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DECIMAL getParamAsDecEx (character) - - - -/** -* Get the Parameter value as a decimal extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a decimal extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - DECIMAL getParamAsDecEx (character, logical) - - - -/** -* Get the Parameter value as a decimal extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a decimal extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - getParamAsHandle (character, character, handle) - - - -/** Get the Parameter value as a dataset/temp-table -* @param pcParam The name of the Parameter to get -* @param pcMode The mode of the dataset/temp-table (ie. Whether to empty first) -* @param phDataSet The handle of the dataset/temp-table to populate -* @return The Parameter value as a dataset/temp-table -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character) - - - -/** -* Get the Parameter value as a integer -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an integer -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character, logical) - - - -/** -* Get the Parameter value as a integer -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an integer or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character) - - - -/** -* Get the Parameter value as a int64 -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an int64 -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character, logical) - - - -/** -* Get the Parameter value as a int64 -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an int64 or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character) - - - -/** -* Get the Parameter value as a int64 extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a int64 extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character, logical) - - - -/** -* Get the Parameter value as a int64 extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a int64 extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character) - - - -/** -* Get the Parameter value as a integer extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a integer extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character, logical) - - - -/** -* Get the Parameter value as a integer extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a integer extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - JsonArray getParamAsJsonArray (character) - - - -/** -* Get the Parameter value as a JsonArray -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an JsonArray -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - JsonArray getParamAsJsonArray (character, logical) - - - -/** -* Get the Parameter value as a JsonArray -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an JsonArray or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character) - - - -/** -* Get the Parameter value as a JsonObject -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an JsonObject -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character, logical) - - - -/** -* Get the Parameter value as a JsonObject -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an JsonObject or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character) - - - -/** -* Get the Parameter value as plain JSON text -* @param pcParam The name of the Parameter to get -* @return The Parameter value as JSON text -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character, logical) - - - -/** -* Get the Parameter value as plain JSON text -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as JSON text or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character) - - - -/** -* Get the Parameter value as a logical -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an logical -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character, logical) - - - -/** -* Get the Parameter value as a logical -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an logical or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character) - - - -/** -* Get the Parameter value as a logical extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a logical extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character, logical) - - - -/** -* Get the Parameter value as a logical extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a logical extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character) - - - -/** -* Get the Parameter value as a longchar string -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a longchar string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character, logical) - - - -/** -* Get the Parameter value as a longchar string -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as a longchar string or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character) - - - -/** -* Get the Parameter value as a longchar extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a longchar extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character, logical) - - - -/** -* Get the Parameter value as a longchar extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a longchar extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character) - - - -/** -* Get the Parameter value as a memptr -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an memptr -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character, logical) - - - -/** -* Get the Parameter value as a memptr -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an memptr or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character) - - - -/** -* Get the Parameter value as a memptr extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a memptr extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character, logical) - - - -/** -* Get the Parameter value as a memptr extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a memptr extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecid (character) - - - -/** -* Get the Parameter value as a recid -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an recid -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecid (character, logical) - - - -/** -* Get the Parameter value as a recid -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an recid or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character) - - - -/** -* Get the Parameter value as a recid extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a recid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character, logical) - - - -/** -* Get the Parameter value as a recid extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a recid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character) - - - -/** -* Get the Parameter value as a rowid -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an rowid -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character, logical) - - - -/** -* Get the Parameter value as a rowid -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an rowid or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character) - - - -/** -* Get the Parameter value as a rowid extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a rowid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character, logical) - - - -/** -* Get the Parameter value as a rowid extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a rowid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamCount () - - - -/** -* Returns a count of parameters on the request object. -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - JsonObject getParamObject () - - - -/** Return the actual message object -* @return The Message object -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParams () - - - -/** -* Returns an extent of parameters on the request object. -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamType (character) - - - -/** -* Gets JSON data type for the named property. -* The returned integer corresponds to the static integer properties defined in the Progress.Json.ObjectModel.JsonDataType class. -* @param pcParam The name of the Parameter to get -* @return The Parameter type -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - LOGICAL hasParam (character) - - - -/** -* Returns a logical indicating if this message object contains the named parameter. -* @param pcParam The name of the param -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - promoteObject (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - removeParam (character) - - - -/** Remove a parameter from the message object -* @param pcParam The name of the param to be removed -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR serializeMessage () - - - -/** -* Serialize the message for passing through the service interface -* @return A longchar JSON string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setNullParam (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, character[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, date) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, date[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime-tz) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime-tz[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, decimal) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, decimal[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, handle) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, handle, logical) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, int64) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, int64[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, integer) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, integer[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, JsonArray) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, JsonObject) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, logical) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, logical[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, longchar) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, longchar[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, memptr) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, memptr[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, recid) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, recid[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, rowid) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, rowid[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - # - - - - - storeProperties () - - -
Overrides Spark.Core.Message.AbstractMessage:storeProperties () -
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - ConfigMessage () - - -
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - CHARACTER messageKeyPin - - -
Inherited from Spark.Core.Message.AbstractMessage -
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
-
- - Top - - -
-

PUBLIC demoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deserializeMessage (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcMessage - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED deserializeMessage (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcMessage - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deserializeMessageFromFile (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcFile - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED deserializeMessageFromFile (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcFile - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getParamAsHandle (character, character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Get the Parameter value as a dataset/temp-table
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcMode - - CHARACTER - -
- - -
- phData - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonArray getParamAsJsonArray (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonArray getParamAsJsonArray (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamCount ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamObject ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Return the actual message object
-
- - - - - - - - - - - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParams ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamType (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC promoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Remove a parameter from the message object
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR serializeMessage ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setNullParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
- plUseBeforeImage - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, JsonArray)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- poValue - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- poValue - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plValue - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, logical[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plValue - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, longchar[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, memptr)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pmValue - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, memptr[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pmValue - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, recid)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- prValue - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, recid[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - + + + + - - - - - - - + + + + + - - - + + +
- Parameters: -
- pcParam - - CHARACTER - - + + deserializeMessageFromFile (character) + + +
+
- - -
- prValue - - RECID - -
+ + + + + + + storeProperties () + + +
+
- - -
+ + +
+
+ + + + + Constructor Summary + + +
+ + + + + + + + + + + + + -
OptionsNamePurpose
+ + + + + + + ConfigMessage () + + +
+
-
-
-
-
-
+ + + +
+
+ +
+ + + + + Method Detail + + +
+ + + - - - - - - - - @@ -10014,11 +355,11 @@

PUBLIC se

- - - - - - - -
- Top - + Top +
-

PUBLIC setParam (character, rowid)

+

deserializeMessage (longchar)

@@ -9952,12 +309,12 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
@@ -9973,26 +330,10 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- prValue + pcMessage - ROWID + LONGCHAR
- Top - + Top +
-

PUBLIC setParam (character, rowid[])

+

deserializeMessageFromFile (character)

@@ -10030,12 +371,12 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
@@ -10051,7 +392,7 @@

PUBLIC se

- pcParam + pcFile CHARACTER @@ -10064,22 +405,6 @@

PUBLIC se

-
- prValue - - ROWID - -
- -
@@ -10096,7 +421,7 @@

PUBLIC se -

PROTECTED storeProperties ()

+

storeProperties ()

@@ -10113,7 +438,7 @@

PROTECTED

- Overrides Spark.Core.Message.AbstractMessage:storeProperties () +
@@ -10160,7 +485,7 @@

PROTECTED

-

PUBLIC ConfigMessage ()

+

ConfigMessage ()

- - - - - - - - -
@@ -10222,7 +547,7 @@

PUBLIC Co

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -


- - 04.15.2022 11:52:12 + --> + 04.18.2022 11:20:32 diff --git a/docs/PCTDoc/Spark.Core.Message.ContextMessage.html b/docs/PCTDoc/Spark.Core.Message.ContextMessage.html index 671c5e26..5887359d 100644 --- a/docs/PCTDoc/Spark.Core.Message.ContextMessage.html +++ b/docs/PCTDoc/Spark.Core.Message.ContextMessage.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - - + - - + - + - - F - - - demoteObject (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - # - - - - - deserializeMessage (longchar) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - # - - - - deserializeMessageFromFile (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - + - - - CHARACTER getParamAsChar (character) - - - -/** -* Get the Parameter value as a character string -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a character string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - CHARACTER getParamAsChar (character, logical) + LOGICAL hasAnyMessages () /** -* Get the Parameter value as a character string -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as a character string or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage +* Has this response got any messages at all +* +* @return The response contains messages +*/
- + - - - CHARACTER getParamAsCharEx (character) - - - -/** -* Get the Parameter value as a character extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a character extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - CHARACTER getParamAsCharEx (character, logical) + LOGICAL hasErrors () /** -* Get the Parameter value as a character extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exist -* @return The Parameter value as a character extent -*/
Inherited from Spark.Core.Message.AbstractMessage +* Has this response got any Error messages +* +* @return The response contains Error messages +*/
- + - - - DATE getParamAsDate (character) - - - -/** -* Get the Parameter value as a date -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an date -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - DATE getParamAsDate (character, logical) + LOGICAL hasInformation () /** -* Get the Parameter value as a date -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an date or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage +* Has this response got any Information messages +* +* @return The response contains Information messages +*/
- + - - - DATE getParamAsDateEx (character) - - - -/** -* Get the Parameter value as a date extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a date extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - DATE getParamAsDateEx (character, logical) + LOGICAL hasWarnings () /** -* Get the Parameter value as a date extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a date extent -*/
Inherited from Spark.Core.Message.AbstractMessage +* Has this response got any Warning or Information messages +* +* @return The response contains Warning messages +*/
- + + - DATETIME getParamAsDatetime (character) + removeMessages (ErrorTypeEnum) /** -* Get the Parameter value as a datetime -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an datetime -*/
Inherited from Spark.Core.Message.AbstractMessage +* Remove messages by type +*/
- + + - DATETIME getParamAsDatetime (character, logical) + removeWarningMessages () /** -* Get the Parameter value as a datetime -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an datetime or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage +* Remove all Warning and Information (Non-"STOP") type messages +*/
- + + - DATETIME getParamAsDatetimeEx (character) + setContextPropName (character) - -/** -* Get the Parameter value as a datetime extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a datetime extent -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DATETIME getParamAsDatetimeEx (character, logical) + setReturnValueName (character) - -/** -* Get the Parameter value as a datetime extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a datetime extent -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DATETIME-TZ getParamAsDatetimeTZ (character) + storeProperties () -/** -* Get the Parameter value as a datetime-tz -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an datetime-tz -*/
Inherited from Spark.Core.Message.AbstractMessage +/* Not implemented here. */
- + + - DATETIME-TZ getParamAsDatetimeTZ (character, logical) + CHARACTER translateMessage (character) - -/** -* Get the Parameter value as a datetime-tz -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an datetime-tz or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DATETIME-TZ getParamAsDatetimeTZEx (character) + CHARACTER translateMessage (character, integer) - -/** -* Get the Parameter value as a datetime-tz extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a datetime-tz extent -*/
Inherited from Spark.Core.Message.AbstractMessage +
+ + +
+
+ + + + + Constructor Summary + + +
+ + + + + + + + + - + + +
OptionsNamePurpose
- + + - DATETIME-TZ getParamAsDatetimeTZEx (character, logical) + ContextMessage () - -/** -* Get the Parameter value as a datetime-tz extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a datetime-tz extent -*/
Inherited from Spark.Core.Message.AbstractMessage +
+ + + +
+
+ + + + + Property Summary + + +
+ + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- + + - DECIMAL getParamAsDec (character) + CHARACTER ContextPropName - -/** -* Get the Parameter value as a decimal -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an decimal -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DECIMAL getParamAsDec (character, logical) + LOGICAL ReturnValue - -/** -* Get the Parameter value as a decimal -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an decimal or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DECIMAL getParamAsDecEx (character) + CHARACTER ReturnValueName - -/** -* Get the Parameter value as a decimal extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a decimal extent -*/
Inherited from Spark.Core.Message.AbstractMessage +
- + + - DECIMAL getParamAsDecEx (character, logical) - - - -/** -* Get the Parameter value as a decimal extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a decimal extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - getParamAsHandle (character, character, handle) - - - -/** Get the Parameter value as a dataset/temp-table -* @param pcParam The name of the Parameter to get -* @param pcMode The mode of the dataset/temp-table (ie. Whether to empty first) -* @param phDataSet The handle of the dataset/temp-table to populate -* @return The Parameter value as a dataset/temp-table -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character) - - - -/** -* Get the Parameter value as a integer -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an integer -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character, logical) - - - -/** -* Get the Parameter value as a integer -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an integer or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character) - - - -/** -* Get the Parameter value as a int64 -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an int64 -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character, logical) - - - -/** -* Get the Parameter value as a int64 -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an int64 or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character) - - - -/** -* Get the Parameter value as a int64 extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a int64 extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character, logical) - - - -/** -* Get the Parameter value as a int64 extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a int64 extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character) - - - -/** -* Get the Parameter value as a integer extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a integer extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character, logical) - - - -/** -* Get the Parameter value as a integer extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a integer extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character) - - - -/** -* Get the Parameter value as a JsonArray -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an JsonArray -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical) - - - -/** -* Get the Parameter value as a JsonArray -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an JsonArray or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character) - - - -/** -* Get the Parameter value as a JsonObject -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an JsonObject -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical) - - - -/** -* Get the Parameter value as a JsonObject -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an JsonObject or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character) - - - -/** -* Get the Parameter value as plain JSON text -* @param pcParam The name of the Parameter to get -* @return The Parameter value as JSON text -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character, logical) - - - -/** -* Get the Parameter value as plain JSON text -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as JSON text or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character) - - - -/** -* Get the Parameter value as a logical -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an logical -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character, logical) - - - -/** -* Get the Parameter value as a logical -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an logical or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character) - - - -/** -* Get the Parameter value as a logical extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a logical extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character, logical) - - - -/** -* Get the Parameter value as a logical extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a logical extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character) - - - -/** -* Get the Parameter value as a longchar string -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a longchar string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character, logical) - - - -/** -* Get the Parameter value as a longchar string -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as a longchar string or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character) - - - -/** -* Get the Parameter value as a longchar extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a longchar extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character, logical) - - - -/** -* Get the Parameter value as a longchar extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a longchar extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character) - - - -/** -* Get the Parameter value as a memptr -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an memptr -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character, logical) - - - -/** -* Get the Parameter value as a memptr -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an memptr or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character) - - - -/** -* Get the Parameter value as a memptr extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a memptr extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character, logical) - - - -/** -* Get the Parameter value as a memptr extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a memptr extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecid (character) - - - -/** -* Get the Parameter value as a recid -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an recid -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecid (character, logical) - - - -/** -* Get the Parameter value as a recid -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an recid or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character) - - - -/** -* Get the Parameter value as a recid extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a recid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character, logical) - - - -/** -* Get the Parameter value as a recid extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a recid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character) - - - -/** -* Get the Parameter value as a rowid -* @param pcParam The name of the Parameter to get -* @return The Parameter value as an rowid -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character, logical) - - - -/** -* Get the Parameter value as a rowid -* @param pcParam The name of the Parameter to get -* @param plOptionalParam if true then don't throw an error if the parameter does not exits -* @return The Parameter value as an rowid or undefined in not found -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character) - - - -/** -* Get the Parameter value as a rowid extent -* @param pcParam The name of the Parameter to get -* @return The Parameter value as a rowid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character, logical) - - - -/** -* Get the Parameter value as a rowid extent -* @param pcParam The name of the Parameter to get -* @param plOptionalParam If true then don't throw an error if the parameter does not exits -* @return The Parameter value as a rowid extent -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamCount () - - - -/** -* Returns a count of parameters on the request object. -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonObject getParamObject () - - - -/** Return the actual message object -* @return The Message object -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - CHARACTER getParams () - - - -/** -* Returns an extent of parameters on the request object. -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - INTEGER getParamType (character) - - - -/** -* Gets JSON data type for the named property. -* The returned integer corresponds to the static integer properties defined in the Progress.Json.ObjectModel.JsonDataType class. -* @param pcParam The name of the Parameter to get -* @return The Parameter type -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL hasAnyMessages () - - - -/** -* Has this response got any messages at all -* -* @return The response contains messages -*/
-
- - + - - - - - LOGICAL hasErrors () - - - -/** -* Has this response got any Error messages -* -* @return The response contains Error messages -*/
-
- - + - - - - - LOGICAL hasInformation () - - - -/** -* Has this response got any Information messages -* -* @return The response contains Information messages -*/
-
- - + - - F - - - LOGICAL hasParam (character) - - - -/** -* Returns a logical indicating if this message object contains the named parameter. -* @param pcParam The name of the param -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL hasWarnings () - - - -/** -* Has this response got any Warning or Information messages -* -* @return The response contains Warning messages -*/
-
- - + - - F - - - promoteObject (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - removeMessages (ErrorTypeEnum) - - - -/** -* Remove messages by type -*/
-
- - + - - F - - - removeParam (character) - - - -/** Remove a parameter from the message object -* @param pcParam The name of the param to be removed -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - removeWarningMessages () - - - -/** -* Remove all Warning and Information (Non-"STOP") type messages -*/
-
- - + - - - - - LONGCHAR serializeMessage () - - - -/** -* Serialize the message for passing through the service interface -* @return A longchar JSON string -*/
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - setContextPropName (character) - - -
-
- - + - - F - - - setNullParam (character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, character) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, character[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, date) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, date[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime-tz) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime-tz[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, datetime[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, decimal) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, decimal[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, handle) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, handle, logical) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, int64) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, int64[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, integer) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, integer[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, JsonArray) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, JsonObject) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, logical) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, logical[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, longchar) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, longchar[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, memptr) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, memptr[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, recid) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, recid[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, rowid) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - F - - - setParam (character, rowid[]) - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - setReturnValueName (character) - - -
-
- - # - - - - - storeProperties () - - - -/* Not implemented here. */
Overrides Spark.Core.Message.AbstractMessage:storeProperties () -
- - - - - - - - CHARACTER translateMessage (character) - - -
-
- - - - - - - - CHARACTER translateMessage (character, integer) - - -
-
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - ContextMessage () - - -
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - CHARACTER ContextPropName - - -
-
- - + - - - - - CHARACTER messageKeyPin - - -
Inherited from Spark.Core.Message.AbstractMessage -
- - + - - - - - LOGICAL ReturnValue - - -
-
- - + - - - - - CHARACTER ReturnValueName - - -
-
- - # - - - - - CHARACTER ValidationErrorTableName - - -
-
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
-
- - Top - - -
-

PUBLIC addMessage (ErrorTypeEnum, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
- pcMessage - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC addMessage (ErrorTypeEnum, character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
- pcMsgGroup - - CHARACTER - -
- - -
- piMsgNumber - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE createMessage (character, character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcmsgType - - CHARACTER - -
- - -
- pcMessage - - CHARACTER - -
- - -
- pcOrigmsgTxt - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE createMessage (character, character, character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcmsgType - - CHARACTER - -
- - -
- pcMessage - - CHARACTER - -
- - -
- pcMsgGroup - - CHARACTER - -
- - -
- piMsgNumber - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC demoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED deserializeMessage (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcMessage - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED deserializeMessageFromFile (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcFile - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getMessageArray ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getParamAsHandle (character, character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Get the Parameter value as a dataset/temp-table
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcMode - - CHARACTER - -
- - -
- phData - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamCount ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonObject getParamObject ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Return the actual message object
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParams ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamType (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasAnyMessages ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasErrors ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasInformation ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasWarnings ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC promoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeMessages (ErrorTypeEnum)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose: Remove a parameter from the message object
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeWarningMessages ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR serializeMessage ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setContextPropName (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcName - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setNullParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
- plUseBeforeImage - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - + CHARACTER ValidationErrorTableName + + + -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - - +
+
-
-
-
-
-
+ +
+
+ +
+ + + + + Method Detail + + +
+ + +
- Top - + Top +
-

PUBLIC setParam (character, int64[])

+

addMessage (ErrorTypeEnum, character)

@@ -10012,16 +651,16 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
@@ -10033,10 +672,10 @@

PUBLIC se

@@ -10049,10 +688,10 @@

PUBLIC se

@@ -10074,11 +713,11 @@

PUBLIC se

- -
- pcParam + poMsgType - CHARACTER + Spark.Core.Util.ErrorTypeEnum
- piValue + pcMessage - INT64 + CHARACTER
- Top - + Top +
-

PUBLIC setParam (character, integer)

+

addMessage (ErrorTypeEnum, character, integer)

@@ -10090,16 +729,16 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
@@ -10111,10 +750,10 @@

PUBLIC se

@@ -10127,69 +766,7 @@

PUBLIC se

- - - - - - - -
- pcParam + poMsgType - CHARACTER + Spark.Core.Util.ErrorTypeEnum
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Parameters: -
- pcParam + pcMsgGroup CHARACTER @@ -10205,7 +782,7 @@

PUBLIC se

- piValue + piMsgNumber INTEGER @@ -10230,11 +807,11 @@

PUBLIC se

- Top - + Top +
-

PUBLIC setParam (character, JsonArray)

+

createMessage (character, character, character)

@@ -10246,16 +823,16 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
@@ -10267,7 +844,7 @@

PUBLIC se

- - - - - - - -
- pcParam + pcmsgType CHARACTER @@ -10283,69 +860,7 @@

PUBLIC se

- poValue - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - @@ -10386,11 +901,11 @@

PUBLIC se

@@ -10453,55 +968,9 @@

PUBLIC se

- -
- Parameters: -
- pcParam + pcMessage CHARACTER @@ -10361,10 +876,10 @@

PUBLIC se

- poValue + pcOrigmsgTxt - Progress.Json.ObjectModel.JsonObject + CHARACTER
- Top - + Top +
-

PUBLIC setParam (character, logical)

+

createMessage (character, character, character, integer)

@@ -10402,12 +917,12 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
@@ -10423,7 +938,7 @@

PUBLIC se

- pcParam + pcmsgType CHARACTER @@ -10439,10 +954,10 @@

PUBLIC se

- plValue + pcMessage - LOGICAL + CHARACTER
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, logical[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - + @@ -10542,11 +1011,11 @@

PUBLIC se

- Parameters: -
- pcParam + pcMsgGroup CHARACTER @@ -10517,10 +986,10 @@

PUBLIC se

- plValue + piMsgNumber - LOGICAL + INTEGER
- Top - + Top +
-

PUBLIC setParam (character, longchar)

+

Progress.Json.ObjectModel.JsonArray getMessageArray ()

@@ -10558,47 +1027,31 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- - - - - + - - - - - - - - @@ -10620,11 +1073,11 @@

PUBLIC se

- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue + Returns - LONGCHAR + Progress.Json.ObjectModel.JsonArray
- Top - + Top +
-

PUBLIC setParam (character, longchar[])

+

LOGICAL hasAnyMessages ()

@@ -10636,47 +1089,31 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10698,11 +1135,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pcValue + Returns - LONGCHAR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, memptr)

+

LOGICAL hasErrors ()

@@ -10714,47 +1151,31 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10776,11 +1197,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pmValue + Returns - MEMPTR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, memptr[])

+

LOGICAL hasInformation ()

@@ -10792,47 +1213,31 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10854,11 +1259,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pmValue + Returns - MEMPTR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, recid)

+

LOGICAL hasWarnings ()

@@ -10870,47 +1275,31 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10932,11 +1321,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- prValue + Returns - RECID + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, recid[])

+

removeMessages (ErrorTypeEnum)

@@ -10948,16 +1337,16 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
@@ -10969,26 +1358,10 @@

PUBLIC se

- - - - - - - - @@ -11010,11 +1383,11 @@

PUBLIC se

- - - - - - - -
- pcParam - - CHARACTER - -
- - -
- prValue + poMsgType - RECID + Spark.Core.Util.ErrorTypeEnum
- Top - + Top +
-

PUBLIC setParam (character, rowid)

+

removeWarningMessages ()

@@ -11026,58 +1399,26 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
-
+
Purpose:
- + - - - - - - - - - - - - - - - - -
- pcParam - - CHARACTER - -
- - -
- prValue - - ROWID - -
- - -
@@ -11088,11 +1429,11 @@

PUBLIC se

- Top - + Top +
-

PUBLIC setParam (character, rowid[])

+

setContextPropName (character)

@@ -11104,12 +1445,12 @@

PUBLIC se

-
+
- Inherited from Spark.Core.Message.AbstractMessage +
@@ -11125,7 +1466,7 @@

PUBLIC se

- pcParam + pcName CHARACTER @@ -11138,22 +1479,6 @@

PUBLIC se

-
- prValue - - ROWID - -
- -
@@ -11170,7 +1495,7 @@

PUBLIC se

-

PUBLIC setReturnValueName (character)

+

setReturnValueName (character)

@@ -11232,7 +1557,7 @@

PUBLIC se -

PROTECTED storeProperties ()

+

storeProperties ()

@@ -11249,7 +1574,7 @@

PROTECTED

- Overrides Spark.Core.Message.AbstractMessage:storeProperties () +
@@ -11278,7 +1603,7 @@

PROTECTED

-

PRIVATE CHARACTER translateMessage (character)

+

CHARACTER translateMessage (character)

@@ -11356,7 +1681,7 @@

PRIVATE CHARACTER translateMessage (character, integer)"> -

PRIVATE CHARACTER translateMessage (character, integer)

+

CHARACTER translateMessage (character, integer)

@@ -11468,7 +1793,7 @@

PRIVATE CHARACTER ContextMessage ()"> -

PUBLIC ContextMessage ()

+

ContextMessage ()

@@ -11550,7 +1875,7 @@

PUBLIC Co -

PUBLIC CHARACTER ContextPropName

+

CHARACTER ContextPropName

@@ -11596,68 +1921,6 @@

PUBLIC CHARACTER messageKeyPin"> - - -

PUBLIC CHARACTER messageKeyPin

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.AbstractMessage -
-
-
-
-
- - - - - - - - - -
- Returns - - CHARACTER - -
- -
@@ -11674,7 +1937,7 @@

PUBLIC CHARACTER ReturnValue">

-

PUBLIC LOGICAL ReturnValue

+

LOGICAL ReturnValue

@@ -11736,7 +1999,7 @@

PUBLIC LOGICAL ReturnValueName"> -

PUBLIC CHARACTER ReturnValueName

+

CHARACTER ReturnValueName

@@ -11798,7 +2061,7 @@

PUBLIC CHARACTER ValidationErrorTableName"> -

PROTECTED CHARACTER ValidationErrorTableName

+

CHARACTER ValidationErrorTableName

@@ -11858,6 +2121,6 @@

PROTECTED CHARACTER demoteObject (character)"> -

PUBLIC demoteObject (character)

+

demoteObject (character)

@@ -1889,7 +1889,7 @@

PUBLIC de -

PUBLIC CHARACTER getParamAsChar (character)

+

CHARACTER getParamAsChar (character)

@@ -1967,7 +1967,7 @@

PUBLIC CHARACTER getParamAsChar (character, logical)"> -

PUBLIC CHARACTER getParamAsChar (character, logical)

+

CHARACTER getParamAsChar (character, logical)

@@ -2061,7 +2061,7 @@

PUBLIC CHARACTER getParamAsCharEx (character)"> -

PUBLIC CHARACTER getParamAsCharEx (character)

+

CHARACTER getParamAsCharEx (character)

@@ -2139,7 +2139,7 @@

PUBLIC CHARACTER getParamAsCharEx (character, logical)"> -

PUBLIC CHARACTER getParamAsCharEx (character, logical)

+

CHARACTER getParamAsCharEx (character, logical)

@@ -2233,7 +2233,7 @@

PUBLIC CHARACTER getParamAsDate (character)"> -

PUBLIC DATE getParamAsDate (character)

+

DATE getParamAsDate (character)

@@ -2311,7 +2311,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDate (character, logical)

+

DATE getParamAsDate (character, logical)

@@ -2405,7 +2405,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDateEx (character)

+

DATE getParamAsDateEx (character)

@@ -2483,7 +2483,7 @@

PUBLIC DATE -

PUBLIC DATE getParamAsDateEx (character, logical)

+

DATE getParamAsDateEx (character, logical)

@@ -2577,7 +2577,7 @@

PUBLIC DATE -

PUBLIC DATETIME getParamAsDatetime (character)

+

DATETIME getParamAsDatetime (character)

@@ -2655,7 +2655,7 @@

PUBLIC DATETIME getParamAsDatetime (character, logical)"> -

PUBLIC DATETIME getParamAsDatetime (character, logical)

+

DATETIME getParamAsDatetime (character, logical)

@@ -2749,7 +2749,7 @@

PUBLIC DATETIME getParamAsDatetimeEx (character)"> -

PUBLIC DATETIME getParamAsDatetimeEx (character)

+

DATETIME getParamAsDatetimeEx (character)

@@ -2827,7 +2827,7 @@

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)"> -

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

+

DATETIME getParamAsDatetimeEx (character, logical)

@@ -2921,7 +2921,7 @@

PUBLIC DATETIME getParamAsDatetimeTZ (character)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

+

DATETIME-TZ getParamAsDatetimeTZ (character)

@@ -2999,7 +2999,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

+

DATETIME-TZ getParamAsDatetimeTZ (character, logical)

@@ -3093,7 +3093,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

+

DATETIME-TZ getParamAsDatetimeTZEx (character)

@@ -3171,7 +3171,7 @@

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)"> -

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

+

DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

@@ -3265,7 +3265,7 @@

PUBLIC DATETIME-TZ getParamAsDec (character)"> -

PUBLIC DECIMAL getParamAsDec (character)

+

DECIMAL getParamAsDec (character)

@@ -3343,7 +3343,7 @@

PUBLIC DECIMAL getParamAsDec (character, logical)"> -

PUBLIC DECIMAL getParamAsDec (character, logical)

+

DECIMAL getParamAsDec (character, logical)

@@ -3437,7 +3437,7 @@

PUBLIC DECIMAL getParamAsDecEx (character)"> -

PUBLIC DECIMAL getParamAsDecEx (character)

+

DECIMAL getParamAsDecEx (character)

@@ -3515,7 +3515,7 @@

PUBLIC DECIMAL getParamAsDecEx (character, logical)"> -

PUBLIC DECIMAL getParamAsDecEx (character, logical)

+

DECIMAL getParamAsDecEx (character, logical)

@@ -3609,7 +3609,7 @@

PUBLIC DECIMAL getParamAsHandle (character, character, handle)"> -

PUBLIC getParamAsHandle (character, character, handle)

+

getParamAsHandle (character, character, handle)

@@ -3703,7 +3703,7 @@

PUBLIC ge -

PUBLIC INTEGER getParamAsInt (character)

+

INTEGER getParamAsInt (character)

@@ -3781,7 +3781,7 @@

PUBLIC INTEGER getParamAsInt (character, logical)"> -

PUBLIC INTEGER getParamAsInt (character, logical)

+

INTEGER getParamAsInt (character, logical)

@@ -3875,7 +3875,7 @@

PUBLIC INTEGER getParamAsInt64 (character)"> -

PUBLIC INT64 getParamAsInt64 (character)

+

INT64 getParamAsInt64 (character)

@@ -3953,7 +3953,7 @@

PUBLIC INT64 getParamAsInt64 (character, logical)"> -

PUBLIC INT64 getParamAsInt64 (character, logical)

+

INT64 getParamAsInt64 (character, logical)

@@ -4047,7 +4047,7 @@

PUBLIC INT64 getParamAsInt64Ex (character)"> -

PUBLIC INT64 getParamAsInt64Ex (character)

+

INT64 getParamAsInt64Ex (character)

@@ -4125,7 +4125,7 @@

PUBLIC INT64 getParamAsInt64Ex (character, logical)"> -

PUBLIC INT64 getParamAsInt64Ex (character, logical)

+

INT64 getParamAsInt64Ex (character, logical)

@@ -4219,7 +4219,7 @@

PUBLIC INT64 getParamAsIntEx (character)"> -

PUBLIC INTEGER getParamAsIntEx (character)

+

INTEGER getParamAsIntEx (character)

@@ -4297,7 +4297,7 @@

PUBLIC INTEGER getParamAsIntEx (character, logical)"> -

PUBLIC INTEGER getParamAsIntEx (character, logical)

+

INTEGER getParamAsIntEx (character, logical)

@@ -4391,7 +4391,7 @@

PUBLIC INTEGER getParamAsJsonArray (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

+

Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

@@ -4469,7 +4469,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

+

Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

@@ -4563,7 +4563,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonObject (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character)

+

Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character)

@@ -4641,7 +4641,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)

+

Progress.Json.ObjectModel.JsonObject getParamAsJsonObject (character, logical)

@@ -4735,7 +4735,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParamAsJsonText (character)"> -

PUBLIC LONGCHAR getParamAsJsonText (character)

+

LONGCHAR getParamAsJsonText (character)

@@ -4813,7 +4813,7 @@

PUBLIC LONGCHAR getParamAsJsonText (character, logical)"> -

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

+

LONGCHAR getParamAsJsonText (character, logical)

@@ -4907,7 +4907,7 @@

PUBLIC LONGCHAR getParamAsLog (character)"> -

PUBLIC LOGICAL getParamAsLog (character)

+

LOGICAL getParamAsLog (character)

@@ -4985,7 +4985,7 @@

PUBLIC LOGICAL getParamAsLog (character, logical)"> -

PUBLIC LOGICAL getParamAsLog (character, logical)

+

LOGICAL getParamAsLog (character, logical)

@@ -5079,7 +5079,7 @@

PUBLIC LOGICAL getParamAsLogEx (character)"> -

PUBLIC LOGICAL getParamAsLogEx (character)

+

LOGICAL getParamAsLogEx (character)

@@ -5157,7 +5157,7 @@

PUBLIC LOGICAL getParamAsLogEx (character, logical)"> -

PUBLIC LOGICAL getParamAsLogEx (character, logical)

+

LOGICAL getParamAsLogEx (character, logical)

@@ -5251,7 +5251,7 @@

PUBLIC LOGICAL getParamAsLongChar (character)"> -

PUBLIC LONGCHAR getParamAsLongChar (character)

+

LONGCHAR getParamAsLongChar (character)

@@ -5329,7 +5329,7 @@

PUBLIC LONGCHAR getParamAsLongChar (character, logical)"> -

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

+

LONGCHAR getParamAsLongChar (character, logical)

@@ -5423,7 +5423,7 @@

PUBLIC LONGCHAR getParamAsLongCharEx (character)"> -

PUBLIC LONGCHAR getParamAsLongCharEx (character)

+

LONGCHAR getParamAsLongCharEx (character)

@@ -5501,7 +5501,7 @@

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)"> -

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

+

LONGCHAR getParamAsLongCharEx (character, logical)

@@ -5595,7 +5595,7 @@

PUBLIC LONGCHAR getParamAsMemptr (character)"> -

PUBLIC MEMPTR getParamAsMemptr (character)

+

MEMPTR getParamAsMemptr (character)

@@ -5673,7 +5673,7 @@

PUBLIC MEMPTR getParamAsMemptr (character, logical)"> -

PUBLIC MEMPTR getParamAsMemptr (character, logical)

+

MEMPTR getParamAsMemptr (character, logical)

@@ -5767,7 +5767,7 @@

PUBLIC MEMPTR getParamAsMemptrEx (character)"> -

PUBLIC MEMPTR getParamAsMemptrEx (character)

+

MEMPTR getParamAsMemptrEx (character)

@@ -5845,7 +5845,7 @@

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)"> -

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

+

MEMPTR getParamAsMemptrEx (character, logical)

@@ -5939,7 +5939,7 @@

PUBLIC MEMPTR getParamAsRecid (character)"> -

PUBLIC RECID getParamAsRecid (character)

+

RECID getParamAsRecid (character)

@@ -6017,7 +6017,7 @@

PUBLIC RECID getParamAsRecid (character, logical)"> -

PUBLIC RECID getParamAsRecid (character, logical)

+

RECID getParamAsRecid (character, logical)

@@ -6111,7 +6111,7 @@

PUBLIC RECID getParamAsRecidEx (character)"> -

PUBLIC RECID getParamAsRecidEx (character)

+

RECID getParamAsRecidEx (character)

@@ -6189,7 +6189,7 @@

PUBLIC RECID getParamAsRecidEx (character, logical)"> -

PUBLIC RECID getParamAsRecidEx (character, logical)

+

RECID getParamAsRecidEx (character, logical)

@@ -6283,7 +6283,7 @@

PUBLIC RECID getParamAsRowid (character)"> -

PUBLIC ROWID getParamAsRowid (character)

+

ROWID getParamAsRowid (character)

@@ -6361,7 +6361,7 @@

PUBLIC ROWID getParamAsRowid (character, logical)"> -

PUBLIC ROWID getParamAsRowid (character, logical)

+

ROWID getParamAsRowid (character, logical)

@@ -6455,7 +6455,7 @@

PUBLIC ROWID getParamAsRowidEx (character)"> -

PUBLIC ROWID getParamAsRowidEx (character)

+

ROWID getParamAsRowidEx (character)

@@ -6533,7 +6533,7 @@

PUBLIC ROWID getParamAsRowidEx (character, logical)"> -

PUBLIC ROWID getParamAsRowidEx (character, logical)

+

ROWID getParamAsRowidEx (character, logical)

@@ -6627,7 +6627,7 @@

PUBLIC ROWID getParamCount ()"> -

PUBLIC INTEGER getParamCount ()

+

INTEGER getParamCount ()

@@ -6689,7 +6689,7 @@

PUBLIC INTEGER getParamObject ()"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParamObject ()

+

Progress.Json.ObjectModel.JsonObject getParamObject ()

@@ -6751,7 +6751,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParams ()"> -

PUBLIC CHARACTER getParams ()

+

CHARACTER getParams ()

@@ -6813,7 +6813,7 @@

PUBLIC CHARACTER getParamType (character)"> -

PUBLIC INTEGER getParamType (character)

+

INTEGER getParamType (character)

@@ -6891,7 +6891,7 @@

PUBLIC INTEGER hasParam (character)"> -

PUBLIC LOGICAL hasParam (character)

+

LOGICAL hasParam (character)

@@ -6969,7 +6969,7 @@

PUBLIC LOGICAL promoteObject (character)"> -

PUBLIC promoteObject (character)

+

promoteObject (character)

@@ -7031,7 +7031,7 @@

PUBLIC pr -

PUBLIC removeParam (character)

+

removeParam (character)

@@ -7093,7 +7093,7 @@

PUBLIC re -

PUBLIC LONGCHAR serializeMessage ()

+

LONGCHAR serializeMessage ()

@@ -7155,7 +7155,7 @@

PUBLIC LONGCHAR setNullParam (character)"> -

PUBLIC setNullParam (character)

+

setNullParam (character)

@@ -7217,7 +7217,7 @@

PUBLIC se -

PUBLIC setParam (character, character)

+

setParam (character, character)

@@ -7295,7 +7295,7 @@

PUBLIC se -

PUBLIC setParam (character, character[])

+

setParam (character, character[])

@@ -7373,7 +7373,7 @@

PUBLIC se -

PUBLIC setParam (character, date)

+

setParam (character, date)

@@ -7451,7 +7451,7 @@

PUBLIC se -

PUBLIC setParam (character, date[])

+

setParam (character, date[])

@@ -7529,7 +7529,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime)

+

setParam (character, datetime)

@@ -7607,7 +7607,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime-tz)

+

setParam (character, datetime-tz)

@@ -7685,7 +7685,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime-tz[])

+

setParam (character, datetime-tz[])

@@ -7763,7 +7763,7 @@

PUBLIC se -

PUBLIC setParam (character, datetime[])

+

setParam (character, datetime[])

@@ -7841,7 +7841,7 @@

PUBLIC se -

PUBLIC setParam (character, decimal)

+

setParam (character, decimal)

@@ -7919,7 +7919,7 @@

PUBLIC se -

PUBLIC setParam (character, decimal[])

+

setParam (character, decimal[])

@@ -7997,7 +7997,7 @@

PUBLIC se -

PUBLIC setParam (character, handle)

+

setParam (character, handle)

@@ -8075,7 +8075,7 @@

PUBLIC se -

PUBLIC setParam (character, handle, logical)

+

setParam (character, handle, logical)

@@ -8169,7 +8169,7 @@

PUBLIC se -

PUBLIC setParam (character, int64)

+

setParam (character, int64)

@@ -8247,7 +8247,7 @@

PUBLIC se -

PUBLIC setParam (character, int64[])

+

setParam (character, int64[])

@@ -8325,7 +8325,7 @@

PUBLIC se -

PUBLIC setParam (character, integer)

+

setParam (character, integer)

@@ -8403,7 +8403,7 @@

PUBLIC se -

PUBLIC setParam (character, integer[])

+

setParam (character, integer[])

@@ -8481,7 +8481,7 @@

PUBLIC se -

PUBLIC setParam (character, JsonArray)

+

setParam (character, JsonArray)

@@ -8559,7 +8559,7 @@

PUBLIC se -

PUBLIC setParam (character, JsonObject)

+

setParam (character, JsonObject)

@@ -8637,7 +8637,7 @@

PUBLIC se -

PUBLIC setParam (character, logical)

+

setParam (character, logical)

@@ -8715,7 +8715,7 @@

PUBLIC se -

PUBLIC setParam (character, logical[])

+

setParam (character, logical[])

@@ -8793,7 +8793,7 @@

PUBLIC se -

PUBLIC setParam (character, longchar)

+

setParam (character, longchar)

@@ -8871,7 +8871,7 @@

PUBLIC se -

PUBLIC setParam (character, longchar[])

+

setParam (character, longchar[])

@@ -8949,7 +8949,7 @@

PUBLIC se -

PUBLIC setParam (character, memptr)

+

setParam (character, memptr)

-
@@ -9027,7 +9027,7 @@

PUBLIC se -

PUBLIC setParam (character, memptr[])

+

setParam (character, memptr[])

- @@ -9605,69 +623,7 @@

PUBLIC se

- - - - - - - -
@@ -9105,7 +9105,7 @@

PUBLIC se -

PUBLIC setParam (character, recid)

+

setParam (character, recid)

+ + +
@@ -9183,7 +9183,7 @@

PUBLIC se -

PUBLIC setParam (character, recid[])

+

setParam (character, recid[])

@@ -155,7 +155,7 @@ @@ -172,25 +172,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@ -9261,7 +9261,7 @@

PUBLIC se -

PUBLIC setParam (character, rowid)

+

setParam (character, rowid)

+
@@ -9339,7 +9339,7 @@

PUBLIC se -

PUBLIC setParam (character, rowid[])

+

setParam (character, rowid[])

- - - - - - - - -
@@ -9471,7 +9471,7 @@

PUBLIC se -

PUBLIC CHARACTER messageKeyPin

+

CHARACTER messageKeyPin

- - - - - @@ -185,9241 +168,102 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@@ -9531,6 +9531,6 @@

PUBLIC CHARACTER demoteObject (character) - -

-
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - @@ -172,7 +155,7 @@ - + +
- - + - - - - - CHARACTER getParamAsChar (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - CHARACTER getParamAsChar (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - CHARACTER getParamAsCharEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - CHARACTER getParamAsCharEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATE getParamAsDate (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATE getParamAsDate (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATE getParamAsDateEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATE getParamAsDateEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME getParamAsDatetime (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME getParamAsDatetime (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME getParamAsDatetimeEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME getParamAsDatetimeEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZ (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZ (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DATETIME-TZ getParamAsDatetimeTZEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DECIMAL getParamAsDec (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DECIMAL getParamAsDec (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DECIMAL getParamAsDecEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - DECIMAL getParamAsDecEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - getParamAsHandle (character, character, handle) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonArray getParamAsJsonArray (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonArray getParamAsJsonArray (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecid (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecid (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamCount () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamObject () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - CHARACTER getParams () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamType (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL hasParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - promoteObject (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - removeParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR serializeMessage () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setNullParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, character[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, date) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, date[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime-tz) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime-tz[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, decimal) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, decimal[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, handle) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, handle, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, int64) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, int64[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, integer) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, integer[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, JsonArray) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, JsonObject) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, logical[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, longchar) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, longchar[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, memptr) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, memptr[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, recid) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, recid[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, rowid) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, rowid[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - CHARACTER messageKeyPin - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
-
- - Top - - -
-

PUBLIC demoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deserializeMessage (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcMessage - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deserializeMessageFromFile (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcFile - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getParamAsHandle (character, character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcMode - - CHARACTER - -
- - -
- phData - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonArray getParamAsJsonArray (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonArray getParamAsJsonArray (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamCount ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamObject ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParams ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamType (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC promoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR serializeMessage ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setNullParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
- plBefore - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, JsonArray)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- poValue - - JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- poValue - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plValue - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, logical[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plValue - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, longchar[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, memptr)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pmValue - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - + +
+ + + + +
+
+ +
+ + + + + Method Detail + + +
+ + + - - - - - - - - @@ -9493,11 +321,11 @@

PUBLIC se

- - - - - - - -
- Top - + Top +
-

PUBLIC setParam (character, rowid)

+

deserializeMessage (longchar)

@@ -9436,7 +280,7 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
@@ -9452,26 +296,10 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- prValue + pcMessage - ROWID + LONGCHAR
- Top - + Top +
-

PUBLIC setParam (character, rowid[])

+

deserializeMessageFromFile (character)

@@ -9514,7 +342,7 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
@@ -9530,7 +358,7 @@

PUBLIC se

- pcParam + pcFile CHARACTER @@ -9543,22 +371,6 @@

PUBLIC se

-
- prValue - - ROWID - -
- -
@@ -9609,7 +421,7 @@

PUBLIC se

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -


- - 04.15.2022 11:52:23 + --> + 04.18.2022 11:20:33 diff --git a/docs/PCTDoc/Spark.Core.Message.IContextMessage.html b/docs/PCTDoc/Spark.Core.Message.IContextMessage.html index 5626cc14..6faa995c 100644 --- a/docs/PCTDoc/Spark.Core.Message.IContextMessage.html +++ b/docs/PCTDoc/Spark.Core.Message.IContextMessage.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - + - - - demoteObject (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - @@ -209,9198 +192,311 @@ - + - - - - CHARACTER getParamAsChar (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - CHARACTER getParamAsChar (character, logical) + LOGICAL hasAnyMessages () -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Has this response got any messages at all +* +* @return The response contains messages +*/
- + - - - - CHARACTER getParamAsCharEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - CHARACTER getParamAsCharEx (character, logical) + LOGICAL hasErrors () -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Has this response got any Error messages +* +* @return The response contains Error messages +*/
- + - - - - DATE getParamAsDate (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - DATE getParamAsDate (character, logical) + LOGICAL hasInformation () -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Has this response got any Information messages +* +* @return The response contains Information messages +*/
- + - - - - DATE getParamAsDateEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - DATE getParamAsDateEx (character, logical) + LOGICAL hasWarnings () -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Has this response got any Warning or Information messages +* +* @return The response contains Warning messages +*/
- + - - - - DATETIME getParamAsDatetime (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - DATETIME getParamAsDatetime (character, logical) + removeMessages (ErrorTypeEnum) -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Remove messages by type +*/
- + - - - - DATETIME getParamAsDatetimeEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - DATETIME getParamAsDatetimeEx (character, logical) + removeWarningMessages () -
Inherited from Spark.Core.Message.IAbstractMessage + +/** +* Remove all Warning and Information (Non STOP) type messages +*/
- + - - - - DATETIME-TZ getParamAsDatetimeTZ (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - DATETIME-TZ getParamAsDatetimeTZ (character, logical) + setContextPropName (character) -
Inherited from Spark.Core.Message.IAbstractMessage +
- + - - - DATETIME-TZ getParamAsDatetimeTZEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - DATETIME-TZ getParamAsDatetimeTZEx (character, logical) + setReturnValueName (character) -
Inherited from Spark.Core.Message.IAbstractMessage +
+ + + + +
+
+ + + + + Property Summary + + +
+ + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- + - - - DECIMAL getParamAsDec (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - DECIMAL getParamAsDec (character, logical) + CHARACTER ContextPropName -
Inherited from Spark.Core.Message.IAbstractMessage +
- + + - DECIMAL getParamAsDecEx (character) + LOGICAL ReturnValue -
Inherited from Spark.Core.Message.IAbstractMessage +
- + + - DECIMAL getParamAsDecEx (character, logical) + CHARACTER ReturnValueName -
Inherited from Spark.Core.Message.IAbstractMessage +
- - + - - - - - getParamAsHandle (character, character, handle) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsInt (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64 (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INT64 getParamAsInt64Ex (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamAsIntEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamAsJsonObject (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsJsonText (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLog (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL getParamAsLogEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongChar (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LONGCHAR getParamAsLongCharEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptr (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - MEMPTR getParamAsMemptrEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecid (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecid (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - RECID getParamAsRecidEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowid (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - ROWID getParamAsRowidEx (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamCount () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - JsonObject getParamObject () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - CHARACTER getParams () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - INTEGER getParamType (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL hasAnyMessages () - - - -/** -* Has this response got any messages at all -* -* @return The response contains messages -*/
-
- - + - - - - - LOGICAL hasErrors () - - - -/** -* Has this response got any Error messages -* -* @return The response contains Error messages -*/
-
- - + - - - - - LOGICAL hasInformation () - - - -/** -* Has this response got any Information messages -* -* @return The response contains Information messages -*/
-
- - + - - - - - LOGICAL hasParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL hasWarnings () - - - -/** -* Has this response got any Warning or Information messages -* -* @return The response contains Warning messages -*/
-
- - + - - - - - promoteObject (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - removeMessages (ErrorTypeEnum) - - - -/** -* Remove messages by type -*/
-
- - + - - - - - removeParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - removeWarningMessages () - - - -/** -* Remove all Warning and Information (Non STOP) type messages -*/
-
- - + - - - - - LONGCHAR serializeMessage () - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setContextPropName (character) - - -
-
- - + - - - - - setNullParam (character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, character) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, character[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, date) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, date[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime-tz) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime-tz[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, datetime[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, decimal) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, decimal[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, handle) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, handle, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, int64) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, int64[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, integer) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, integer[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, JsonArray) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, JsonObject) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, logical) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, logical[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, longchar) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, longchar[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, memptr) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, memptr[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, recid) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, recid[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, rowid) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setParam (character, rowid[]) - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - setReturnValueName (character) - - -
-
- - - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - CHARACTER ContextPropName - - -
-
- - + - - - - - CHARACTER messageKeyPin - - -
Inherited from Spark.Core.Message.IAbstractMessage -
- - + - - - - - LOGICAL ReturnValue - - -
-
- - + - - - - - CHARACTER ReturnValueName - - -
-
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
-
- - Top - - -
-

PUBLIC addMessage (ErrorTypeEnum, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
- pcMessage - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC addMessage (ErrorTypeEnum, character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
- pcMsgGroup - - CHARACTER - -
- - -
- piMsgNumber - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC demoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getMessageArray ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParamAsCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDate (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATE getParamAsDateEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetime (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME getParamAsDatetimeEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZ (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME-TZ getParamAsDatetimeTZEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDec (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DECIMAL getParamAsDecEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getParamAsHandle (character, character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcMode - - CHARACTER - -
- - -
- phData - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsInt (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64 (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 getParamAsInt64Ex (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamAsIntEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonArray getParamAsJsonArray (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamAsJsonObject (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsJsonText (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLog (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL getParamAsLogEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongChar (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR getParamAsLongCharEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptr (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC MEMPTR getParamAsMemptrEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - MEMPTR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RECID getParamAsRecidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - RECID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowid (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ROWID getParamAsRowidEx (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- plOptionalParam - - LOGICAL - -
- - -
- Returns - - ROWID - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamCount ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC JsonObject getParamObject ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER getParams ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER getParamType (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasAnyMessages ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasErrors ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasInformation ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL hasWarnings ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC promoteObject (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeMessages (ErrorTypeEnum)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- poMsgType - - Spark.Core.Util.ErrorTypeEnum - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC removeWarningMessages ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
Purpose:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LONGCHAR serializeMessage ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LONGCHAR - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setContextPropName (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcName - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setNullParam (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pcValue - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, date[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime-tz[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, datetime[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- ptValue - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, decimal[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- pdValue - - DECIMAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, handle, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- phValue - - HANDLE - -
- - -
- plBefore - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, int64[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC setParam (character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - + +
+ +
+
+ +
+ + + + + Method Detail -
-

PUBLIC setParam (character, integer[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcParam - - CHARACTER - -
- - -
- piValue - - INTEGER - -
- - -
-
-
-
-
- -
+ + @@ -9449,69 +545,7 @@

PUBLIC se

- - - - - - - -
- Top - + Top +
-

PUBLIC setParam (character, JsonArray)

+

addMessage (ErrorTypeEnum, character)

@@ -9417,7 +513,7 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
@@ -9433,10 +529,10 @@

PUBLIC se

- pcParam + poMsgType - CHARACTER + Spark.Core.Util.ErrorTypeEnum
- poValue - - Progress.Json.ObjectModel.JsonArray - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC setParam (character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcParam + pcMessage CHARACTER @@ -9524,22 +558,6 @@

PUBLIC se

-
- poValue - - JsonObject - -
- -
@@ -9552,11 +570,11 @@

PUBLIC se

- Top - + Top +
-

PUBLIC setParam (character, logical)

+

addMessage (ErrorTypeEnum, character, integer)

@@ -9573,7 +591,7 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
@@ -9589,10 +607,10 @@

PUBLIC se

- pcParam + poMsgType - CHARACTER + Spark.Core.Util.ErrorTypeEnum
- plValue - - LOGICAL - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC setParam (character, logical[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - @@ -9708,11 +664,11 @@

PUBLIC se

- Parameters: -
- pcParam + pcMsgGroup CHARACTER @@ -9683,10 +639,10 @@

PUBLIC se

- plValue + piMsgNumber - LOGICAL + INTEGER
- Top - + Top +
-

PUBLIC setParam (character, longchar)

+

Progress.Json.ObjectModel.JsonArray getMessageArray ()

@@ -9729,42 +685,26 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - - - - - - - + +
+
+
+
- Parameters: -
- pcParam - - CHARACTER - -
- - -
Purpose:
+
+ + + @@ -9786,11 +726,11 @@

PUBLIC se

- pcValue + Returns - LONGCHAR + Progress.Json.ObjectModel.JsonArray
- Top - + Top +
-

PUBLIC setParam (character, longchar[])

+

LOGICAL hasAnyMessages ()

@@ -9807,42 +747,26 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -9864,11 +788,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pcValue + Returns - LONGCHAR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, memptr)

+

LOGICAL hasErrors ()

@@ -9885,42 +809,26 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -9942,11 +850,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pmValue + Returns - MEMPTR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, memptr[])

+

LOGICAL hasInformation ()

@@ -9963,42 +871,26 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10020,11 +912,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- pmValue + Returns - MEMPTR + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, recid)

+

LOGICAL hasWarnings ()

@@ -10041,42 +933,26 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
- + - - - - - - - - @@ -10098,11 +974,11 @@

PUBLIC se

- pcParam - - CHARACTER - -
- - -
- prValue + Returns - RECID + LOGICAL
- Top - + Top +
-

PUBLIC setParam (character, recid[])

+

removeMessages (ErrorTypeEnum)

@@ -10119,11 +995,11 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
@@ -10135,26 +1011,10 @@

PUBLIC se

- - - - - - - - @@ -10176,11 +1036,11 @@

PUBLIC se

- - - - - - - -
- pcParam - - CHARACTER - -
- - -
- prValue + poMsgType - RECID + Spark.Core.Util.ErrorTypeEnum
- Top - + Top +
-

PUBLIC setParam (character, rowid)

+

removeWarningMessages ()

@@ -10197,53 +1057,21 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
-
+
Purpose:
- + - - - - - - - - - - - - - - - - -
- pcParam - - CHARACTER - -
- - -
- prValue - - ROWID - -
- - -
@@ -10254,11 +1082,11 @@

PUBLIC se

- Top - + Top +
-

PUBLIC setParam (character, rowid[])

+

setContextPropName (character)

@@ -10275,7 +1103,7 @@

PUBLIC se

- Inherited from Spark.Core.Message.IAbstractMessage +
@@ -10291,7 +1119,7 @@

PUBLIC se

- pcParam + pcName CHARACTER @@ -10304,22 +1132,6 @@

PUBLIC se

-
- prValue - - ROWID - -
- -
@@ -10336,7 +1148,7 @@

PUBLIC se

-

PUBLIC setReturnValueName (character)

+

setReturnValueName (character)

@@ -10452,7 +1264,7 @@

PUBLIC se -

PUBLIC CHARACTER ContextPropName

+

CHARACTER ContextPropName

@@ -10498,68 +1310,6 @@

PUBLIC CHARACTER messageKeyPin"> - - -

PUBLIC CHARACTER messageKeyPin

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Message.IAbstractMessage -
-
-
-
-
- - - - - - - - - -
- Returns - - CHARACTER - -
- -
@@ -10576,7 +1326,7 @@

PUBLIC CHARACTER ReturnValue">

-

PUBLIC LOGICAL ReturnValue

+

LOGICAL ReturnValue

@@ -10638,7 +1388,7 @@

PUBLIC LOGICAL ReturnValueName"> -

PUBLIC CHARACTER ReturnValueName

+

CHARACTER ReturnValueName

@@ -10698,6 +1448,6 @@

PUBLIC CHARACTER GenHash (character, character, character)"> -

PUBLIC CHARACTER GenHash (character, character, character)

+

CHARACTER GenHash (character, character, character)

@@ -374,7 +374,7 @@

PUBLIC CHARACTER TruncateHMAC (character)"> -

PUBLIC INTEGER TruncateHMAC (character)

+

INTEGER TruncateHMAC (character)

@@ -504,6 +504,6 @@

PUBLIC INTEGER newToken (character, integer, integer)"> -

PRIVATE newToken (character, integer, integer)

+

newToken (character, integer, integer)

@@ -426,7 +426,7 @@

PRIVATE n -

PUBLIC HOTP (character)

+

HOTP (character)

@@ -488,7 +488,7 @@

PUBLIC HO -

PUBLIC HOTP (character, integer, integer)

+

HOTP (character, integer, integer)

@@ -618,7 +618,7 @@

PUBLIC HO -

PUBLIC INT64 EpochCounter

+

INT64 EpochCounter

@@ -680,7 +680,7 @@

PUBLIC INT64 Token"> -

PUBLIC CHARACTER Token

+

CHARACTER Token

@@ -740,6 +740,6 @@

PUBLIC CHARACTER getUserID (character, character)"> -

PUBLIC INTEGER getUserID (character, character)

+

INTEGER getUserID (character, character)

@@ -421,7 +421,7 @@

PUBLIC INTEGER getUserRoles (integer)"> -

PUBLIC CHARACTER getUserRoles (integer)

+

CHARACTER getUserRoles (integer)

@@ -499,7 +499,7 @@

PUBLIC CHARACTER isActive (integer)"> -

PUBLIC LOGICAL isActive (integer)

+

LOGICAL isActive (integer)

@@ -577,7 +577,7 @@

PUBLIC LOGICAL isExpired (integer)"> -

PUBLIC LOGICAL isExpired (integer)

+

LOGICAL isExpired (integer)

@@ -655,7 +655,7 @@

PUBLIC LOGICAL isLocked (integer)"> -

PUBLIC LOGICAL isLocked (integer)

+

LOGICAL isLocked (integer)

@@ -785,6 +785,6 @@

PUBLIC LOGICAL checkPasswordHash (character, character)"> -

PROTECTED LOGICAL checkPasswordHash (character, character)

+

LOGICAL checkPasswordHash (character, character)

@@ -729,7 +729,7 @@

PROTECTED LOGICAL checkPasswordHash (integer, character, character)"> -

PROTECTED LOGICAL checkPasswordHash (integer, character, character)

+

LOGICAL checkPasswordHash (integer, character, character)

@@ -839,7 +839,7 @@

PROTECTED LOGICAL GetAttribute (integer, character)"> -

PUBLIC CHARACTER GetAttribute (integer, character)

+

CHARACTER GetAttribute (integer, character)

@@ -933,7 +933,7 @@

PUBLIC CHARACTER GetAttributeNames (integer)"> -

PUBLIC CHARACTER GetAttributeNames (integer)

+

CHARACTER GetAttributeNames (integer)

@@ -1011,7 +1011,7 @@

PUBLIC CHARACTER getPassword (integer)"> -

PROTECTED CHARACTER getPassword (integer)

+

CHARACTER getPassword (integer)

@@ -1089,7 +1089,7 @@

PROTECTED CHARACTER getUserID (character, character)"> -

PUBLIC INTEGER getUserID (character, character)

+

INTEGER getUserID (character, character)

@@ -1183,7 +1183,7 @@

PUBLIC INTEGER GetUsernames ()"> -

PUBLIC CHARACTER GetUsernames ()

+

CHARACTER GetUsernames ()

@@ -1245,7 +1245,7 @@

PUBLIC CHARACTER GetUsernamesByQuery (character)"> -

PUBLIC CHARACTER GetUsernamesByQuery (character)

+

CHARACTER GetUsernamesByQuery (character)

@@ -1323,7 +1323,7 @@

PUBLIC CHARACTER GetUsernamesByQuery (character, character)"> -

PUBLIC CHARACTER GetUsernamesByQuery (character, character)

+

CHARACTER GetUsernamesByQuery (character, character)

@@ -1417,7 +1417,7 @@

PUBLIC CHARACTER getUserRoles (integer)"> -

PUBLIC CHARACTER getUserRoles (integer)

+

CHARACTER getUserRoles (integer)

@@ -1495,7 +1495,7 @@

PUBLIC CHARACTER isActive (integer)"> -

PUBLIC LOGICAL isActive (integer)

+

LOGICAL isActive (integer)

@@ -1573,7 +1573,7 @@

PUBLIC LOGICAL isExpired (integer)"> -

PUBLIC LOGICAL isExpired (integer)

+

LOGICAL isExpired (integer)

@@ -1651,7 +1651,7 @@

PUBLIC LOGICAL isLocked (integer)"> -

PUBLIC LOGICAL isLocked (integer)

+

LOGICAL isLocked (integer)

@@ -1729,7 +1729,7 @@

PUBLIC LOGICAL loadConfig ()"> -

PROTECTED loadConfig ()

+

loadConfig ()

@@ -1775,7 +1775,7 @@

PROTECTED -

PROTECTED postAuthenticate (integer, logical)

+

postAuthenticate (integer, logical)

@@ -1853,7 +1853,7 @@

PROTECTED -

PUBLIC LOGICAL RemoveAttribute (integer, character)

+

LOGICAL RemoveAttribute (integer, character)

@@ -1947,7 +1947,7 @@

PUBLIC LOGICAL SetAttribute (integer, character, character)"> -

PUBLIC LOGICAL SetAttribute (integer, character, character)

+

LOGICAL SetAttribute (integer, character, character)

@@ -2057,7 +2057,7 @@

PUBLIC LOGICAL ValidatePassword (integer, character)"> -

PUBLIC LOGICAL ValidatePassword (integer, character)

+

LOGICAL ValidatePassword (integer, character)

@@ -2151,7 +2151,7 @@

PUBLIC LOGICAL ValidatePassword (integer, character, character, character)"> -

PUBLIC LOGICAL ValidatePassword (integer, character, character, character)

+

LOGICAL ValidatePassword (integer, character, character, character)

@@ -2277,7 +2277,7 @@

PUBLIC LOGICAL validateRequest ()"> -

PROTECTED LOGICAL validateRequest ()

+

LOGICAL validateRequest ()

@@ -2339,7 +2339,7 @@

PROTECTED LOGICAL validateRequest (character)"> -

PROTECTED LOGICAL validateRequest (character)

+

LOGICAL validateRequest (character)

@@ -2417,7 +2417,7 @@

PROTECTED LOGICAL ValidateUser (character)"> -

PUBLIC INTEGER ValidateUser (character)

+

INTEGER ValidateUser (character)

@@ -2513,7 +2513,7 @@

PUBLIC INTEGER OEUserRealm ()"> -

PUBLIC OEUserRealm ()

+

OEUserRealm ()

@@ -156,7 +156,7 @@ @@ -174,7 +174,7 @@ @@ -283,7 +283,7 @@ -

PUBLIC LOGICAL checkPassword (character, character)

+

LOGICAL checkPassword (character, character)

@@ -2593,6 +2593,6 @@

PUBLIC OE

--> - 04.15.2022 11:52:29 + 04.18.2022 11:20:34 diff --git a/docs/PCTDoc/Spark.Core.Security.Password.html b/docs/PCTDoc/Spark.Core.Security.Password.html index 7370afe8..200b908e 100644 --- a/docs/PCTDoc/Spark.Core.Security.Password.html +++ b/docs/PCTDoc/Spark.Core.Security.Password.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + +
@@ -377,7 +377,7 @@

PUBLIC LOGICAL createCode (integer)"> -

PUBLIC CHARACTER createCode (integer)

+

CHARACTER createCode (integer)

@@ -455,7 +455,7 @@

PUBLIC CHARACTER encodePassword (character)"> -

PUBLIC CHARACTER encodePassword (character)

+

CHARACTER encodePassword (character)

@@ -585,6 +585,6 @@

PUBLIC CHARACTER newToken (character, integer, integer)"> -

PRIVATE newToken (character, integer, integer)

+

newToken (character, integer, integer)

@@ -460,7 +460,7 @@

PRIVATE n -

PUBLIC TOTP (character)

+

TOTP (character)

@@ -522,7 +522,7 @@

PUBLIC TO -

PUBLIC TOTP (character, integer)

+

TOTP (character, integer)

@@ -600,7 +600,7 @@

PUBLIC TO -

PUBLIC TOTP (character, integer, integer)

+

TOTP (character, integer, integer)

@@ -730,7 +730,7 @@

PUBLIC TO -

PUBLIC INT64 EpochCounter

+

INT64 EpochCounter

@@ -792,7 +792,7 @@

PUBLIC INT64 Token"> -

PUBLIC CHARACTER Token

+

CHARACTER Token

@@ -854,7 +854,7 @@

PUBLIC CHARACTER UnixEpoch"> -

PUBLIC INT64 UnixEpoch

+

INT64 UnixEpoch

@@ -69,7 +69,7 @@ Inherits: @@ -138,7 +138,7 @@ @@ -156,7 +156,7 @@ @@ -174,7 +174,7 @@ @@ -192,7 +192,7 @@ @@ -210,7 +210,7 @@ @@ -228,7 +228,7 @@ @@ -291,7 +291,7 @@
@@ -914,6 +914,6 @@

PUBLIC INT64
Progress.Lang.Object

+

- Spark.Diagnostic.Util.OSPath + Spark.Core.Util.OSPath
- # + - + + - + + - # + - + + - + +
--> - +

@@ -370,7 +336,7 @@ -

PROTECTED Discovery ()

+

Discovery ()

- - - - - - + Property Detail + + + +
@@ -416,7 +382,7 @@

PROTECTED -

PUBLIC dispose ()

+

dispose ()

- - - - - - - - -
@@ -462,7 +428,7 @@

PUBLIC di -

PUBLIC getCatalog (JsonObject)

+

getCatalog (JsonObject)

@@ -524,7 +490,7 @@

PUBLIC ge -

PROTECTED Progress.Json.ObjectModel.JsonObject getDataObjectServiceCatalogs ()

+

Progress.Json.ObjectModel.JsonObject getDataObjectServiceCatalogs ()

@@ -586,7 +552,7 @@

PROTECTED Progress.Json.ObjectModel.JsonObject -

PUBLIC getOpenApiCatalog (JsonObject)

+

getOpenApiCatalog (JsonObject)

- - +
@@ -648,7 +614,7 @@

PUBLIC ge -

PUBLIC initialize ()

+

initialize ()

- - - - - - - - -
@@ -728,7 +694,7 @@

PUBLIC in

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -
-
- - Top - - -
-

PROTECTED CHARACTER TemporaryDir

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- - 04.15.2022 11:52:30 + --> + 04.18.2022 11:20:34 diff --git a/docs/PCTDoc/Spark.Core.Service.DynamicEntity.html b/docs/PCTDoc/Spark.Core.Service.DynamicEntity.html index d573f20a..a8a4b73d 100644 --- a/docs/PCTDoc/Spark.Core.Service.DynamicEntity.html +++ b/docs/PCTDoc/Spark.Core.Service.DynamicEntity.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -101,7 +101,7 @@

-
File:DynamicEntity
Author(s):Dustin Grau (dugrau@progress.com)
Created:Tue Mar 17 09:31:42 EDT 2015
Purpose:
+
File:DynamicEntity
Author(s):Dustin Grau (dugrau@progress.com)
Created:Tue Mar 17 09:31:42 EDT 2015
/* Default options for class.

@@ -114,7 +114,7 @@

- + + + + +
+
+ + + + + Property Summary + + +
+ @@ -138,4071 +207,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # - - - - - AttachDataSources () - - - Attach Data Sources to DataSet's buffers
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - AttachDataSources (character[]) - - - Attach Data Sources to DataSet's buffers
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - CommitData (integer) - - - Generic routine to save or commit data for a dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - IGetTableResultCountResponse CountBufferRecords (handle) - - - -/* Returns the count of the total number of result records currently in a buffer - -@param handle The buffer whose records to count -@return IGetTableResultCountResponse The IGetTableResultCountResponse instance for the request */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - IGetResultCountResponse CountDatasetRecords (handle) - - - -/* Returns the count of the total number of result records currently in a dataset. - -@param handle The dataset whose records to count -@return IGetResultCountResponse The IGetResultCountResponse instance for the request */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - CreateData (dataset-handle) - - - Create one or more new records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - createData (dataset-handle) - - - -/* readData */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - DeleteData (dataset-handle) - - - Delete one or more records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - deleteData (dataset-handle) - - - -/* updateData */
Inherited from Spark.Core.Service.SparkEntity -
- - + - - - - - dispose () - - - -/* initialize */
Inherited from Spark.Core.Service.SparkEntity -
- - # + A - DoFill (handle) + CHARACTER capabilities - -/* Performs the dataset or buffer FILL() operation. - -@param handle A valid DATASET or BUFFER handle. */
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
- # - - - INT64 filterData (character) - - - -/* getFilter */
Inherited from Spark.Core.Service.SparkEntity -
- - # - F - CHARACTER getClassName () + CHARACTER entityName - -/***** Protected *****/
Inherited from Spark.Core.Service.SparkEntity +
- + + A - IGetDataResponse getData (IGetDataRequest, dataset-handle) + CHARACTER foreignKeys - -/******* Public | CCS-compliant Read, Count, and Update (aka. Submit) *******/
Inherited from Spark.Core.Service.SparkEntity +
- + + A - getDataset (dataset-handle) + CHARACTER mappingType - -/******* Public | Helper Methods *******/
Inherited from Spark.Core.Service.SparkEntity +
- # + A - Progress.Json.ObjectModel.JsonObject getFilterObject (longchar) + CHARACTER operations - -/* getClassName */
Inherited from Spark.Core.Service.SparkEntity +
- # + A - CHARACTER getFilterOnly (JsonObject) + CHARACTER primaryKeys - -/* filterData */
Inherited from Spark.Core.Service.SparkEntity +
- # + A - INT64 getRecCount (character) + CHARACTER resourceName - -/* getFilterOnly */
Inherited from Spark.Core.Service.SparkEntity +
- # + A - INT64 getRecCount (character, handle) + CHARACTER serviceURI - -/* getRecCount */
Inherited from Spark.Core.Service.SparkEntity +
- - + - - - - - IGetResultCountResponse getResultCount (IGetDataRequest) - - - -/* getData */
Inherited from Spark.Core.Service.SparkEntity -
- - + - - - - - initialize () - - - -/******* Public | IService Methods *******/
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - postCommitLogic (character, dataset-handle) - - - -/* preCommitLogic */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - postFetchRecord () - - - -/* postCommitLogic */
Inherited from Spark.Core.Service.SparkEntity -
- - + - - - - - postRowFill (dataset-handle) - - - -/* getDataset */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - preCommitLogic (character, dataset-handle) - - - -/* getRecCount */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - ProcessTransactionalError (Error) - - - ProcessTransactionalError() is called when we are processing a single -transaction, and an error occurs for one of the row changes. -When this occurs, all rows should have REJECTED set to TRUE, -and the error message should be set on the offending row.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ReadData () - - - Generic routine to read data for the dataset with no filter specified.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ReadData (character) - - - Generic routine to read data for the dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ReadData (character, handle) - - - Generic routine to read data for a table within a dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - readData (character, int64, dataset-handle) - - - -/******* Public | Legacy CRUD+Submit (Create, Read, Update, Delete, Submit) *******/
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - ReadData (character[]) - - - Generic routine to read data for the dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ReadData (handle) - - - Generic routine to read data for a table within a dataset with no filter specified.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - IGetDataResponse ReadData (IGetDataRequest) - - - -/* Generic read data routine using a filter object (instead of strings). -This supports CCS-compliant BE's. - -@param IGetDataRequest The filter to apply. -@param IGetDataResponse Response object. */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - SaveRows (dataset-handle) - - - Saves/Submits one or more changed rows (creates, updates, and/or deletes) -where each changed row is processed as a separate transaction. -SaveRows() is similar to Submit(), but acts as a bulk submit, with separate -row transactions.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - SetFillWhereString (character, handle) - - - -/* Adds a FILL-WHERE-STRING to a datasource - -@param character The where (filter) string to apply to buffer -@param handpe A buffer handle in the dataset */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - Submit (dataset-handle) - - - Submits one or more changed records (creates, updates, and/or deletes) -where the changed record set is processed as a single transaction.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - submitData (dataset-handle) - - - -/* deleteData */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - UpdateData (dataset-handle) - - - Update one or more new records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - updateData (dataset-handle) - - - -/* createData */
Inherited from Spark.Core.Service.SparkEntity -
- - + - - - - - Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest) - - - -/* getResultCount */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - CHARACTER validateData (character, dataset-handle) - - - -/* postFetchRecord */
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - ValidateDataSources () - - - Must verify that ProDataSource contains a data source entry for each -table specified in dataset. Also verify that they are valid handles. -A data source entry can be set to UNKNOWN as well, as allow for that.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ValidateFieldLists (character[]) - - - Must verify that cFieldList's EXTENT value is same as number of buffers in dataset
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - A - - - - CHARACTER capabilities - - -
-
- - + - - - - - CHARACTER entityName - - -
-
- - + - A - - - - CHARACTER foreignKeys - - -
-
- - + - - - - - INT64 LastCount - - -
Inherited from Spark.Core.Service.SparkEntity -
- - + - A - - - - CHARACTER mappingType - - -
-
- - # - - - - - ICatalogManager oCatalogManager - - -
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - IClientContext oClientContext - - -
Inherited from Spark.Core.Service.SparkEntity -
- - + - - - - - IContextMessage oContextMessage - - -
Inherited from Spark.Core.Service.SparkEntity -
- - # - - - - - ILoggingManager oLoggingManager - - -
Inherited from Spark.Core.Service.SparkEntity -
- - + - A - - - - CHARACTER operations - - -
-
- - + - A - - - - CHARACTER primaryKeys - - -
-
- - # - - - - - HANDLE ProDataSet - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - HANDLE ProDataSource - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - A - - - - CHARACTER resourceName - - -
-
- - + - A - - - - CHARACTER serviceURI - - -
-
- - # - - - - - CHARACTER SkipList - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
-
- - Top - - -
-

PROTECTED AttachDataSources ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Attach Data Sources to DataSet's buffers
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED AttachDataSources (character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Attach Data Sources to DataSet's buffers
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- cFieldList - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CommitData (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to save or commit data for a dataset.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- iRowState - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED IGetTableResultCountResponse CountBufferRecords (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Returns the count of the total number of result records currently in a buffer
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pData - - HANDLE - -
- - -
- Returns - - IGetTableResultCountResponse - -
- - IGetTableResultCountResponse The IGetTableResultCountResponse instance for the request -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED IGetResultCountResponse CountDatasetRecords (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Returns the count of the total number of result records currently in a dataset.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pData - - HANDLE - -
- - -
- Returns - - IGetResultCountResponse - -
- - IGetResultCountResponse The IGetResultCountResponse instance for the request -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CreateData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Create one or more new records
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC createData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* readData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED DeleteData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Delete one or more records
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deleteData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* updateData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC dispose ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* initialize
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED DoFill (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Performs the dataset or buffer FILL() operation.
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pDataset - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED INT64 filterData (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getFilter
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcFilter - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER getClassName ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC IGetDataResponse getData (IGetDataRequest, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poRequest - - IGetDataRequest - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
- Returns - - IGetDataResponse - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getDataset (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataset - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED Progress.Json.ObjectModel.JsonObject getFilterObject (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getClassName
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRawFilter - - LONGCHAR - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER getFilterOnly (JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* filterData
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poFilter - - Progress.Json.ObjectModel.JsonObject - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED INT64 getRecCount (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getFilterOnly
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRawFilter - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED INT64 getRecCount (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getRecCount
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcFilter - - CHARACTER - -
- - -
- phTable - - HANDLE - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC IGetResultCountResponse getResultCount (IGetDataRequest)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getData
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poRequest - - IGetDataRequest - -
- - -
- Returns - - IGetResultCountResponse - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC initialize ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED postCommitLogic (character, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* preCommitLogic
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAction - - CHARACTER - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED postFetchRecord ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* postCommitLogic
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC postRowFill (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getDataset
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataset - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED preCommitLogic (character, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getRecCount
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAction - - CHARACTER - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ProcessTransactionalError (Error)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: ProcessTransactionalError() is called when we are processing a single
transaction, and an error occurs for one of the row changes.
When this occurs, all rows should have REJECTED set to TRUE,
and the error message should be set on the offending row.
Notes: If there is no bi data being sent between client and server (CUD_NOBI),
then we throw the error (resulting in http 500 error),
and we also must back out all changes.
-
- - - - - - - - - - - - - - - -
- Parameters: -
- err - - Progress.Lang.Error - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ReadData ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for the dataset with no filter specified.
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ReadData (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for the dataset.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- cFilter - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ReadData (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for a table within a dataset.
Notes:
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- cFilter - - CHARACTER - -
- - -
- hBuffer - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC readData (character, int64, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- filter - - CHARACTER - -
- - -
- numRecs - - INT64 - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ReadData (character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for the dataset.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- cFilter - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ReadData (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for a table within a dataset with no filter specified.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hBuffer - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED IGetDataResponse ReadData (IGetDataRequest)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Generic read data routine using a filter object (instead of strings).
This supports CCS-compliant BE's.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pGetRequest - - IGetDataRequest - -
- - -
- Returns - - IGetDataResponse - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED SaveRows (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Saves/Submits one or more changed rows (creates, updates, and/or deletes)
where each changed row is processed as a separate transaction.
SaveRows() is similar to Submit(), but acts as a bulk submit, with separate
row transactions.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED SetFillWhereString (character, handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Adds a FILL-WHERE-STRING to a datasource
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- cWhere - - CHARACTER - -
- - -
- hBuffer - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED Submit (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Submits one or more changed records (creates, updates, and/or deletes)
where the changed record set is processed as a single transaction.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC submitData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* deleteData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED UpdateData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Update one or more new records
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC updateData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* createData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* getResultCount
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
- poUpdateDataRequest - - IUpdateDataRequest - -
- - -
- Returns - - Progress.Lang.Object - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER validateData (character, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
/* postFetchRecord
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAction - - CHARACTER - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ValidateDataSources ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Must verify that ProDataSource contains a data source entry for each
table specified in dataset. Also verify that they are valid handles.
A data source entry can be set to UNKNOWN as well, as allow for that.
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ValidateFieldLists (character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Must verify that cFieldList's EXTENT value is same as number of buffers in dataset
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- cFieldList - - CHARACTER - -
- - -
-
-
-
-
-
+ +
+
+ -
- Returns - - CHARACTER - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC CHARACTER entityName

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER foreignKeys

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INT64 LastCount

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
+ +
- Top - + Top +
-

PUBLIC CHARACTER mappingType

+

CHARACTER capabilities

-
@@ -4565,73 +477,11 @@

PUBLIC CHARACTER oCatalogManager"> - - -

PROTECTED ICatalogManager oCatalogManager

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Service.SparkEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - ICatalogManager - -
- - -
-
-
-
-
- -
-
- - Top - + Top +
-

PROTECTED IClientContext oClientContext

+

CHARACTER entityName

@@ -4648,7 +498,7 @@

PROTECTED IClientContext Spark.Core.Service.SparkEntity +
@@ -4667,7 +517,7 @@

PROTECTED IClientContext
- Top - + Top +
-

PUBLIC IContextMessage oContextMessage

+

CHARACTER foreignKeys

@@ -4701,7 +551,7 @@

PUBLIC IContextMessage

- Inherited from Spark.Core.Service.SparkEntity +
@@ -4729,7 +579,7 @@

PUBLIC IContextMessage
- Top - + Top +
-

PROTECTED ILoggingManager oLoggingManager

+

CHARACTER mappingType

@@ -4763,7 +613,7 @@

PROTECTED ILoggingManager

- Inherited from Spark.Core.Service.SparkEntity +
@@ -4791,7 +641,7 @@

PROTECTED ILoggingManager

-

PUBLIC CHARACTER operations

+

CHARACTER operations

@@ -4879,7 +729,7 @@

PUBLIC CHARACTER primaryKeys"> -

PUBLIC CHARACTER primaryKeys

+

CHARACTER primaryKeys

-
@@ -4925,130 +775,6 @@

PUBLIC CHARACTER ProDataSet"> - - -

PROTECTED HANDLE ProDataSet

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - HANDLE - -
- - -
-
-
-
-
- -
-
- - Top - - -
-

PROTECTED HANDLE ProDataSource

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - -
- Returns - - HANDLE - -
- -
@@ -5065,7 +791,7 @@

PROTECTED HANDLE resourceName">

-

PUBLIC CHARACTER resourceName

+

CHARACTER resourceName

@@ -156,7 +156,7 @@ @@ -173,7 +173,7 @@ @@ -260,7 +260,7 @@ @@ -277,7 +277,7 @@ @@ -294,7 +294,7 @@ @@ -311,7 +311,7 @@ @@ -328,7 +328,7 @@ @@ -367,7 +367,7 @@ -

PUBLIC dispose ()

+

dispose ()

@@ -5127,7 +853,7 @@

PUBLIC CHARACTER serviceURI"> -

PUBLIC CHARACTER serviceURI

+

CHARACTER serviceURI

@@ -5173,68 +899,6 @@

PUBLIC CHARACTER SkipList"> - - -

PROTECTED CHARACTER SkipList

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - -
- Returns - - CHARACTER - -
- -
@@ -5249,6 +913,6 @@

PROTECTED CHARACTER

File:DynamicResource
Author(s):Dustin Grau (dugrau@progress.com)
Created:Tue Mar 17 09:31:42 EDT 2015
/* Required property on instance class, denotes a known service path.
+
File:DynamicResource
Author(s):Dustin Grau (dugrau@progress.com)
Created:Tue Mar 17 09:31:42 EDT 2015
/* Default options for class.

@@ -138,7 +138,7 @@
- + + - # + F - + + - # + - + + - # + - + + A - + + A
@@ -413,7 +413,7 @@

PUBLIC di -

PROTECTED CHARACTER getClassName ()

+

CHARACTER getClassName ()

@@ -475,7 +475,7 @@

PROTECTED CHARACTER initialize ()"> -

PUBLIC initialize ()

+

initialize ()

@@ -575,7 +575,7 @@

PUBLIC in -

PROTECTED Spark.Core.Manager.IClientContext oClientContext

+

Spark.Core.Manager.IClientContext oClientContext

@@ -637,7 +637,7 @@

PROTECTED Spark.Core.Message.IContextMessage oContextMessage"> -

PUBLIC Spark.Core.Message.IContextMessage oContextMessage

+

Spark.Core.Message.IContextMessage oContextMessage

@@ -699,7 +699,7 @@

PUBLIC Spark.Core.Manager.ILoggingManager oLoggingManager"> -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -761,7 +761,7 @@

PROTECTED resourceName"> -

PUBLIC CHARACTER resourceName

+

CHARACTER resourceName

@@ -823,7 +823,7 @@

PUBLIC CHARACTER serviceURI"> -

PUBLIC CHARACTER serviceURI

+

CHARACTER serviceURI

@@ -883,6 +883,6 @@

PUBLIC CHARACTER getCatalog (JsonObject)"> -

PUBLIC getCatalog (JsonObject)

+

getCatalog (JsonObject)

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -189,7 +189,7 @@ @@ -206,7 +206,7 @@ @@ -223,7 +223,7 @@ @@ -240,7 +240,7 @@ @@ -326,7 +326,7 @@ @@ -343,7 +343,7 @@ @@ -360,7 +360,7 @@ @@ -377,7 +377,7 @@ @@ -394,7 +394,7 @@ @@ -411,7 +411,7 @@ @@ -428,7 +428,7 @@ @@ -445,7 +445,7 @@ @@ -484,7 +484,7 @@ -

PUBLIC createData (dataset-handle)

+

createData (dataset-handle)

@@ -360,6 +360,6 @@

PUBLIC ge

--> - 04.15.2022 11:52:32 + 04.18.2022 11:20:34 diff --git a/docs/PCTDoc/Spark.Core.Service.IDynamicEntity.html b/docs/PCTDoc/Spark.Core.Service.IDynamicEntity.html index fb3bc065..7823bfab 100644 --- a/docs/PCTDoc/Spark.Core.Service.IDynamicEntity.html +++ b/docs/PCTDoc/Spark.Core.Service.IDynamicEntity.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -546,7 +546,7 @@

PUBLIC cr -

PUBLIC deleteData (dataset-handle)

+

deleteData (dataset-handle)

@@ -608,7 +608,7 @@

PUBLIC de -

PUBLIC getDataset (dataset-handle)

+

getDataset (dataset-handle)

@@ -670,7 +670,7 @@

PUBLIC ge -

PUBLIC postRowFill (dataset-handle)

+

postRowFill (dataset-handle)

@@ -732,7 +732,7 @@

PUBLIC po -

PUBLIC readData (character, int64, dataset-handle)

+

readData (character, int64, dataset-handle)

@@ -826,7 +826,7 @@

PUBLIC re -

PUBLIC submitData (dataset-handle)

+

submitData (dataset-handle)

@@ -888,7 +888,7 @@

PUBLIC su -

PUBLIC updateData (dataset-handle)

+

updateData (dataset-handle)

@@ -1004,7 +1004,7 @@

PUBLIC up -

PUBLIC CHARACTER capabilities

+

CHARACTER capabilities

@@ -1066,7 +1066,7 @@

PUBLIC CHARACTER entityName"> -

PUBLIC CHARACTER entityName

+

CHARACTER entityName

@@ -1128,7 +1128,7 @@

PUBLIC CHARACTER foreignKeys"> -

PUBLIC CHARACTER foreignKeys

+

CHARACTER foreignKeys

@@ -1190,7 +1190,7 @@

PUBLIC CHARACTER mappingType"> -

PUBLIC CHARACTER mappingType

+

CHARACTER mappingType

@@ -1252,7 +1252,7 @@

PUBLIC CHARACTER operations"> -

PUBLIC CHARACTER operations

+

CHARACTER operations

@@ -1314,7 +1314,7 @@

PUBLIC CHARACTER primaryKeys"> -

PUBLIC CHARACTER primaryKeys

+

CHARACTER primaryKeys

@@ -1376,7 +1376,7 @@

PUBLIC CHARACTER resourceName"> -

PUBLIC CHARACTER resourceName

+

CHARACTER resourceName

@@ -1438,7 +1438,7 @@

PUBLIC CHARACTER serviceURI"> -

PUBLIC CHARACTER serviceURI

+

CHARACTER serviceURI

@@ -1498,6 +1498,6 @@

PUBLIC CHARACTER Spark.Core.Message.IContextMessage oContextMessage"> -

PUBLIC Spark.Core.Message.IContextMessage oContextMessage

+

Spark.Core.Message.IContextMessage oContextMessage

@@ -396,7 +396,7 @@

PUBLIC resourceName"> -

PUBLIC CHARACTER resourceName

+

CHARACTER resourceName

@@ -458,7 +458,7 @@

PUBLIC CHARACTER serviceURI"> -

PUBLIC CHARACTER serviceURI

+

CHARACTER serviceURI

@@ -518,6 +518,6 @@

PUBLIC CHARACTER createData (dataset-handle)"> -

PUBLIC createData (dataset-handle)

+

createData (dataset-handle)

@@ -444,7 +444,7 @@

PUBLIC cr -

PUBLIC deleteData (dataset-handle)

+

deleteData (dataset-handle)

@@ -506,7 +506,7 @@

PUBLIC de -

PUBLIC getDataset (dataset-handle)

+

getDataset (dataset-handle)

@@ -568,7 +568,7 @@

PUBLIC ge -

PUBLIC postRowFill (dataset-handle)

+

postRowFill (dataset-handle)

@@ -630,7 +630,7 @@

PUBLIC po -

PUBLIC readData (character, int64, dataset-handle)

+

readData (character, int64, dataset-handle)

@@ -724,7 +724,7 @@

PUBLIC re -

PUBLIC submitData (dataset-handle)

+

submitData (dataset-handle)

@@ -786,7 +786,7 @@

PUBLIC su -

PUBLIC updateData (dataset-handle)

+

updateData (dataset-handle)

@@ -902,7 +902,7 @@

PUBLIC up -

PUBLIC INT64 LastCount

+

INT64 LastCount

@@ -964,7 +964,7 @@

PUBLIC INT64 Spark.Core.Message.IContextMessage oContextMessage"> -

PUBLIC Spark.Core.Message.IContextMessage oContextMessage

+

Spark.Core.Message.IContextMessage oContextMessage

@@ -1024,6 +1024,6 @@

PUBLIC dispose ()"> -

PUBLIC dispose ()

+

dispose ()

@@ -332,7 +332,7 @@

PUBLIC di -

PUBLIC initialize ()

+

initialize ()

+ + +
@@ -396,7 +396,7 @@

PUBLIC in -

PUBLIC Service ()

+

Service ()

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -284,25 +174,8 @@ - - - - - - - - - - - - @@ -357,7 +210,7 @@ @@ -375,7 +228,7 @@ @@ -393,7 +246,7 @@ @@ -411,7 +264,7 @@ @@ -429,7 +282,7 @@ @@ -447,7 +300,7 @@ @@ -465,7 +318,7 @@ @@ -483,7 +336,7 @@ @@ -501,7 +354,7 @@ @@ -519,7 +372,7 @@ @@ -537,7 +390,7 @@ @@ -555,7 +408,7 @@ @@ -573,7 +426,7 @@ @@ -591,1810 +444,308 @@ - + + +
@@ -476,6 +476,6 @@

PUBLIC Se

--> - 04.15.2022 11:52:33 + 04.18.2022 11:20:34 diff --git a/docs/PCTDoc/Spark.Core.Service.SparkEntity.html b/docs/PCTDoc/Spark.Core.Service.SparkEntity.html index 465525c1..643f22b1 100644 --- a/docs/PCTDoc/Spark.Core.Service.SparkEntity.html +++ b/docs/PCTDoc/Spark.Core.Service.SparkEntity.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,101 +138,8 @@

- # - - - AttachDataSources () - - - Attach Data Sources to DataSet's buffers
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - AttachDataSources (character[]) - - - Attach Data Sources to DataSet's buffers
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - CommitData (integer) - - - Generic routine to save or commit data for a dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - Ccs.BusinessLogic.IGetTableResultCountResponse CountBufferRecords (handle) - - - -/* Returns the count of the total number of result records currently in a buffer - -@param handle The buffer whose records to count -@return IGetTableResultCountResponse The IGetTableResultCountResponse instance for the request */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - Ccs.BusinessLogic.IGetResultCountResponse CountDatasetRecords (handle) - - - -/* Returns the count of the total number of result records currently in a dataset. - -@param handle The dataset whose records to count -@return IGetResultCountResponse The IGetResultCountResponse instance for the request */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - @@ -249,24 +156,7 @@ - # - - - - CreateData (dataset-handle) - - - Create one or more new records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - # - - - DeleteData (dataset-handle) - - - Delete one or more records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - @@ -319,27 +192,7 @@ - # - - - - DoFill (handle) - - - -/* Performs the dataset or buffer FILL() operation. - -@param handle A valid DATASET or BUFFER handle. */
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - # + F - + + - + + - # + - # + - # + - # + - + + - + + - # + - # + - + + - # + - # + - ProcessTransactionalError (Error) + readData (character, int64, dataset-handle) - ProcessTransactionalError() is called when we are processing a single -transaction, and an error occurs for one of the row changes. -When this occurs, all rows should have REJECTED set to TRUE, -and the error message should be set on the offending row.
Inherited from OpenEdge.BusinessLogic.BusinessEntity + +/******* Public | Legacy CRUD+Submit (Create, Read, Update, Delete, Submit) *******/
- # + - ReadData () + submitData (dataset-handle) - Generic routine to read data for the dataset with no filter specified.
Inherited from OpenEdge.BusinessLogic.BusinessEntity + +/* deleteData */
- # + - ReadData (character) + updateData (dataset-handle) - Generic routine to read data for the dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity + +/* createData */
- # + - ReadData (character, handle) + Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest) - Generic routine to read data for a table within a dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity + +/* getResultCount */
- + + - readData (character, int64, dataset-handle) + CHARACTER validateData (character, dataset-handle) -/******* Public | Legacy CRUD+Submit (Create, Read, Update, Delete, Submit) *******/
+/* postFetchRecord */
+ + +
+
+ + + + + Constructor Summary + + +
+ + + + + + + + + - + + +
OptionsNamePurpose
- # + - ReadData (character[]) + SparkEntity () - Generic routine to read data for the dataset.
Inherited from OpenEdge.BusinessLogic.BusinessEntity + +/* Implement constructor in each class instance to provide a handle to ProDataSet! */
- # + - ReadData (handle) + SparkEntity (dataset-handle) - Generic routine to read data for a table within a dataset with no filter specified.
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
+ + + +
+
+ + + + + Property Summary + + +
+ + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- # + - Ccs.BusinessLogic.IGetDataResponse ReadData (IGetDataRequest) + INT64 LastCount - -/* Generic read data routine using a filter object (instead of strings). -This supports CCS-compliant BE's. - -@param IGetDataRequest The filter to apply. -@param IGetDataResponse Response object. */
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
- # + - SaveRows (dataset-handle) + Spark.Core.Manager.ICatalogManager oCatalogManager - Saves/Submits one or more changed rows (creates, updates, and/or deletes) -where each changed row is processed as a separate transaction. -SaveRows() is similar to Submit(), but acts as a bulk submit, with separate -row transactions.
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
- # + - SetFillWhereString (character, handle) + Spark.Core.Manager.IClientContext oClientContext - -/* Adds a FILL-WHERE-STRING to a datasource - -@param character The where (filter) string to apply to buffer -@param handpe A buffer handle in the dataset */
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
- # + - Submit (dataset-handle) + Spark.Core.Message.IContextMessage oContextMessage - Submits one or more changed records (creates, updates, and/or deletes) -where the changed record set is processed as a single transaction.
Inherited from OpenEdge.BusinessLogic.BusinessEntity +
- + + - submitData (dataset-handle) + Spark.Core.Manager.ILoggingManager oLoggingManager - -/* deleteData */
+
- - + - - - - - updateData (dataset-handle) - - - -/* createData */
-
- - # - - - - - UpdateData (dataset-handle) - - - Update one or more new records
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - + - - - - - Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest) - - - -/* getResultCount */
-
- - # - - - - - CHARACTER validateData (character, dataset-handle) - - - -/* postFetchRecord */
-
- - # - - - - - ValidateDataSources () - - - Must verify that ProDataSource contains a data source entry for each -table specified in dataset. Also verify that they are valid handles. -A data source entry can be set to UNKNOWN as well, as allow for that.
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - ValidateFieldLists (character[]) - - - Must verify that cFieldList's EXTENT value is same as number of buffers in dataset
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - SparkEntity () - - - -/* Implement constructor in each class instance to provide a handle to ProDataSet! */
-
- - + - - - - - SparkEntity (dataset-handle) - - -
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - INT64 LastCount - - -
-
- - # - - - - - Spark.Core.Manager.ICatalogManager oCatalogManager - - -
-
- - # - - - - - Spark.Core.Manager.IClientContext oClientContext - - -
-
- - + - - - - - Spark.Core.Message.IContextMessage oContextMessage - - -
-
- - # - - - - - Spark.Core.Manager.ILoggingManager oLoggingManager - - -
-
- - # - - - - - HANDLE ProDataSet - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - HANDLE ProDataSource - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- - # - - - - - CHARACTER SkipList - - -
Inherited from OpenEdge.BusinessLogic.BusinessEntity -
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
-
- - Top - - -
-

PROTECTED AttachDataSources ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Attach Data Sources to DataSet's buffers
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED AttachDataSources (character[])

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Attach Data Sources to DataSet's buffers
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- cFieldList - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CommitData (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to save or commit data for a dataset.
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- iRowState - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED Ccs.BusinessLogic.IGetTableResultCountResponse CountBufferRecords (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Returns the count of the total number of result records currently in a buffer
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pData - - HANDLE - -
- - -
- Returns - - Ccs.BusinessLogic.IGetTableResultCountResponse - -
- - IGetTableResultCountResponse The IGetTableResultCountResponse instance for the request -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED Ccs.BusinessLogic.IGetResultCountResponse CountDatasetRecords (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Returns the count of the total number of result records currently in a dataset.
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pData - - HANDLE - -
- - -
- Returns - - Ccs.BusinessLogic.IGetResultCountResponse - -
- - IGetResultCountResponse The IGetResultCountResponse instance for the request -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC createData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* readData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CreateData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Create one or more new records
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC deleteData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* updateData
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED DeleteData (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Delete one or more records
Notes:
-
- - - - - - - - - - - - - - - -
- Parameters: -
- hDataSet - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC dispose ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* initialize
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED DoFill (handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
/* Performs the dataset or buffer FILL() operation.
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pDataset - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED INT64 filterData (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* getFilter
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcFilter - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER getClassName ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Ccs.BusinessLogic.IGetDataResponse getData (IGetDataRequest, dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poRequest - - Ccs.BusinessLogic.IGetDataRequest - -
- - -
- phDataSet - - DATASET-HANDLE - -
- - -
- Returns - - Ccs.BusinessLogic.IGetDataResponse - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC getDataset (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- phDataset - - DATASET-HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED Progress.Json.ObjectModel.JsonObject getFilterObject (longchar)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* getClassName
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRawFilter - - LONGCHAR - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER getFilterOnly (JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* filterData
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poFilter - - Progress.Json.ObjectModel.JsonObject - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - + +
+ +
+
+ +
+ + + + + Method Detail -
-

PROTECTED INT64 getRecCount (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* getFilterOnly
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRawFilter - - CHARACTER - -
- - -
- Returns - - INT64 - -
- - -
-
-
-
-
- -
+ +
- Top - + Top +
-

PROTECTED INT64 getRecCount (character, handle)

+

createData (dataset-handle)

@@ -2415,54 +766,22 @@

PROTECTED INT64

/* getRecCount
+
/* readData
- - - - - - - - - - - - - - - - - - - + Parameters: + + + + @@ -2484,11 +803,11 @@

PROTECTED INT64 getResultCount (IGetDataRequest)"> + Top + -

PUBLIC Ccs.BusinessLogic.IGetResultCountResponse getResultCount (IGetDataRequest)

+

deleteData (dataset-handle)

- Parameters: -
- pcFilter - - CHARACTER - -
- - -
- phTable - - HANDLE - -
- - -
- Returns + phDataSet - INT64 + DATASET-HANDLE
@@ -2509,7 +828,7 @@

PUBLIC Ccs.BusinessLogic.IGetResultCountResponse
-
/* getData
+
/* updateData
@@ -2521,26 +840,10 @@

PUBLIC Ccs.BusinessLogic.IGetResultCountResponse

- - - - - - - - @@ -2562,11 +865,11 @@

PUBLIC Ccs.BusinessLogic.IGetResultCountResponse
- Top - + Top +
-

PUBLIC initialize ()

+

dispose ()

- poRequest - - Ccs.BusinessLogic.IGetDataRequest - -
- - -
- Returns + phDataSet - Ccs.BusinessLogic.IGetResultCountResponse + DATASET-HANDLE
-
@@ -2587,7 +890,7 @@

PUBLIC in
-
+
/* initialize
- -
-
-
-
-
- -

-
- - Top - - -
-

PUBLIC postRowFill (dataset-handle)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* getDataset
-
- - - - - - @@ -2794,11 +1051,11 @@

PUBLIC po

- Parameters: -
- phDataset + Returns - DATASET-HANDLE + CHARACTER
- Top - + Top +
-

PROTECTED preCommitLogic (character, dataset-handle)

+

Ccs.BusinessLogic.IGetDataResponse getData (IGetDataRequest, dataset-handle)

-
@@ -2819,7 +1076,7 @@

PROTECTED
-
/* getRecCount
+
@@ -2831,10 +1088,10 @@

PROTECTED

@@ -2861,58 +1118,12 @@

PROTECTED

- -
- pcAction + poRequest - CHARACTER + Ccs.BusinessLogic.IGetDataRequest
-
-
-
-
- -

-
- - Top - - -
-

PROTECTED ProcessTransactionalError (Error)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: ProcessTransactionalError() is called when we are processing a single
transaction, and an error occurs for one of the row changes.
When this occurs, all rows should have REJECTED set to TRUE,
and the error message should be set on the offending row.
Notes: If there is no bi data being sent between client and server (CUD_NOBI),
then we throw the error (resulting in http 500 error),
and we also must back out all changes.
-
- - - - - - - + @@ -2934,57 +1145,11 @@

PROTECTED

- -
- Parameters: -
- err + Returns - Progress.Lang.Error + Ccs.BusinessLogic.IGetDataResponse
- Top - - -
-

PROTECTED ReadData ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Generic routine to read data for the dataset with no filter specified.
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - + Top +
-

PROTECTED ReadData (character)

+

getDataset (dataset-handle)

@@ -3001,11 +1166,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Generic routine to read data for the dataset.
Notes:
+
@@ -3017,10 +1182,10 @@

PROTECTED

@@ -3042,11 +1207,11 @@

PROTECTED

- cFilter + phDataset - CHARACTER + DATASET-HANDLE
- Top - + Top +
-

PROTECTED ReadData (character, handle)

+

Progress.Json.ObjectModel.JsonObject getFilterObject (longchar)

@@ -3063,11 +1228,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Generic routine to read data for a table within a dataset.
Notes:
+
/* getClassName
@@ -3079,10 +1244,10 @@

PROTECTED

@@ -3095,10 +1260,10 @@

PROTECTED

@@ -3120,11 +1285,11 @@

PROTECTED

- cFilter + pcRawFilter - CHARACTER + LONGCHAR
- hBuffer + Returns - HANDLE + Progress.Json.ObjectModel.JsonObject
- Top - + Top +
-

PUBLIC readData (character, int64, dataset-handle)

+

CHARACTER getFilterOnly (JsonObject)

@@ -3145,7 +1310,7 @@

PUBLIC re
-
+
/* filterData
@@ -3157,26 +1322,10 @@

PUBLIC re

- - - - - - - - @@ -3189,10 +1338,10 @@

PUBLIC re

@@ -3214,11 +1363,11 @@

PUBLIC re

- filter - - CHARACTER - -
- - -
- numRecs + poFilter - INT64 + Progress.Json.ObjectModel.JsonObject
- phDataSet + Returns - DATASET-HANDLE + CHARACTER
- Top - + Top +
-

PROTECTED ReadData (character[])

+

INT64 getRecCount (character)

@@ -3235,11 +1384,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Generic routine to read data for the dataset.
Notes:
+
/* getFilterOnly
@@ -3251,7 +1400,7 @@

PROTECTED

+ + + + + + + +
- cFilter + pcRawFilter CHARACTER @@ -3264,6 +1413,22 @@

PROTECTED

+
+ Returns + + INT64 + +
+ +
@@ -3276,11 +1441,11 @@

PROTECTED

- Top - + Top +
-

PROTECTED ReadData (handle)

+

INT64 getRecCount (character, handle)

@@ -3297,11 +1462,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Generic routine to read data for a table within a dataset with no filter specified.
Notes:
+
/* getRecCount
@@ -3313,7 +1478,23 @@

PROTECTED

+ + + + + + + + + + + + + + + +
- hBuffer + pcFilter + + CHARACTER + +
+ + +
+ phTable HANDLE @@ -3326,6 +1507,22 @@

PROTECTED

+
+ Returns + + INT64 + +
+ +
@@ -3338,11 +1535,11 @@

PROTECTED

- Top - + Top +
-

PROTECTED Ccs.BusinessLogic.IGetDataResponse ReadData (IGetDataRequest)

+

Ccs.BusinessLogic.IGetResultCountResponse getResultCount (IGetDataRequest)

@@ -3359,11 +1556,11 @@

PROTECTED Ccs.BusinessLogic.IGetDataResponse

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
/* Generic read data routine using a filter object (instead of strings).
This supports CCS-compliant BE's.
+
/* getData
@@ -3375,7 +1572,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataResponse

@@ -3416,11 +1613,11 @@

PROTECTED Ccs.BusinessLogic.IGetDataResponse
- Top - + Top +
-

PROTECTED SaveRows (dataset-handle)

+

initialize ()

- pGetRequest + poRequest Ccs.BusinessLogic.IGetDataRequest @@ -3394,7 +1591,7 @@

PROTECTED Ccs.BusinessLogic.IGetDataResponse Returns

- Ccs.BusinessLogic.IGetDataResponse + Ccs.BusinessLogic.IGetResultCountResponse
@@ -3437,37 +1634,21 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Saves/Submits one or more changed rows (creates, updates, and/or deletes)
where each changed row is processed as a separate transaction.
SaveRows() is similar to Submit(), but acts as a bulk submit, with separate
row transactions.
Notes:
+
- + - - - - - - - - -
- hDataSet - - DATASET-HANDLE - -
- - -
@@ -3478,11 +1659,11 @@

PROTECTED

- Top - + Top +
-

PROTECTED SetFillWhereString (character, handle)

+

postCommitLogic (character, dataset-handle)

@@ -3499,11 +1680,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
/* Adds a FILL-WHERE-STRING to a datasource
+
/* preCommitLogic
@@ -3515,7 +1696,7 @@

PROTECTED

@@ -3556,11 +1737,57 @@

PROTECTED

+ +
- cWhere + pcAction CHARACTER @@ -3531,10 +1712,10 @@

PROTECTED

- hBuffer + phDataSet - HANDLE + DATASET-HANDLE
- Top - + Top + + +
+

postFetchRecord ()

+ + + + + + +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
/* postCommitLogic
+
+ + + +
+
+
+
+
+
+
+ + Top +
-

PROTECTED Submit (dataset-handle)

+

postRowFill (dataset-handle)

@@ -3577,11 +1804,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Submits one or more changed records (creates, updates, and/or deletes)
where the changed record set is processed as a single transaction.
Notes:
+
/* getDataset
@@ -3593,7 +1820,7 @@

PROTECTED

- hDataSet + phDataset DATASET-HANDLE @@ -3618,11 +1845,11 @@

PROTECTED

- Top - + Top +
-

PUBLIC submitData (dataset-handle)

+

preCommitLogic (character, dataset-handle)

@@ -3643,7 +1870,7 @@

PUBLIC su
-
/* deleteData
+
/* getRecCount
@@ -3654,6 +1881,22 @@

PUBLIC su

+ + + + + + + + @@ -3680,11 +1923,11 @@

PUBLIC su

+ pcAction + + CHARACTER + +
+ + +
phDataSet
- Top - + Top +
-

PUBLIC updateData (dataset-handle)

+

readData (character, int64, dataset-handle)

@@ -3705,7 +1948,7 @@

PUBLIC up
-
/* createData
+
@@ -3716,6 +1959,38 @@

PUBLIC up

+ + + + + + + + + + + + + + + + @@ -3742,11 +2017,11 @@

PUBLIC up

+ filter + + CHARACTER + +
+ + +
+ numRecs + + INT64 + +
+ + +
phDataSet
- Top - + Top +
-

PROTECTED UpdateData (dataset-handle)

+

submitData (dataset-handle)

@@ -3763,11 +2038,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Update one or more new records
Notes:
+
/* deleteData
@@ -3779,7 +2054,7 @@

PROTECTED

- -
- hDataSet + phDataSet DATASET-HANDLE @@ -3804,11 +2079,11 @@

PROTECTED

- Top - + Top +
-

PUBLIC Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest)

+

updateData (dataset-handle)

@@ -3829,7 +2104,7 @@

PUBLIC Progress.Lang.Object

/* getResultCount
+
/* createData
@@ -3854,38 +2129,6 @@

PUBLIC Progress.Lang.Object
- Top - + Top +
-

PROTECTED CHARACTER validateData (character, dataset-handle)

+

Progress.Lang.Object updateData (dataset-handle, IUpdateDataRequest)

@@ -3923,7 +2166,7 @@

PROTECTED CHARACTER

/* postFetchRecord
+
/* getResultCount
@@ -3935,10 +2178,10 @@

PROTECTED CHARACTER

@@ -3970,7 +2213,7 @@

PROTECTED CHARACTER
- Top - - -
-

PROTECTED ValidateDataSources ()

-
- phDataSet + poUpdateDataRequest - DATASET-HANDLE + Ccs.BusinessLogic.IUpdateDataRequest
- - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
Purpose: Must verify that ProDataSource contains a data source entry for each
table specified in dataset. Also verify that they are valid handles.
A data source entry can be set to UNKNOWN as well, as allow for that.
Notes:
-
- - - -
-
-
-
-
-
-
- - Top - + Top +
-

PROTECTED ValidateFieldLists (character[])

+

CHARACTER validateData (character, dataset-handle)

@@ -4059,11 +2256,11 @@

PROTECTED

- Inherited from OpenEdge.BusinessLogic.BusinessEntity +
-
Purpose: Must verify that cFieldList's EXTENT value is same as number of buffers in dataset
Notes:
+
/* postFetchRecord
@@ -4075,7 +2272,7 @@

PROTECTED

+ + + + + + + + + + + + + + + +
- cFieldList + pcAction CHARACTER @@ -4088,6 +2285,38 @@

PROTECTED

+
+ phDataSet + + DATASET-HANDLE + +
+ + +
+ Returns + + CHARACTER + +
+ +
@@ -4122,7 +2351,7 @@

PROTECTED

-

PUBLIC SparkEntity ()

+

SparkEntity ()

@@ -4168,7 +2397,7 @@

PUBLIC Sp -

PUBLIC SparkEntity (dataset-handle)

+

SparkEntity (dataset-handle)

@@ -4266,7 +2495,7 @@

PUBLIC Sp -

PUBLIC INT64 LastCount

+

INT64 LastCount

@@ -4328,7 +2557,7 @@

PUBLIC INT64 Spark.Core.Manager.ICatalogManager oCatalogManager"> -

PROTECTED Spark.Core.Manager.ICatalogManager oCatalogManager

+

Spark.Core.Manager.ICatalogManager oCatalogManager

@@ -4390,7 +2619,7 @@

PROTECTED Spark.Core.Manager.IClientContext oClientContext"> -

PROTECTED Spark.Core.Manager.IClientContext oClientContext

+

Spark.Core.Manager.IClientContext oClientContext

@@ -4452,7 +2681,7 @@

PROTECTED Spark.Core.Message.IContextMessage oContextMessage"> -

PUBLIC Spark.Core.Message.IContextMessage oContextMessage

+

Spark.Core.Message.IContextMessage oContextMessage

@@ -4514,7 +2743,7 @@

PUBLIC Spark.Core.Manager.ILoggingManager oLoggingManager"> -

PROTECTED Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

- - -
@@ -4560,192 +2789,6 @@

PROTECTED ProDataSet"> - - -

PROTECTED HANDLE ProDataSet

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - HANDLE - -
- - -
-
-
-
-
- -
-
- - Top - - -
-

PROTECTED HANDLE ProDataSource

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - - - -
- Returns - - HANDLE - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER SkipList

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from OpenEdge.BusinessLogic.BusinessEntity -
-
-
-
-
- - - - - - - - - -
- Returns - - CHARACTER - -
- -
@@ -4760,6 +2803,6 @@

PROTECTED CHARACTER addProperty (character, character, character, character, character)">

-

PUBLIC addProperty (character, character, character, character, character)

+

addProperty (character, character, character, character, character)

@@ -624,7 +624,7 @@

PUBLIC ad -

PUBLIC addProperty (character, character, character, character, character, character)

+

addProperty (character, character, character, character, character, character)

@@ -766,7 +766,7 @@

PUBLIC ad -

PUBLIC describeCreate (character, character, character)

+

describeCreate (character, character, character)

@@ -860,7 +860,7 @@

PUBLIC de -

PUBLIC describeDelete (character, character, character)

+

describeDelete (character, character, character)

@@ -954,7 +954,7 @@

PUBLIC de -

PUBLIC describeEntity (character, character)

+

describeEntity (character, character)

@@ -1032,7 +1032,7 @@

PUBLIC de -

PUBLIC describeEntity (character, character, character)

+

describeEntity (character, character, character)

@@ -1126,7 +1126,7 @@

PUBLIC de -

PUBLIC describeEntity (character, character, character, character)

+

describeEntity (character, character, character, character)

@@ -1236,7 +1236,7 @@

PUBLIC de -

PUBLIC describeFields (character, character, JsonObject)

+

describeFields (character, character, JsonObject)

@@ -1330,7 +1330,7 @@

PUBLIC de -

PUBLIC describeFields (character, character, longchar)

+

describeFields (character, character, longchar)

@@ -1424,7 +1424,7 @@

PUBLIC de -

PUBLIC describeFields (FieldInfo)

+

describeFields (FieldInfo)

@@ -1486,7 +1486,7 @@

PUBLIC de -

PUBLIC describeInvoke (character, character, character, character, character)

+

describeInvoke (character, character, character, character, character)

@@ -1612,7 +1612,7 @@

PUBLIC de -

PUBLIC describeRead (character, character, character)

+

describeRead (character, character, character)

@@ -1706,7 +1706,7 @@

PUBLIC de -

PUBLIC describeResource (character, character, character, character, character, character)

+

describeResource (character, character, character, character, character, character)

@@ -1848,7 +1848,7 @@

PUBLIC de -

PUBLIC describeSubmit (character, character, character)

+

describeSubmit (character, character, character)

@@ -1942,7 +1942,7 @@

PUBLIC de -

PUBLIC describeUpdate (character, character, character)

+

describeUpdate (character, character, character)

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -215,7 +215,7 @@ @@ -232,7 +232,7 @@ @@ -249,7 +249,7 @@ @@ -266,7 +266,7 @@ @@ -283,7 +283,7 @@ @@ -300,7 +300,7 @@ @@ -317,7 +317,7 @@ @@ -334,7 +334,7 @@ @@ -351,7 +351,7 @@ @@ -368,7 +368,7 @@ @@ -385,7 +385,7 @@ @@ -402,7 +402,7 @@ @@ -419,7 +419,7 @@ @@ -436,7 +436,7 @@ @@ -453,7 +453,7 @@ @@ -470,7 +470,7 @@ @@ -487,7 +487,7 @@ @@ -504,7 +504,7 @@ @@ -521,7 +521,7 @@ @@ -538,7 +538,7 @@ @@ -555,7 +555,7 @@ @@ -572,7 +572,7 @@ @@ -589,7 +589,7 @@ @@ -606,7 +606,7 @@ @@ -623,7 +623,7 @@ @@ -640,7 +640,7 @@ @@ -657,7 +657,7 @@ @@ -674,7 +674,7 @@ @@ -691,7 +691,7 @@ @@ -708,7 +708,7 @@ @@ -725,7 +725,7 @@ @@ -788,7 +788,7 @@ @@ -805,7 +805,7 @@ @@ -822,7 +822,7 @@ @@ -861,7 +861,7 @@ -

PROTECTED createAppError (character, integer, character, character, character, character, character, character, character, character, character)

+

createAppError (character, integer, character, character, character, character, character, character, character, character, character)

@@ -2088,6 +2088,6 @@

PUBLIC de

--> - 04.15.2022 11:52:35 + 04.18.2022 11:20:35 diff --git a/docs/PCTDoc/Spark.Core.Util.ApplicationError.html b/docs/PCTDoc/Spark.Core.Util.ApplicationError.html index 20f16957..e56523a1 100644 --- a/docs/PCTDoc/Spark.Core.Util.ApplicationError.html +++ b/docs/PCTDoc/Spark.Core.Util.ApplicationError.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- # + - # + - # + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -1083,7 +1083,7 @@

PROTECTED -

PROTECTED createAppError (character, integer, integer, character, character, character, character, character, character, character, character, character)

+

createAppError (character, integer, integer, character, character, character, character, character, character, character, character, character)

@@ -1321,7 +1321,7 @@

PROTECTED -

PROTECTED setErrorType ()

+

setErrorType ()

@@ -1385,7 +1385,7 @@

PROTECTED -

PUBLIC ApplicationError ()

+

ApplicationError ()

@@ -1431,7 +1431,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character)

+

ApplicationError (character)

@@ -1493,7 +1493,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character)

+

ApplicationError (character, character)

@@ -1571,7 +1571,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character)

+

ApplicationError (character, character, character)

@@ -1665,7 +1665,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character)

+

ApplicationError (character, character, character, character)

@@ -1775,7 +1775,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character)

+

ApplicationError (character, character, character, character, character)

@@ -1901,7 +1901,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character, character)

+

ApplicationError (character, character, character, character, character, character)

@@ -2043,7 +2043,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character, character, character)

+

ApplicationError (character, character, character, character, character, character, character)

@@ -2201,7 +2201,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character, character, character, character)

+

ApplicationError (character, character, character, character, character, character, character, character)

@@ -2375,7 +2375,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character, character, character, character, character)

+

ApplicationError (character, character, character, character, character, character, character, character, character)

@@ -2565,7 +2565,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, character, character, character, character, character, character, character, character, character)

+

ApplicationError (character, character, character, character, character, character, character, character, character, character)

@@ -2771,7 +2771,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer)

+

ApplicationError (character, integer)

@@ -2849,7 +2849,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character)

+

ApplicationError (character, integer, character)

@@ -2943,7 +2943,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character)

+

ApplicationError (character, integer, character, character)

@@ -3053,7 +3053,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character)

+

ApplicationError (character, integer, character, character, character)

@@ -3179,7 +3179,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character)

@@ -3321,7 +3321,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character, character)

@@ -3479,7 +3479,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character, character, character)

@@ -3653,7 +3653,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character, character, character, character)

@@ -3843,7 +3843,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character, character, character, character, character)

@@ -4049,7 +4049,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, character, character, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, character, character, character, character, character, character, character, character, character)

@@ -4271,7 +4271,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer)

+

ApplicationError (character, integer, integer)

@@ -4365,7 +4365,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character)

+

ApplicationError (character, integer, integer, character)

@@ -4475,7 +4475,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character)

+

ApplicationError (character, integer, integer, character, character)

@@ -4601,7 +4601,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character)

@@ -4743,7 +4743,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character)

@@ -4901,7 +4901,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character, character)

@@ -5075,7 +5075,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character, character, character)

@@ -5265,7 +5265,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character, character, character, character)

@@ -5471,7 +5471,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character, character, character, character, character)

@@ -5693,7 +5693,7 @@

PUBLIC Ap -

PUBLIC ApplicationError (character, integer, integer, character, character, character, character, character, character, character, character, character)

+

ApplicationError (character, integer, integer, character, character, character, character, character, character, character, character, character)

@@ -5967,7 +5967,7 @@

PUBLIC Ap -

PUBLIC CHARACTER errorField

+

CHARACTER errorField

@@ -6029,7 +6029,7 @@

PUBLIC CHARACTER errorType"> -

PUBLIC Spark.Core.Util.ErrorTypeEnum errorType

+

Spark.Core.Util.ErrorTypeEnum errorType

@@ -6091,7 +6091,7 @@

PUBLIC Spark.Core.Util.ErrorTypeEnum originalErrorMessage"> -

PUBLIC CHARACTER originalErrorMessage

+

CHARACTER originalErrorMessage

@@ -6151,6 +6151,6 @@

PUBLIC CHARACTER ConvertToHex (character)"> -

PUBLIC CHARACTER ConvertToHex (character)

+

CHARACTER ConvertToHex (character)

@@ -395,7 +395,7 @@

PUBLIC CHARACTER DecodeData (character)"> -

PUBLIC CHARACTER DecodeData (character)

+

CHARACTER DecodeData (character)

@@ -473,7 +473,7 @@

PUBLIC CHARACTER DecodeToBinary (character)"> -

PRIVATE CHARACTER DecodeToBinary (character)

+

CHARACTER DecodeToBinary (character)

@@ -551,7 +551,7 @@

PRIVATE CHARACTER EncodeData (character)"> -

PUBLIC CHARACTER EncodeData (character)

+

CHARACTER EncodeData (character)

@@ -155,7 +155,7 @@ @@ -173,7 +173,7 @@ @@ -191,7 +191,7 @@ @@ -300,7 +300,7 @@ -

PUBLIC INT64 BinaryAND (int64, int64)

+

INT64 BinaryAND (int64, int64)

@@ -727,6 +727,6 @@

STATIC Ba

--> - 04.15.2022 11:52:37 + 04.18.2022 11:20:36 diff --git a/docs/PCTDoc/Spark.Core.Util.Binary.html b/docs/PCTDoc/Spark.Core.Util.Binary.html index 73b55e13..9d70aac1 100644 --- a/docs/PCTDoc/Spark.Core.Util.Binary.html +++ b/docs/PCTDoc/Spark.Core.Util.Binary.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + +
@@ -394,7 +394,7 @@

PUBLIC INT64 BinaryOR (integer, integer)"> -

PUBLIC INTEGER BinaryOR (integer, integer)

+

INTEGER BinaryOR (integer, integer)

- - +
@@ -488,7 +488,7 @@

PUBLIC INTEGER BinaryXOR (integer, integer)"> -

PUBLIC INTEGER BinaryXOR (integer, integer)

+

INTEGER BinaryXOR (integer, integer)

@@ -260,7 +226,7 @@ -->

- + - - - - - - - - - -
@@ -582,7 +582,7 @@

PUBLIC INTEGER ShiftLeft (integer, integer)"> -

PUBLIC INTEGER ShiftLeft (integer, integer)

+

INTEGER ShiftLeft (integer, integer)

- - - - - - - - - +
@@ -728,6 +728,6 @@

PUBLIC INTEGER getScope () - -

-
Inherited from Spark.Core.Util.LifecycleScope -
- - + - - - - - CHARACTER ToString () - - -
Inherited from Spark.Core.Util.LifecycleScope -
- + -->
@@ -195,7 +161,7 @@
- + +
- Returns - - Progress.Lang.Object - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC CHARACTER ToString ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.LifecycleScope -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- + -->
@@ -422,7 +264,7 @@

PUBLIC CHARACTER ContainerScope (character)">

-

PUBLIC ContainerScope (character)

+

ContainerScope (character)

@@ -155,7 +155,7 @@ @@ -173,7 +173,7 @@ @@ -191,7 +191,7 @@ @@ -300,7 +300,7 @@ -

PUBLIC CHARACTER BinToHex (character)

+

CHARACTER BinToHex (character)

@@ -518,6 +360,6 @@

PUBLIC Co

--> - 04.15.2022 11:52:37 + 04.18.2022 11:20:36 diff --git a/docs/PCTDoc/Spark.Core.Util.Convert.html b/docs/PCTDoc/Spark.Core.Util.Convert.html index fd95d511..b98abacf 100644 --- a/docs/PCTDoc/Spark.Core.Util.Convert.html +++ b/docs/PCTDoc/Spark.Core.Util.Convert.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + +
@@ -378,7 +378,7 @@

PUBLIC CHARACTER BinToInt (character)"> -

PUBLIC INTEGER BinToInt (character)

+

INTEGER BinToInt (character)

@@ -456,7 +456,7 @@

PUBLIC INTEGER IntToBin (int64)"> -

PUBLIC CHARACTER IntToBin (int64)

+

CHARACTER IntToBin (int64)

@@ -534,7 +534,7 @@

PUBLIC CHARACTER IntToHex (int64)"> -

PUBLIC CHARACTER IntToHex (int64)

+

CHARACTER IntToHex (int64)

@@ -664,6 +664,6 @@

PUBLIC CHARACTER base64Decode (longchar)"> -

PUBLIC LONGCHAR base64Decode (longchar)

+

LONGCHAR base64Decode (longchar)

@@ -596,7 +596,7 @@

PUBLIC LONGCHAR base64Encode (longchar)"> -

PUBLIC LONGCHAR base64Encode (longchar)

+

LONGCHAR base64Encode (longchar)

@@ -674,7 +674,7 @@

PUBLIC LONGCHAR decryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)"> -

PUBLIC LONGCHAR decryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

+

LONGCHAR decryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

@@ -816,7 +816,7 @@

PUBLIC LONGCHAR decryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)"> -

PUBLIC LONGCHAR decryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)

+

LONGCHAR decryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)

@@ -942,7 +942,7 @@

PUBLIC LONGCHAR decryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)"> -

PUBLIC MEMPTR decryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)

+

MEMPTR decryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)

@@ -1068,7 +1068,7 @@

PUBLIC MEMPTR encryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)"> -

PUBLIC LONGCHAR encryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

+

LONGCHAR encryptCode (longchar, character, raw, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

@@ -1210,7 +1210,7 @@

PUBLIC LONGCHAR encryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)"> -

PUBLIC LONGCHAR encryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)

+

LONGCHAR encryptCode (longchar, raw, raw, CryptoEncryptAlgorithmEnum)

@@ -1336,7 +1336,7 @@

PUBLIC LONGCHAR encryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)"> -

PUBLIC MEMPTR encryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)

+

MEMPTR encryptValue (memptr, raw, raw, CryptoEncryptAlgorithmEnum)

@@ -1462,7 +1462,7 @@

PUBLIC MEMPTR getEncryptInitVector (character)"> -

PUBLIC RAW getEncryptInitVector (character)

+

RAW getEncryptInitVector (character)

@@ -1540,7 +1540,7 @@

PUBLIC RAW -

PUBLIC RAW getEncryptKey (character, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

+

RAW getEncryptKey (character, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum)

@@ -1650,7 +1650,7 @@

PUBLIC RAW -

PUBLIC RAW getEncryptKey (character, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum, raw)

+

RAW getEncryptKey (character, CryptoEncryptAlgorithmEnum, CryptoPbeHashAlgorithmEnum, raw)

@@ -1776,7 +1776,7 @@

PUBLIC RAW -

PUBLIC RAW getRandomEncryptKey (CryptoEncryptAlgorithmEnum)

+

RAW getRandomEncryptKey (CryptoEncryptAlgorithmEnum)

@@ -160,7 +160,7 @@ @@ -183,7 +183,7 @@ @@ -297,7 +297,7 @@ -

PUBLIC emptyDataSet (handle)

+

emptyDataSet (handle)

@@ -1906,6 +1906,6 @@

PUBLIC RAW

--> - 04.15.2022 11:52:37 + 04.18.2022 11:20:36 diff --git a/docs/PCTDoc/Spark.Core.Util.DataSetTools.html b/docs/PCTDoc/Spark.Core.Util.DataSetTools.html index 7a2ad88d..19dacbff 100644 --- a/docs/PCTDoc/Spark.Core.Util.DataSetTools.html +++ b/docs/PCTDoc/Spark.Core.Util.DataSetTools.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + +
@@ -359,7 +359,7 @@

PUBLIC em -

PUBLIC resetAsNew (handle)

+

resetAsNew (handle)

@@ -421,7 +421,7 @@

PUBLIC re -

PUBLIC setTrackingChanges (handle, logical)

+

setTrackingChanges (handle, logical)

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -189,7 +189,7 @@ @@ -206,7 +206,7 @@ @@ -223,7 +223,7 @@ @@ -240,7 +240,7 @@ @@ -257,7 +257,7 @@ @@ -274,7 +274,7 @@ @@ -291,7 +291,7 @@ @@ -308,7 +308,7 @@ @@ -325,7 +325,7 @@ @@ -342,7 +342,7 @@ @@ -359,7 +359,7 @@ @@ -376,7 +376,7 @@ @@ -393,7 +393,7 @@ @@ -410,7 +410,7 @@ @@ -427,7 +427,7 @@ @@ -444,7 +444,7 @@ @@ -461,7 +461,7 @@ @@ -478,7 +478,7 @@ @@ -495,7 +495,7 @@ @@ -512,7 +512,7 @@ @@ -529,7 +529,7 @@ @@ -546,7 +546,7 @@ @@ -563,7 +563,7 @@ @@ -580,7 +580,7 @@ @@ -597,7 +597,7 @@ @@ -614,7 +614,7 @@ @@ -631,7 +631,7 @@ @@ -648,7 +648,7 @@ @@ -665,7 +665,7 @@ @@ -682,7 +682,7 @@ @@ -722,7 +722,7 @@ @@ -739,7 +739,7 @@ @@ -802,7 +802,7 @@ @@ -819,7 +819,7 @@ @@ -836,7 +836,7 @@ @@ -875,7 +875,7 @@ -

PUBLIC executeMethod ()

+

executeMethod ()

@@ -551,6 +551,6 @@

PUBLIC se

--> - 04.15.2022 11:52:38 + 04.18.2022 11:20:36 diff --git a/docs/PCTDoc/Spark.Core.Util.DynamicCaller.html b/docs/PCTDoc/Spark.Core.Util.DynamicCaller.html index bbb7beaa..cb26edfe 100644 --- a/docs/PCTDoc/Spark.Core.Util.DynamicCaller.html +++ b/docs/PCTDoc/Spark.Core.Util.DynamicCaller.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - - + - # + - - +
@@ -921,7 +921,7 @@

PUBLIC ex -

PUBLIC executeMethod (Object)

+

executeMethod (Object)

@@ -983,7 +983,7 @@

PUBLIC ex -

PUBLIC Progress.Json.ObjectModel.JsonArray getJsonArrayParam (character)

+

Progress.Json.ObjectModel.JsonArray getJsonArrayParam (character)

@@ -1061,7 +1061,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray getJsonObjectParam (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getJsonObjectParam (character)

+

Progress.Json.ObjectModel.JsonObject getJsonObjectParam (character)

@@ -1139,7 +1139,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParameter (character, dataset-handle)"> -

PUBLIC LOGICAL getParameter (character, dataset-handle)

+

LOGICAL getParameter (character, dataset-handle)

@@ -1233,7 +1233,7 @@

PUBLIC LOGICAL getParameter (character, date)"> -

PUBLIC LOGICAL getParameter (character, date)

+

LOGICAL getParameter (character, date)

@@ -1327,7 +1327,7 @@

PUBLIC LOGICAL getParameter (character, datetime)"> -

PUBLIC LOGICAL getParameter (character, datetime)

+

LOGICAL getParameter (character, datetime)

@@ -1421,7 +1421,7 @@

PUBLIC LOGICAL getParameter (character, datetime-tz)"> -

PUBLIC LOGICAL getParameter (character, datetime-tz)

+

LOGICAL getParameter (character, datetime-tz)

@@ -1515,7 +1515,7 @@

PUBLIC LOGICAL getParameter (character, decimal)"> -

PUBLIC LOGICAL getParameter (character, decimal)

+

LOGICAL getParameter (character, decimal)

@@ -1609,7 +1609,7 @@

PUBLIC LOGICAL getParameter (character, int64)"> -

PUBLIC LOGICAL getParameter (character, int64)

+

LOGICAL getParameter (character, int64)

@@ -1703,7 +1703,7 @@

PUBLIC LOGICAL getParameter (character, integer)"> -

PUBLIC LOGICAL getParameter (character, integer)

+

LOGICAL getParameter (character, integer)

@@ -1797,7 +1797,7 @@

PUBLIC LOGICAL getParameter (character, logical)"> -

PUBLIC LOGICAL getParameter (character, logical)

+

LOGICAL getParameter (character, logical)

@@ -1891,7 +1891,7 @@

PUBLIC LOGICAL getParameter (character, longchar)"> -

PUBLIC LOGICAL getParameter (character, longchar)

+

LOGICAL getParameter (character, longchar)

@@ -1985,7 +1985,7 @@

PUBLIC LOGICAL getParameter (character, Object)"> -

PUBLIC LOGICAL getParameter (character, Object)

+

LOGICAL getParameter (character, Object)

@@ -2079,7 +2079,7 @@

PUBLIC LOGICAL getParameter (character, raw)"> -

PUBLIC LOGICAL getParameter (character, raw)

+

LOGICAL getParameter (character, raw)

@@ -2173,7 +2173,7 @@

PUBLIC LOGICAL getParameter (character, rowid)"> -

PUBLIC LOGICAL getParameter (character, rowid)

+

LOGICAL getParameter (character, rowid)

@@ -2267,7 +2267,7 @@

PUBLIC LOGICAL getParameter (character, table-handle)"> -

PUBLIC LOGICAL getParameter (character, table-handle)

+

LOGICAL getParameter (character, table-handle)

@@ -2361,7 +2361,7 @@

PUBLIC LOGICAL getParameterHandle (character, handle)"> -

PUBLIC LOGICAL getParameterHandle (character, handle)

+

LOGICAL getParameterHandle (character, handle)

@@ -2455,7 +2455,7 @@

PUBLIC LOGICAL isInitialized ()"> -

PUBLIC LOGICAL isInitialized ()

+

LOGICAL isInitialized ()

@@ -2517,7 +2517,7 @@

PUBLIC LOGICAL parameterExists (character, character)"> -

PUBLIC LOGICAL parameterExists (character, character)

+

LOGICAL parameterExists (character, character)

@@ -2611,7 +2611,7 @@

PUBLIC LOGICAL setParameter (character, dataset-handle)"> -

PUBLIC LOGICAL setParameter (character, dataset-handle)

+

LOGICAL setParameter (character, dataset-handle)

@@ -2705,7 +2705,7 @@

PUBLIC LOGICAL setParameter (character, date)"> -

PUBLIC LOGICAL setParameter (character, date)

+

LOGICAL setParameter (character, date)

@@ -2799,7 +2799,7 @@

PUBLIC LOGICAL setParameter (character, datetime)"> -

PUBLIC LOGICAL setParameter (character, datetime)

+

LOGICAL setParameter (character, datetime)

@@ -2893,7 +2893,7 @@

PUBLIC LOGICAL setParameter (character, datetime-tz)"> -

PUBLIC LOGICAL setParameter (character, datetime-tz)

+

LOGICAL setParameter (character, datetime-tz)

@@ -2987,7 +2987,7 @@

PUBLIC LOGICAL setParameter (character, decimal)"> -

PUBLIC LOGICAL setParameter (character, decimal)

+

LOGICAL setParameter (character, decimal)

@@ -3081,7 +3081,7 @@

PUBLIC LOGICAL setParameter (character, int64)"> -

PUBLIC LOGICAL setParameter (character, int64)

+

LOGICAL setParameter (character, int64)

@@ -3175,7 +3175,7 @@

PUBLIC LOGICAL setParameter (character, integer)"> -

PUBLIC LOGICAL setParameter (character, integer)

+

LOGICAL setParameter (character, integer)

@@ -3269,7 +3269,7 @@

PUBLIC LOGICAL setParameter (character, logical)"> -

PUBLIC LOGICAL setParameter (character, logical)

+

LOGICAL setParameter (character, logical)

@@ -3363,7 +3363,7 @@

PUBLIC LOGICAL setParameter (character, longchar)"> -

PUBLIC LOGICAL setParameter (character, longchar)

+

LOGICAL setParameter (character, longchar)

@@ -3457,7 +3457,7 @@

PUBLIC LOGICAL setParameter (character, Object)"> -

PUBLIC LOGICAL setParameter (character, Object)

+

LOGICAL setParameter (character, Object)

@@ -3551,7 +3551,7 @@

PUBLIC LOGICAL setParameter (character, raw)"> -

PUBLIC LOGICAL setParameter (character, raw)

+

LOGICAL setParameter (character, raw)

@@ -3645,7 +3645,7 @@

PUBLIC LOGICAL setParameter (character, rowid)"> -

PUBLIC LOGICAL setParameter (character, rowid)

+

LOGICAL setParameter (character, rowid)

@@ -3739,7 +3739,7 @@

PUBLIC LOGICAL setParameter (character, table-handle)"> -

PUBLIC LOGICAL setParameter (character, table-handle)

+

LOGICAL setParameter (character, table-handle)

@@ -3851,7 +3851,7 @@

PUBLIC LOGICAL DynamicCaller (MethodSignature, handle)"> -

PUBLIC DynamicCaller (MethodSignature, handle)

+

DynamicCaller (MethodSignature, handle)

@@ -3929,7 +3929,7 @@

PUBLIC Dy -

PUBLIC DynamicCaller (MethodSignature, Class)

+

DynamicCaller (MethodSignature, Class)

@@ -4043,7 +4043,7 @@

PUBLIC Dy -

PRIVATE Spark.Core.Manager.ILoggingManager oLoggingManager

+

Spark.Core.Manager.ILoggingManager oLoggingManager

@@ -4105,7 +4105,7 @@

PRIVATE Spark.Core.Manager.ISchemaManager oSchemaManager"> -

PROTECTED Spark.Core.Manager.ISchemaManager oSchemaManager

+

Spark.Core.Manager.ISchemaManager oSchemaManager

@@ -4167,7 +4167,7 @@

PROTECTED valueBuffer"> -

PRIVATE HANDLE valueBuffer

+

HANDLE valueBuffer

@@ -4227,6 +4227,6 @@

PRIVATE HANDLE equals (character)"> -

PUBLIC LOGICAL equals (character)

+

LOGICAL equals (character)

@@ -460,7 +460,7 @@

PUBLIC LOGICAL equals (integer)"> -

PUBLIC LOGICAL equals (integer)

+

LOGICAL equals (integer)

@@ -538,7 +538,7 @@

PUBLIC LOGICAL equals (Object)"> -

PUBLIC LOGICAL equals (Object)

+

LOGICAL equals (Object)

@@ -616,7 +616,7 @@

PUBLIC LOGICAL toString ()"> -

PUBLIC CHARACTER toString ()

+

CHARACTER toString ()

@@ -696,7 +696,7 @@

PUBLIC CHARACTER EnumMember (character)"> -

PUBLIC EnumMember (character)

+

EnumMember (character)

@@ -758,7 +758,7 @@

PUBLIC En -

PUBLIC EnumMember (integer)

+

EnumMember (integer)

@@ -820,7 +820,7 @@

PUBLIC En -

PUBLIC EnumMember (integer, character)

+

EnumMember (integer, character)

@@ -934,7 +934,7 @@

PUBLIC En -

PUBLIC CHARACTER name

+

CHARACTER name

@@ -996,7 +996,7 @@

PUBLIC CHARACTER value"> -

PUBLIC INTEGER value

+

INTEGER value

@@ -1056,6 +1056,6 @@

PUBLIC INTEGER equals (character)"> -

PUBLIC LOGICAL equals (character)

+

LOGICAL equals (character)

@@ -409,7 +409,7 @@

PUBLIC LOGICAL equals (Object)"> -

PUBLIC LOGICAL equals (Object)

+

LOGICAL equals (Object)

@@ -487,7 +487,7 @@

PUBLIC LOGICAL toString ()"> -

PUBLIC CHARACTER toString ()

+

CHARACTER toString ()

@@ -567,7 +567,7 @@

PUBLIC CHARACTER EnumNameDescMember (character, character)"> -

PUBLIC EnumNameDescMember (character, character)

+

EnumNameDescMember (character, character)

@@ -681,7 +681,7 @@

PUBLIC En -

PUBLIC CHARACTER description

+

CHARACTER description

@@ -743,7 +743,7 @@

PUBLIC CHARACTER name"> -

PUBLIC CHARACTER name

+

CHARACTER name

@@ -803,6 +803,6 @@

PUBLIC CHARACTER equals (character)"> -

PUBLIC LOGICAL equals (character)

+

LOGICAL equals (character)

@@ -392,7 +392,7 @@

PUBLIC LOGICAL equals (Object)"> -

PUBLIC LOGICAL equals (Object)

+

LOGICAL equals (Object)

@@ -470,7 +470,7 @@

PUBLIC LOGICAL toString ()"> -

PUBLIC CHARACTER toString ()

+

CHARACTER toString ()

@@ -550,7 +550,7 @@

PUBLIC CHARACTER EnumNameMember (character)"> -

PUBLIC EnumNameMember (character)

+

EnumNameMember (character)

@@ -648,7 +648,7 @@

PUBLIC En -

PUBLIC CHARACTER name

+

CHARACTER name

@@ -708,6 +708,6 @@

PUBLIC CHARACTER equals (integer)"> -

PUBLIC LOGICAL equals (integer)

+

LOGICAL equals (integer)

@@ -392,7 +392,7 @@

PUBLIC LOGICAL equals (Object)"> -

PUBLIC LOGICAL equals (Object)

+

LOGICAL equals (Object)

@@ -470,7 +470,7 @@

PUBLIC LOGICAL toString ()"> -

PUBLIC CHARACTER toString ()

+

CHARACTER toString ()

@@ -550,7 +550,7 @@

PUBLIC CHARACTER EnumValueMember (integer)"> -

PUBLIC EnumValueMember (integer)

+

EnumValueMember (integer)

@@ -648,7 +648,7 @@

PUBLIC En -

PUBLIC INTEGER value

+

INTEGER value

@@ -708,6 +708,6 @@

PUBLIC INTEGER Spark.Core.Util.FieldInfo addProperty (character, character, character)"> -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, character)

+

Spark.Core.Util.FieldInfo addProperty (character, character, character)

@@ -569,7 +569,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, decimal)

+

Spark.Core.Util.FieldInfo addProperty (character, character, decimal)

@@ -679,7 +679,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, integer)

+

Spark.Core.Util.FieldInfo addProperty (character, character, integer)

@@ -789,7 +789,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, JsonArray)

+

Spark.Core.Util.FieldInfo addProperty (character, character, JsonArray)

@@ -899,7 +899,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, JsonObject)

+

Spark.Core.Util.FieldInfo addProperty (character, character, JsonObject)

@@ -1009,7 +1009,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo addProperty (character, character, logical)

+

Spark.Core.Util.FieldInfo addProperty (character, character, logical)

@@ -1119,7 +1119,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo getField (character)

+

Spark.Core.Util.FieldInfo getField (character)

@@ -1197,7 +1197,7 @@

PUBLIC Spark -

PUBLIC Spark.Core.Util.FieldInfo makeRequired (character)

+

Spark.Core.Util.FieldInfo makeRequired (character)

@@ -1275,7 +1275,7 @@

PUBLIC Spark -

PUBLIC CHARACTER serialize ()

+

CHARACTER serialize ()

@@ -1355,7 +1355,7 @@

PUBLIC CHARACTER FieldInfo ()"> -

PUBLIC FieldInfo ()

+

FieldInfo ()

@@ -1401,7 +1401,7 @@

PUBLIC Fi -

PUBLIC FieldInfo (character, character)

+

FieldInfo (character, character)

@@ -1515,7 +1515,7 @@

PUBLIC Fi -

PUBLIC CHARACTER DatasetName

+

CHARACTER DatasetName

@@ -1577,7 +1577,7 @@

PUBLIC CHARACTER TempTableName"> -

PUBLIC CHARACTER TempTableName

+

CHARACTER TempTableName

@@ -1637,6 +1637,6 @@

PUBLIC CHARACTER addForeignField (character)"> -

PUBLIC addForeignField (character)

+

addForeignField (character)

@@ -361,7 +361,7 @@

PUBLIC ad -

PUBLIC addLocalField (character)

+

addLocalField (character)

@@ -423,7 +423,7 @@

PUBLIC ad -

PUBLIC setForeignTable (character)

+

setForeignTable (character)

@@ -503,7 +503,7 @@

PUBLIC se -

PUBLIC ForeignKey (character)

+

ForeignKey (character)

@@ -159,7 +159,7 @@ @@ -176,7 +176,7 @@ @@ -193,7 +193,7 @@ @@ -210,7 +210,7 @@ @@ -227,7 +227,7 @@ @@ -250,7 +250,7 @@ @@ -273,7 +273,7 @@ @@ -296,7 +296,7 @@ @@ -321,7 +321,7 @@ @@ -344,7 +344,7 @@ @@ -369,7 +369,7 @@ @@ -390,7 +390,7 @@ @@ -407,7 +407,7 @@ @@ -424,7 +424,7 @@ @@ -445,7 +445,7 @@ @@ -467,7 +467,7 @@ @@ -488,7 +488,7 @@ @@ -510,7 +510,7 @@ @@ -531,7 +531,7 @@ @@ -553,7 +553,7 @@ @@ -570,7 +570,7 @@ @@ -587,7 +587,7 @@ @@ -604,7 +604,7 @@ @@ -621,7 +621,7 @@ @@ -638,7 +638,7 @@ @@ -664,7 +664,7 @@ @@ -691,7 +691,7 @@ @@ -717,7 +717,7 @@ @@ -743,7 +743,7 @@ @@ -767,7 +767,7 @@ @@ -791,7 +791,7 @@ @@ -815,7 +815,7 @@ @@ -842,7 +842,7 @@ @@ -859,7 +859,7 @@ @@ -876,7 +876,7 @@ @@ -893,7 +893,7 @@ @@ -910,7 +910,7 @@ @@ -927,7 +927,7 @@ @@ -944,7 +944,7 @@ @@ -961,7 +961,7 @@ @@ -978,7 +978,7 @@ @@ -995,7 +995,7 @@ @@ -1012,7 +1012,7 @@ @@ -1029,7 +1029,7 @@ @@ -1137,7 +1137,7 @@ -

PUBLIC LONGCHAR convertToUTF8 (longchar)

+

LONGCHAR convertToUTF8 (longchar)

@@ -599,6 +599,6 @@

PUBLIC Fo

--> - 04.15.2022 11:52:40 + 04.18.2022 11:20:37 diff --git a/docs/PCTDoc/Spark.Core.Util.FormatTools.html b/docs/PCTDoc/Spark.Core.Util.FormatTools.html index 7c1cccf8..37014036 100644 --- a/docs/PCTDoc/Spark.Core.Util.FormatTools.html +++ b/docs/PCTDoc/Spark.Core.Util.FormatTools.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + + - + + - + + - + + - + + - - + - + + - - + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -1215,7 +1215,7 @@

PUBLIC LONGCHAR dateOf (character)"> -

PUBLIC DATE dateOf (character)

+

DATE dateOf (character)

@@ -1293,7 +1293,7 @@

PUBLIC DATE -

PUBLIC DATETIME-TZ datetime-tzOf (character)

+

DATETIME-TZ datetime-tzOf (character)

@@ -1371,7 +1371,7 @@

PUBLIC DATETIME-TZ datetimeOf (character)"> -

PUBLIC DATETIME datetimeOf (character)

+

DATETIME datetimeOf (character)

@@ -1449,7 +1449,7 @@

PUBLIC DATETIME decimalOf (character)"> -

PUBLIC DECIMAL decimalOf (character)

+

DECIMAL decimalOf (character)

@@ -1527,7 +1527,7 @@

PUBLIC DECIMAL formatAsAbbreviatedLongDate (date)"> -

PUBLIC CHARACTER formatAsAbbreviatedLongDate (date)

+

CHARACTER formatAsAbbreviatedLongDate (date)

@@ -1605,7 +1605,7 @@

PUBLIC CHARACTER formatAsAbbreviatedLongDatetime (datetime)"> -

PUBLIC CHARACTER formatAsAbbreviatedLongDatetime (datetime)

+

CHARACTER formatAsAbbreviatedLongDatetime (datetime)

@@ -1683,7 +1683,7 @@

PUBLIC CHARACTER formatAsLongDate (date)"> -

PUBLIC CHARACTER formatAsLongDate (date)

+

CHARACTER formatAsLongDate (date)

@@ -1761,7 +1761,7 @@

PUBLIC CHARACTER formatAsLongDate (date, character, character)"> -

PRIVATE CHARACTER formatAsLongDate (date, character, character)

+

CHARACTER formatAsLongDate (date, character, character)

@@ -1871,7 +1871,7 @@

PRIVATE CHARACTER formatAsLongDatetime (datetime-tz)"> -

PUBLIC CHARACTER formatAsLongDatetime (datetime-tz)

+

CHARACTER formatAsLongDatetime (datetime-tz)

@@ -1949,7 +1949,7 @@

PUBLIC CHARACTER formatAsLongDatetime (datetime-tz, character, character)"> -

PRIVATE CHARACTER formatAsLongDatetime (datetime-tz, character, character)

+

CHARACTER formatAsLongDatetime (datetime-tz, character, character)

@@ -2059,7 +2059,7 @@

PRIVATE CHARACTER getDateFromMetaData (character)"> -

PUBLIC DATETIME-TZ getDateFromMetaData (character)

+

DATETIME-TZ getDateFromMetaData (character)

@@ -2137,7 +2137,7 @@

PUBLIC DATETIME-TZ int64Of (character)"> -

PUBLIC INT64 int64Of (character)

+

INT64 int64Of (character)

@@ -2215,7 +2215,7 @@

PUBLIC INT64 integerOf (character)"> -

PUBLIC INTEGER integerOf (character)

+

INTEGER integerOf (character)

@@ -2293,7 +2293,7 @@

PUBLIC INTEGER iso2Date (character)"> -

PUBLIC DATE iso2Date (character)

+

DATE iso2Date (character)

@@ -2371,7 +2371,7 @@

PUBLIC DATE -

PUBLIC LOGICAL iso2Date (character, date)

+

LOGICAL iso2Date (character, date)

@@ -2465,7 +2465,7 @@

PUBLIC LOGICAL iso2DateTime (character)"> -

PUBLIC DATETIME iso2DateTime (character)

+

DATETIME iso2DateTime (character)

@@ -2543,7 +2543,7 @@

PUBLIC DATETIME iso2DateTime (character, datetime)"> -

PUBLIC LOGICAL iso2DateTime (character, datetime)

+

LOGICAL iso2DateTime (character, datetime)

@@ -2637,7 +2637,7 @@

PUBLIC LOGICAL iso2DateTZ (character)"> -

PUBLIC DATETIME-TZ iso2DateTZ (character)

+

DATETIME-TZ iso2DateTZ (character)

@@ -2715,7 +2715,7 @@

PUBLIC DATETIME-TZ iso2DateTZ (character, datetime-tz)"> -

PUBLIC LOGICAL iso2DateTZ (character, datetime-tz)

+

LOGICAL iso2DateTZ (character, datetime-tz)

@@ -2809,7 +2809,7 @@

PUBLIC LOGICAL logicalOf (character)"> -

PUBLIC LOGICAL logicalOf (character)

+

LOGICAL logicalOf (character)

@@ -2887,7 +2887,7 @@

PUBLIC LOGICAL memptrOf (longchar)"> -

PUBLIC MEMPTR memptrOf (longchar)

+

MEMPTR memptrOf (longchar)

@@ -2965,7 +2965,7 @@

PUBLIC MEMPTR rawOf (longchar)"> -

PUBLIC RAW rawOf (longchar)

+

RAW rawOf (longchar)

@@ -3043,7 +3043,7 @@

PUBLIC RAW -

PUBLIC RECID recidOf (character)

+

RECID recidOf (character)

@@ -3121,7 +3121,7 @@

PUBLIC RECID rowidOf (character)"> -

PUBLIC ROWID rowidOf (character)

+

ROWID rowidOf (character)

@@ -3199,7 +3199,7 @@

PUBLIC ROWID screenToDate (character, date)"> -

PUBLIC LOGICAL screenToDate (character, date)

+

LOGICAL screenToDate (character, date)

@@ -3293,7 +3293,7 @@

PUBLIC LOGICAL screenToDateRange (character, character, date)"> -

PUBLIC screenToDateRange (character, character, date)

+

screenToDateRange (character, character, date)

@@ -3387,7 +3387,7 @@

PUBLIC sc -

PUBLIC LOGICAL screenToDateTime (character, datetime)

+

LOGICAL screenToDateTime (character, datetime)

@@ -3481,7 +3481,7 @@

PUBLIC LOGICAL screenToDateTimeTz (character, datetime)"> -

PUBLIC LOGICAL screenToDateTimeTz (character, datetime)

+

LOGICAL screenToDateTimeTz (character, datetime)

@@ -3575,7 +3575,7 @@

PUBLIC LOGICAL screenToDec (character, decimal)"> -

PUBLIC LOGICAL screenToDec (character, decimal)

+

LOGICAL screenToDec (character, decimal)

@@ -3669,7 +3669,7 @@

PUBLIC LOGICAL screenToInt (character, integer)"> -

PUBLIC LOGICAL screenToInt (character, integer)

+

LOGICAL screenToInt (character, integer)

@@ -3763,7 +3763,7 @@

PUBLIC LOGICAL screenToInt64 (character, int64)"> -

PUBLIC LOGICAL screenToInt64 (character, int64)

+

LOGICAL screenToInt64 (character, int64)

@@ -3857,7 +3857,7 @@

PUBLIC LOGICAL screenToLog (character, logical)"> -

PUBLIC LOGICAL screenToLog (character, logical)

+

LOGICAL screenToLog (character, logical)

@@ -3951,7 +3951,7 @@

PUBLIC LOGICAL screenToRowid (character, rowid)"> -

PUBLIC LOGICAL screenToRowid (character, rowid)

+

LOGICAL screenToRowid (character, rowid)

@@ -4045,7 +4045,7 @@

PUBLIC LOGICAL stringOf (date)"> -

PUBLIC CHARACTER stringOf (date)

+

CHARACTER stringOf (date)

@@ -4123,7 +4123,7 @@

PUBLIC CHARACTER stringOf (datetime)"> -

PUBLIC CHARACTER stringOf (datetime)

+

CHARACTER stringOf (datetime)

@@ -4201,7 +4201,7 @@

PUBLIC CHARACTER stringOf (datetime-tz)"> -

PUBLIC CHARACTER stringOf (datetime-tz)

+

CHARACTER stringOf (datetime-tz)

@@ -4279,7 +4279,7 @@

PUBLIC CHARACTER stringOf (decimal)"> -

PUBLIC CHARACTER stringOf (decimal)

+

CHARACTER stringOf (decimal)

@@ -4357,7 +4357,7 @@

PUBLIC CHARACTER stringOf (int64)"> -

PUBLIC CHARACTER stringOf (int64)

+

CHARACTER stringOf (int64)

@@ -4435,7 +4435,7 @@

PUBLIC CHARACTER stringOf (integer)"> -

PUBLIC CHARACTER stringOf (integer)

+

CHARACTER stringOf (integer)

@@ -4513,7 +4513,7 @@

PUBLIC CHARACTER stringOf (logical)"> -

PUBLIC CHARACTER stringOf (logical)

+

CHARACTER stringOf (logical)

@@ -4591,7 +4591,7 @@

PUBLIC CHARACTER stringOf (memptr)"> -

PUBLIC LONGCHAR stringOf (memptr)

+

LONGCHAR stringOf (memptr)

@@ -4669,7 +4669,7 @@

PUBLIC LONGCHAR stringOf (raw)"> -

PUBLIC LONGCHAR stringOf (raw)

+

LONGCHAR stringOf (raw)

@@ -4747,7 +4747,7 @@

PUBLIC LONGCHAR stringOf (recid)"> -

PUBLIC CHARACTER stringOf (recid)

+

CHARACTER stringOf (recid)

@@ -4825,7 +4825,7 @@

PUBLIC CHARACTER stringOf (rowid)"> -

PUBLIC CHARACTER stringOf (rowid)

+

CHARACTER stringOf (rowid)

@@ -4955,6 +4955,6 @@

PUBLIC CHARACTER encodeURL (character)"> -

PUBLIC CHARACTER encodeURL (character)

+

CHARACTER encodeURL (character)

@@ -466,7 +466,7 @@

PUBLIC CHARACTER encodeURL (character, character)"> -

PUBLIC CHARACTER encodeURL (character, character)

+

CHARACTER encodeURL (character, character)

@@ -560,7 +560,7 @@

PUBLIC CHARACTER getAblError ()"> -

PUBLIC CHARACTER getAblError ()

+

CHARACTER getAblError ()

@@ -622,7 +622,7 @@

PUBLIC CHARACTER getDateTime (date, integer)"> -

PUBLIC DATETIME getDateTime (date, integer)

+

DATETIME getDateTime (date, integer)

@@ -716,7 +716,7 @@

PUBLIC DATETIME getLastAblError ()"> -

PUBLIC CHARACTER getLastAblError ()

+

CHARACTER getLastAblError ()

@@ -778,7 +778,7 @@

PUBLIC CHARACTER getLocalTimeZoneOffset (character)"> -

PUBLIC INTEGER getLocalTimeZoneOffset (character)

+

INTEGER getLocalTimeZoneOffset (character)

@@ -856,7 +856,7 @@

PUBLIC INTEGER getLocalTimeZoneOffset (character, datetime-tz)"> -

PUBLIC INTEGER getLocalTimeZoneOffset (character, datetime-tz)

+

INTEGER getLocalTimeZoneOffset (character, datetime-tz)

@@ -1002,6 +1002,6 @@

PUBLIC INTEGER getScope ()"> -

PUBLIC Progress.Lang.Object getScope ()

+

Progress.Lang.Object getScope ()

@@ -342,7 +342,7 @@

PUBLIC Progress.Lang.Object ToString ()"> -

PUBLIC CHARACTER ToString ()

+

CHARACTER ToString ()

@@ -422,7 +422,7 @@

PUBLIC CHARACTER LifecycleScope (character)"> -

PUBLIC LifecycleScope (character)

+

LifecycleScope (character)

@@ -155,7 +155,7 @@ @@ -172,7 +172,7 @@ @@ -258,7 +258,7 @@ @@ -297,7 +297,7 @@ -

PUBLIC INT64 Read (character, character)

+

INT64 Read (character, character)

@@ -518,6 +518,6 @@

PUBLIC Li

--> - 04.15.2022 11:52:41 + 04.18.2022 11:20:38 diff --git a/docs/PCTDoc/Spark.Core.Util.LongcharInputStream.html b/docs/PCTDoc/Spark.Core.Util.LongcharInputStream.html index 1720399d..b52f3212 100644 --- a/docs/PCTDoc/Spark.Core.Util.LongcharInputStream.html +++ b/docs/PCTDoc/Spark.Core.Util.LongcharInputStream.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- + + - + + - + + - + +
@@ -391,7 +391,7 @@

PUBLIC INT64 Read (character, longchar)"> -

PUBLIC INT64 Read (character, longchar)

+

INT64 Read (character, longchar)

@@ -485,7 +485,7 @@

PUBLIC INT64 Read (memptr, int64, int64)"> -

PUBLIC INT64 Read (memptr, int64, int64)

+

INT64 Read (memptr, int64, int64)

@@ -649,7 +649,7 @@

PUBLIC INT64 StreamData"> -

PUBLIC LONGCHAR StreamData

+

LONGCHAR StreamData

@@ -709,6 +709,6 @@

PUBLIC LONGCHAR Write (character)"> -

PUBLIC INT64 Write (character)

+

INT64 Write (character)

@@ -375,7 +375,7 @@

PUBLIC INT64 Write (longchar)"> -

PUBLIC INT64 Write (longchar)

+

INT64 Write (longchar)

@@ -453,7 +453,7 @@

PUBLIC INT64 Write (memptr, int64, int64)"> -

PUBLIC INT64 Write (memptr, int64, int64)

+

INT64 Write (memptr, int64, int64)

@@ -617,7 +617,7 @@

PUBLIC INT64 StreamData"> -

PUBLIC LONGCHAR StreamData

+

LONGCHAR StreamData

@@ -677,6 +677,6 @@

PUBLIC LONGCHAR getClassPath ()"> -

PUBLIC CHARACTER getClassPath ()

+

CHARACTER getClassPath ()

@@ -988,7 +988,7 @@

PUBLIC CHARACTER getDatasets ()"> -

PUBLIC CHARACTER getDatasets ()

+

CHARACTER getDatasets ()

@@ -1050,7 +1050,7 @@

PUBLIC CHARACTER getInputParameters ()"> -

PUBLIC CHARACTER getInputParameters ()

+

CHARACTER getInputParameters ()

@@ -1112,7 +1112,7 @@

PUBLIC CHARACTER getMethodName ()"> -

PUBLIC CHARACTER getMethodName ()

+

CHARACTER getMethodName ()

@@ -1174,7 +1174,7 @@

PUBLIC CHARACTER getOutputParameters ()"> -

PUBLIC CHARACTER getOutputParameters ()

+

CHARACTER getOutputParameters ()

@@ -1236,7 +1236,7 @@

PUBLIC CHARACTER getParameterCount ()"> -

PUBLIC INTEGER getParameterCount ()

+

INTEGER getParameterCount ()

@@ -1298,7 +1298,7 @@

PUBLIC INTEGER getParameterMode (character)"> -

PUBLIC CHARACTER getParameterMode (character)

+

CHARACTER getParameterMode (character)

@@ -1376,7 +1376,7 @@

PUBLIC CHARACTER getParameterMode (integer)"> -

PUBLIC CHARACTER getParameterMode (integer)

+

CHARACTER getParameterMode (integer)

@@ -1454,7 +1454,7 @@

PUBLIC CHARACTER getParameterName (integer)"> -

PUBLIC CHARACTER getParameterName (integer)

+

CHARACTER getParameterName (integer)

@@ -1532,7 +1532,7 @@

PUBLIC CHARACTER getParameterNum (character)"> -

PUBLIC INTEGER getParameterNum (character)

+

INTEGER getParameterNum (character)

@@ -1610,7 +1610,7 @@

PUBLIC INTEGER getParameterObject (integer)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getParameterObject (integer)

+

Progress.Json.ObjectModel.JsonObject getParameterObject (integer)

@@ -1688,7 +1688,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getParameters ()"> -

PUBLIC CHARACTER getParameters ()

+

CHARACTER getParameters ()

@@ -1750,7 +1750,7 @@

PUBLIC CHARACTER getParameterSchema (character)"> -

PUBLIC LONGCHAR getParameterSchema (character)

+

LONGCHAR getParameterSchema (character)

@@ -1828,7 +1828,7 @@

PUBLIC LONGCHAR getParameterSchema (integer)"> -

PUBLIC LONGCHAR getParameterSchema (integer)

+

LONGCHAR getParameterSchema (integer)

@@ -1906,7 +1906,7 @@

PUBLIC LONGCHAR getParameterType (character)"> -

PUBLIC CHARACTER getParameterType (character)

+

CHARACTER getParameterType (character)

@@ -1984,7 +1984,7 @@

PUBLIC CHARACTER getParameterType (integer)"> -

PUBLIC CHARACTER getParameterType (integer)

+

CHARACTER getParameterType (integer)

@@ -2062,7 +2062,7 @@

PUBLIC CHARACTER getTempTables ()"> -

PUBLIC CHARACTER getTempTables ()

+

CHARACTER getTempTables ()

@@ -2124,7 +2124,7 @@

PUBLIC CHARACTER hasParameter (character)"> -

PUBLIC LOGICAL hasParameter (character)

+

LOGICAL hasParameter (character)

@@ -2202,7 +2202,7 @@

PUBLIC LOGICAL hasParameters ()"> -

PUBLIC LOGICAL hasParameters ()

+

LOGICAL hasParameters ()

@@ -2264,7 +2264,7 @@

PUBLIC LOGICAL isDataset (character)"> -

PUBLIC LOGICAL isDataset (character)

+

LOGICAL isDataset (character)

@@ -2342,7 +2342,7 @@

PUBLIC LOGICAL isDataset (integer)"> -

PUBLIC LOGICAL isDataset (integer)

+

LOGICAL isDataset (integer)

@@ -2420,7 +2420,7 @@

PUBLIC LOGICAL isInputParameter (character)"> -

PUBLIC LOGICAL isInputParameter (character)

+

LOGICAL isInputParameter (character)

@@ -2498,7 +2498,7 @@

PUBLIC LOGICAL isInputParameter (integer)"> -

PUBLIC LOGICAL isInputParameter (integer)

+

LOGICAL isInputParameter (integer)

@@ -2576,7 +2576,7 @@

PUBLIC LOGICAL isJsonArray (character)"> -

PUBLIC LOGICAL isJsonArray (character)

+

LOGICAL isJsonArray (character)

@@ -2654,7 +2654,7 @@

PUBLIC LOGICAL isJsonArray (integer)"> -

PUBLIC LOGICAL isJsonArray (integer)

+

LOGICAL isJsonArray (integer)

@@ -2732,7 +2732,7 @@

PUBLIC LOGICAL isJsonObject (character)"> -

PUBLIC LOGICAL isJsonObject (character)

+

LOGICAL isJsonObject (character)

@@ -2810,7 +2810,7 @@

PUBLIC LOGICAL isJsonObject (integer)"> -

PUBLIC LOGICAL isJsonObject (integer)

+

LOGICAL isJsonObject (integer)

@@ -2888,7 +2888,7 @@

PUBLIC LOGICAL isObject (character)"> -

PUBLIC LOGICAL isObject (character)

+

LOGICAL isObject (character)

@@ -2966,7 +2966,7 @@

PUBLIC LOGICAL isObject (integer)"> -

PUBLIC LOGICAL isObject (integer)

+

LOGICAL isObject (integer)

@@ -3044,7 +3044,7 @@

PUBLIC LOGICAL isOutputParameter (character)"> -

PUBLIC LOGICAL isOutputParameter (character)

+

LOGICAL isOutputParameter (character)

@@ -3122,7 +3122,7 @@

PUBLIC LOGICAL isOutputParameter (integer)"> -

PUBLIC LOGICAL isOutputParameter (integer)

+

LOGICAL isOutputParameter (integer)

@@ -3200,7 +3200,7 @@

PUBLIC LOGICAL isTempTable (character)"> -

PUBLIC LOGICAL isTempTable (character)

+

LOGICAL isTempTable (character)

@@ -3278,7 +3278,7 @@

PUBLIC LOGICAL isTempTable (integer)"> -

PUBLIC LOGICAL isTempTable (integer)

+

LOGICAL isTempTable (integer)

@@ -3356,7 +3356,7 @@

PUBLIC LOGICAL parseMethodSignature (character)"> -

PRIVATE parseMethodSignature (character)

+

parseMethodSignature (character)

@@ -3418,7 +3418,7 @@

PRIVATE p -

PRIVATE parseMethodSignature (JsonArray)

+

parseMethodSignature (JsonArray)

@@ -3480,7 +3480,7 @@

PRIVATE p -

PUBLIC setParameterSchema (character, longchar)

+

setParameterSchema (character, longchar)

@@ -3558,7 +3558,7 @@

PUBLIC se -

PUBLIC setParameterSchema (integer, longchar)

+

setParameterSchema (integer, longchar)

@@ -3654,7 +3654,7 @@

PUBLIC se -

PUBLIC MethodSignature (character, character)

+

MethodSignature (character, character)

@@ -3732,7 +3732,7 @@

PUBLIC Me -

PUBLIC MethodSignature (character, character, JsonArray)

+

MethodSignature (character, character, JsonArray)

@@ -3826,7 +3826,7 @@

PUBLIC Me -

PUBLIC MethodSignature (character, handle)

+

MethodSignature (character, handle)

@@ -3904,7 +3904,7 @@

PUBLIC Me -

PUBLIC MethodSignature (character, JsonArray)

+

MethodSignature (character, JsonArray)

@@ -60,7 +60,7 @@ Parent classes: @@ -207,7 +207,7 @@ @@ -224,7 +224,7 @@ @@ -317,7 +317,7 @@ -

PROTECTED CHARACTER CatalinaBase

+

CHARACTER CatalinaBase

@@ -4016,6 +4016,6 @@

PUBLIC Me

--> - 04.15.2022 11:52:42 + 04.18.2022 11:20:38 diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.OSPath.html b/docs/PCTDoc/Spark.Core.Util.OSPath.html similarity index 94% rename from docs/PCTDoc/Spark.Diagnostic.Util.OSPath.html rename to docs/PCTDoc/Spark.Core.Util.OSPath.html index 7ad0c5ee..f3eca0d1 100644 --- a/docs/PCTDoc/Spark.Diagnostic.Util.OSPath.html +++ b/docs/PCTDoc/Spark.Core.Util.OSPath.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -38,7 +38,7 @@ Namespace:

- Spark.Diagnostic.Util + Spark.Core.Util
-
Progress.Lang.Object

+
Progress.Lang.Object

- # + - # +
@@ -379,7 +379,7 @@

PROTECTED CHARACTER TemporaryDir"> -

PROTECTED CHARACTER TemporaryDir

+

CHARACTER TemporaryDir

@@ -439,6 +439,6 @@

PROTECTED CHARACTER drillDir (character)"> -

PRIVATE drillDir (character)

+

drillDir (character)

@@ -534,7 +534,7 @@

PRIVATE d -

PUBLIC CHARACTER getFullPathname (character)

+

CHARACTER getFullPathname (character)

@@ -612,7 +612,7 @@

PUBLIC CHARACTER osCopyDir (character, character)"> -

PUBLIC osCopyDir (character, character)

+

osCopyDir (character, character)

@@ -690,7 +690,7 @@

PUBLIC os -

PUBLIC osCopyFile (character, character)

+

osCopyFile (character, character)

@@ -768,7 +768,7 @@

PUBLIC os -

PUBLIC CHARACTER osCreateDirTree (character)

+

CHARACTER osCreateDirTree (character)

@@ -846,7 +846,7 @@

PUBLIC CHARACTER osErrorMsg (integer)"> -

PUBLIC CHARACTER osErrorMsg (integer)

+

CHARACTER osErrorMsg (integer)

@@ -924,7 +924,7 @@

PUBLIC CHARACTER processDir (character, character)"> -

PRIVATE processDir (character, character)

+

processDir (character, character)

@@ -1002,7 +1002,7 @@

PRIVATE p -

PUBLIC Progress.Json.ObjectModel.JsonArray recurseDir (character, logical)

+

Progress.Json.ObjectModel.JsonArray recurseDir (character, logical)

@@ -1150,11 +1150,11 @@

PUBLIC Progress.Json.ObjectModel.JsonArray catalinaBase"> -

PUBLIC CHARACTER catalinaBase

+

CHARACTER catalinaBase

-
+
@@ -1212,11 +1212,11 @@

PUBLIC CHARACTER configProjectDir"> -

PUBLIC CHARACTER configProjectDir

+

CHARACTER configProjectDir

-
+
@@ -1274,11 +1274,11 @@

PUBLIC CHARACTER dlcdir"> -

PUBLIC CHARACTER dlcdir

+

CHARACTER dlcdir

-
+
@@ -1336,11 +1336,11 @@

PUBLIC CHARACTER sparkConf"> -

PUBLIC CHARACTER sparkConf

+

CHARACTER sparkConf

-
+
@@ -1398,11 +1398,11 @@

PUBLIC CHARACTER tmpdir"> -

PUBLIC CHARACTER tmpdir

+

CHARACTER tmpdir

-
+
@@ -1460,11 +1460,11 @@

PUBLIC CHARACTER wrkdir"> -

PUBLIC CHARACTER wrkdir

+

CHARACTER wrkdir

-
+
@@ -1520,6 +1520,6 @@

PUBLIC CHARACTER getClassSignature (character)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getClassSignature (character)

+

Progress.Json.ObjectModel.JsonObject getClassSignature (character)

@@ -414,7 +414,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getClassSignature (character, logical)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject getClassSignature (character, logical)

+

Progress.Json.ObjectModel.JsonObject getClassSignature (character, logical)

@@ -508,7 +508,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject getConstructors (Class)"> -

PRIVATE Progress.Json.ObjectModel.JsonObject getConstructors (Class)

+

Progress.Json.ObjectModel.JsonObject getConstructors (Class)

@@ -586,7 +586,7 @@

PRIVATE Progress.Json.ObjectModel.JsonObject -

PRIVATE Progress.Json.ObjectModel.JsonObject getMethods (Class)

+

Progress.Json.ObjectModel.JsonObject getMethods (Class)

- - +
@@ -664,7 +664,7 @@

PRIVATE Progress.Json.ObjectModel.JsonObject -

PRIVATE Progress.Json.ObjectModel.JsonObject getProperties (Class)

+

Progress.Json.ObjectModel.JsonObject getProperties (Class)

@@ -260,7 +226,7 @@ -->

- + - - - - - - - - - -
@@ -742,7 +742,7 @@

PRIVATE Progress.Json.ObjectModel.JsonObject -

PRIVATE Progress.Json.ObjectModel.JsonObject getVariables (Class)

+

Progress.Json.ObjectModel.JsonObject getVariables (Class)

@@ -872,6 +872,6 @@

PRIVATE Progress.Json.ObjectModel.JsonObject
--> - 04.15.2022 11:52:42 + 04.18.2022 11:20:38 diff --git a/docs/PCTDoc/Spark.Core.Util.RequestScope.html b/docs/PCTDoc/Spark.Core.Util.RequestScope.html index 783c2228..2d414fe0 100644 --- a/docs/PCTDoc/Spark.Core.Util.RequestScope.html +++ b/docs/PCTDoc/Spark.Core.Util.RequestScope.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -114,7 +114,7 @@


- +
@@ -195,7 +161,7 @@
- + +
- Returns - - Progress.Lang.Object - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC CHARACTER ToString ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.LifecycleScope -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- + -->
@@ -422,7 +264,7 @@

PUBLIC CHARACTER RequestScope (character)">

-

PUBLIC RequestScope (character)

+

RequestScope (character)

@@ -156,7 +156,7 @@ @@ -174,7 +174,7 @@ @@ -192,7 +192,7 @@ @@ -233,7 +233,7 @@ @@ -296,7 +296,7 @@ @@ -313,7 +313,7 @@ @@ -330,7 +330,7 @@ @@ -347,7 +347,7 @@ @@ -364,7 +364,7 @@ @@ -381,7 +381,7 @@ @@ -398,7 +398,7 @@ @@ -415,7 +415,7 @@ @@ -432,7 +432,7 @@ @@ -449,7 +449,7 @@ @@ -466,7 +466,7 @@ @@ -483,7 +483,7 @@ @@ -500,7 +500,7 @@ @@ -539,7 +539,7 @@ -

PRIVATE createTempFile (character)

+

createTempFile (character)

@@ -518,6 +360,6 @@

PUBLIC Re

--> - 04.15.2022 11:52:43 + 04.18.2022 11:20:38 diff --git a/docs/PCTDoc/Spark.Core.Util.Sendmail.html b/docs/PCTDoc/Spark.Core.Util.Sendmail.html index 83a524a9..eb060375 100644 --- a/docs/PCTDoc/Spark.Core.Util.Sendmail.html +++ b/docs/PCTDoc/Spark.Core.Util.Sendmail.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@

- - + - - + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -601,7 +601,7 @@

PRIVATE c -

PRIVATE removeTempFile ()

+

removeTempFile ()

@@ -647,7 +647,7 @@

PRIVATE r -

PUBLIC LOGICAL SendEmail ()

+

LOGICAL SendEmail ()

@@ -709,7 +709,7 @@

PUBLIC LOGICAL SendEmail (character, character, character)"> -

PUBLIC LOGICAL SendEmail (character, character, character)

+

LOGICAL SendEmail (character, character, character)

@@ -837,7 +837,7 @@

PUBLIC LOGICAL Sendmail ()"> -

PUBLIC Sendmail ()

+

Sendmail ()

@@ -919,7 +919,7 @@

PUBLIC Se -

PUBLIC CHARACTER AttachBinary

+

CHARACTER AttachBinary

@@ -981,7 +981,7 @@

PUBLIC CHARACTER AttachText"> -

PUBLIC CHARACTER AttachText

+

CHARACTER AttachText

@@ -1043,7 +1043,7 @@

PUBLIC CHARACTER BlatLog"> -

PUBLIC CHARACTER BlatLog

+

CHARACTER BlatLog

@@ -1105,7 +1105,7 @@

PUBLIC CHARACTER BlatPath"> -

PUBLIC CHARACTER BlatPath

+

CHARACTER BlatPath

@@ -1167,7 +1167,7 @@

PUBLIC CHARACTER EmailBody"> -

PUBLIC CHARACTER EmailBody

+

CHARACTER EmailBody

@@ -1229,7 +1229,7 @@

PUBLIC CHARACTER IsDevMode"> -

PUBLIC LOGICAL IsDevMode

+

LOGICAL IsDevMode

@@ -1291,7 +1291,7 @@

PUBLIC LOGICAL Recipient"> -

PUBLIC CHARACTER Recipient

+

CHARACTER Recipient

@@ -1353,7 +1353,7 @@

PUBLIC CHARACTER SendFrom"> -

PUBLIC CHARACTER SendFrom

+

CHARACTER SendFrom

@@ -1415,7 +1415,7 @@

PUBLIC CHARACTER SendmailPath"> -

PUBLIC CHARACTER SendmailPath

+

CHARACTER SendmailPath

@@ -1477,7 +1477,7 @@

PUBLIC CHARACTER SendWithBCC"> -

PUBLIC CHARACTER SendWithBCC

+

CHARACTER SendWithBCC

@@ -1539,7 +1539,7 @@

PUBLIC CHARACTER SendWithCC"> -

PUBLIC CHARACTER SendWithCC

+

CHARACTER SendWithCC

@@ -1601,7 +1601,7 @@

PUBLIC CHARACTER SMTPServer"> -

PUBLIC CHARACTER SMTPServer

+

CHARACTER SMTPServer

@@ -1663,7 +1663,7 @@

PUBLIC CHARACTER SubjectLine"> -

PUBLIC CHARACTER SubjectLine

+

CHARACTER SubjectLine

@@ -1723,6 +1723,6 @@

PUBLIC CHARACTER deserializeClassFromBinary (character)"> -

PUBLIC Progress.Lang.Object deserializeClassFromBinary (character)

+

Progress.Lang.Object deserializeClassFromBinary (character)

@@ -156,7 +156,7 @@ @@ -174,7 +174,7 @@ @@ -192,7 +192,7 @@ @@ -210,7 +210,7 @@ @@ -228,7 +228,7 @@ @@ -246,7 +246,7 @@ @@ -264,7 +264,7 @@ @@ -282,7 +282,7 @@ @@ -300,7 +300,7 @@ @@ -318,7 +318,7 @@ @@ -336,7 +336,7 @@ @@ -354,7 +354,7 @@ @@ -372,7 +372,7 @@ @@ -390,7 +390,7 @@ @@ -408,7 +408,7 @@ @@ -426,7 +426,7 @@ @@ -444,7 +444,7 @@ @@ -462,7 +462,7 @@ @@ -480,7 +480,7 @@ @@ -498,7 +498,7 @@ @@ -516,7 +516,7 @@ @@ -625,7 +625,7 @@ -

PUBLIC CHARACTER appendWithComma (character, character)

+

CHARACTER appendWithComma (character, character)

@@ -450,7 +450,7 @@

PUBLIC Progress.Lang.Object deserializeClassFromBinary (longchar)"> -

PUBLIC Progress.Lang.Object deserializeClassFromBinary (longchar)

+

Progress.Lang.Object deserializeClassFromBinary (longchar)

- - - - +
@@ -528,7 +528,7 @@

PUBLIC Progress.Lang.Object deserializeClassFromJson (character)"> -

PUBLIC Progress.Lang.Object deserializeClassFromJson (character)

+

Progress.Lang.Object deserializeClassFromJson (character)

+
@@ -606,7 +606,7 @@

PUBLIC Progress.Lang.Object deserializeClassFromJson (longchar)"> -

PUBLIC Progress.Lang.Object deserializeClassFromJson (longchar)

+

Progress.Lang.Object deserializeClassFromJson (longchar)

@@ -684,7 +684,7 @@

PUBLIC Progress.Lang.Object serializeClassToBinary (Object, character)"> -

PUBLIC LOGICAL serializeClassToBinary (Object, character)

+

LOGICAL serializeClassToBinary (Object, character)

@@ -255,7 +201,7 @@
@@ -778,7 +778,7 @@

PUBLIC LOGICAL serializeClassToBinary (Object, longchar)"> -

PUBLIC LOGICAL serializeClassToBinary (Object, longchar)

+

LOGICAL serializeClassToBinary (Object, longchar)

- - +
@@ -872,7 +872,7 @@

PUBLIC LOGICAL serializeClassToJson (Object, character)"> -

PUBLIC LOGICAL serializeClassToJson (Object, character)

+

LOGICAL serializeClassToJson (Object, character)

@@ -260,7 +226,7 @@ -->

- + - - - - - - - - - -
@@ -966,7 +966,7 @@

PUBLIC LOGICAL serializeClassToJson (Object, longchar)"> -

PUBLIC LOGICAL serializeClassToJson (Object, longchar)

+

LOGICAL serializeClassToJson (Object, longchar)

- - - - - - - - - +
@@ -1112,6 +1112,6 @@

PUBLIC LOGICAL getScope () - -

-
Inherited from Spark.Core.Util.LifecycleScope -
- - + - - - - - CHARACTER ToString () - - -
Inherited from Spark.Core.Util.LifecycleScope -
- + -->
@@ -195,7 +161,7 @@
- + +
- Returns - - Progress.Lang.Object - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC CHARACTER ToString ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.LifecycleScope -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- + -->
@@ -422,7 +264,7 @@

PUBLIC CHARACTER SessionScope (character)">

-

PUBLIC SessionScope (character)

+

SessionScope (character)

@@ -518,6 +360,6 @@

PUBLIC Se

--> - 04.15.2022 11:52:43 + 04.18.2022 11:20:39 diff --git a/docs/PCTDoc/Spark.Core.Util.StopError.html b/docs/PCTDoc/Spark.Core.Util.StopError.html index 7de1db1f..56d58bcf 100644 --- a/docs/PCTDoc/Spark.Core.Util.StopError.html +++ b/docs/PCTDoc/Spark.Core.Util.StopError.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -114,7 +114,7 @@


- +
@@ -215,7 +161,7 @@
- + +
--> - +

- + - -
- - - - - -


- + -->
@@ -875,7 +264,7 @@

PROTECTED

-

PUBLIC StopError ()

+

StopError ()

- - - - - - - - -
@@ -937,7 +326,7 @@

PUBLIC St

--> - + -

- Returns - - CHARACTER - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC Spark.Core.Util.ErrorTypeEnum errorType

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Spark.Core.Util.ErrorTypeEnum - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER originalErrorMessage

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- - 04.15.2022 11:52:44 + --> + 04.18.2022 11:20:39 diff --git a/docs/PCTDoc/Spark.Core.Util.Strings.html b/docs/PCTDoc/Spark.Core.Util.Strings.html index 5e88d826..0ebbdb48 100644 --- a/docs/PCTDoc/Spark.Core.Util.Strings.html +++ b/docs/PCTDoc/Spark.Core.Util.Strings.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - + + - + + - # + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + +
@@ -719,7 +719,7 @@

PUBLIC CHARACTER booleanConvert (character, logical)"> -

PUBLIC CHARACTER booleanConvert (character, logical)

+

CHARACTER booleanConvert (character, logical)

@@ -813,7 +813,7 @@

PUBLIC CHARACTER camelCaseWord (character)"> -

PUBLIC CHARACTER camelCaseWord (character)

+

CHARACTER camelCaseWord (character)

@@ -891,7 +891,7 @@

PUBLIC CHARACTER containsBadChar (character)"> -

PUBLIC LOGICAL containsBadChar (character)

+

LOGICAL containsBadChar (character)

@@ -969,7 +969,7 @@

PUBLIC LOGICAL doXOR (integer, integer)"> -

PROTECTED INTEGER doXOR (integer, integer)

+

INTEGER doXOR (integer, integer)

@@ -1063,7 +1063,7 @@

PROTECTED INTEGER getDigitsOnly (character)"> -

PUBLIC CHARACTER getDigitsOnly (character)

+

CHARACTER getDigitsOnly (character)

@@ -1141,7 +1141,7 @@

PUBLIC CHARACTER getUniqueWords (character)"> -

PUBLIC CHARACTER getUniqueWords (character)

+

CHARACTER getUniqueWords (character)

@@ -1219,7 +1219,7 @@

PUBLIC CHARACTER getXOR (character, integer)"> -

PUBLIC CHARACTER getXOR (character, integer)

+

CHARACTER getXOR (character, integer)

@@ -1313,7 +1313,7 @@

PUBLIC CHARACTER inArray (JsonArray, character)"> -

PUBLIC LOGICAL inArray (JsonArray, character)

+

LOGICAL inArray (JsonArray, character)

@@ -1407,7 +1407,7 @@

PUBLIC LOGICAL leftPad (character, character, integer)"> -

PUBLIC CHARACTER leftPad (character, character, integer)

+

CHARACTER leftPad (character, character, integer)

@@ -1517,7 +1517,7 @@

PUBLIC CHARACTER maskString (character, integer, character)"> -

PUBLIC CHARACTER maskString (character, integer, character)

+

CHARACTER maskString (character, integer, character)

@@ -1627,7 +1627,7 @@

PUBLIC CHARACTER mergeProperties (JsonObject, JsonObject)"> -

PUBLIC Progress.Json.ObjectModel.JsonObject mergeProperties (JsonObject, JsonObject)

+

Progress.Json.ObjectModel.JsonObject mergeProperties (JsonObject, JsonObject)

@@ -1721,7 +1721,7 @@

PUBLIC Progress.Json.ObjectModel.JsonObject properWords (character)"> -

PUBLIC CHARACTER properWords (character)

+

CHARACTER properWords (character)

@@ -1799,7 +1799,7 @@

PUBLIC CHARACTER reverse (character)"> -

PUBLIC CHARACTER reverse (character)

+

CHARACTER reverse (character)

@@ -1877,7 +1877,7 @@

PUBLIC CHARACTER rightPad (character, character, integer)"> -

PUBLIC CHARACTER rightPad (character, character, integer)

+

CHARACTER rightPad (character, character, integer)

@@ -1987,7 +1987,7 @@

PUBLIC CHARACTER sortArray (JsonArray)"> -

PUBLIC Progress.Json.ObjectModel.JsonArray sortArray (JsonArray)

+

Progress.Json.ObjectModel.JsonArray sortArray (JsonArray)

@@ -2065,7 +2065,7 @@

PUBLIC Progress.Json.ObjectModel.JsonArray stripBadChars (character)"> -

PUBLIC CHARACTER stripBadChars (character)

+

CHARACTER stripBadChars (character)

@@ -2143,7 +2143,7 @@

PUBLIC CHARACTER stripBadLabel (character)"> -

PUBLIC CHARACTER stripBadLabel (character)

+

CHARACTER stripBadLabel (character)

@@ -2221,7 +2221,7 @@

PUBLIC CHARACTER stripKeywords (character)"> -

PUBLIC CHARACTER stripKeywords (character)

+

CHARACTER stripKeywords (character)

@@ -156,7 +156,7 @@ @@ -173,7 +173,7 @@ @@ -299,7 +299,7 @@ -

PUBLIC INTEGER endTimer (character)

+

INTEGER endTimer (character)

@@ -2299,7 +2299,7 @@

PUBLIC CHARACTER stripOperators (character)"> -

PUBLIC CHARACTER stripOperators (character)

+

CHARACTER stripOperators (character)

- - - - - -
@@ -2377,7 +2377,7 @@

PUBLIC CHARACTER stripPunctuation (character)"> -

PUBLIC CHARACTER stripPunctuation (character)

+

CHARACTER stripPunctuation (character)

@@ -255,7 +201,7 @@
@@ -2455,7 +2455,7 @@

PUBLIC CHARACTER unixSafe (character)"> -

PUBLIC CHARACTER unixSafe (character)

+

CHARACTER unixSafe (character)

- - - - - - - - - - - - - - - +
@@ -2585,6 +2585,6 @@

PUBLIC CHARACTER createAppError (character, integer, character, character, character, character, character, character, character, character, character) - -

-
Inherited from Spark.Core.Util.ApplicationError -
- - # - - - - - createAppError (character, integer, integer, character, character, character, character, character, character, character, character, character) - - -
Inherited from Spark.Core.Util.ApplicationError -
- - # - - - - - setErrorType () - - - -/** -* An override method that sets the default errorType -*/
Inherited from Spark.Core.Util.ApplicationError -
- + -->
@@ -215,7 +161,7 @@
- + +
--> - +

- + + +
+ + + + + Constructor Detail + + +
+ @@ -400,531 +313,7 @@

PROTECTED

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Top - + Top +
-

PROTECTED createAppError (character, integer, character, character, character, character, character, character, character, character, character)

+

TimeOutError (datetime-tz, integer)

@@ -368,7 +281,7 @@

PROTECTED

- Inherited from Spark.Core.Util.ApplicationError +
@@ -384,10 +297,10 @@

PROTECTED

- pcMessage + ptStartTime - CHARACTER + DATETIME-TZ
- piErrorNumber - - INTEGER - -
- - -
- pcSub1 - - CHARACTER - -
- - -
- pcSub2 - - CHARACTER - -
- - -
- pcSub3 - - CHARACTER - -
- - -
- pcSub4 - - CHARACTER - -
- - -
- pcSub5 - - CHARACTER - -
- - -
- pcSub6 - - CHARACTER - -
- - -
- pcSub7 - - CHARACTER - -
- - -
- pcSub8 - - CHARACTER - -
- - -
- pcSub9 - - CHARACTER - -
- - -
- - - - - -
-
- - Top - - -
-

PROTECTED createAppError (character, integer, integer, character, character, character, character, character, character, character, character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcMsgGroup - - CHARACTER - -
- - -
- piMsgNumber - - INTEGER - -
- - -
- piErrorNumber - - INTEGER - -
- - -
- pcSub1 - - CHARACTER - -
- - -
- pcSub2 - - CHARACTER - -
- - -
- pcSub3 - - CHARACTER - -
- - -
- pcSub4 - - CHARACTER - -
- - -
- pcSub5 - - CHARACTER - -
- - -
- pcSub6 - - CHARACTER - -
- - -
- pcSub7 - - CHARACTER - -
- - -
- pcSub8 - - CHARACTER - -
- - -
- pcSub9 - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED setErrorType ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
Purpose:
-
- - - -
-
-
-
-
-
-
-
- - -
- - - - - Constructor Detail - - -
- - - - - - - - - +
-
- - Top - - -
-

PUBLIC TimeOutError (datetime-tz, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- ptStartTime - - DATETIME-TZ - -
- - -
- piStopAfter + piStopAfter INTEGER @@ -969,7 +358,7 @@

PUBLIC Ti

--> - + -

- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Spark.Core.Util.ErrorTypeEnum errorType

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Spark.Core.Util.ErrorTypeEnum - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER originalErrorMessage

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.ApplicationError -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- - 04.15.2022 11:52:45 + --> + 04.18.2022 11:20:39 diff --git a/docs/PCTDoc/Spark.Core.Util.Timer.html b/docs/PCTDoc/Spark.Core.Util.Timer.html index 53da2b77..ad9d6b01 100644 --- a/docs/PCTDoc/Spark.Core.Util.Timer.html +++ b/docs/PCTDoc/Spark.Core.Util.Timer.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -138,7 +138,7 @@
- + + - + + - + +
- - +
@@ -377,7 +377,7 @@

PUBLIC INTEGER purgeTimers ()"> -

PUBLIC purgeTimers ()

+

purgeTimers ()

@@ -260,7 +226,7 @@ -->

- + - - - - - - - - - -
@@ -423,7 +423,7 @@

PUBLIC pu -

PUBLIC startTimer (character)

+

startTimer (character)

@@ -583,6 +583,6 @@

STATIC Ti

--> - 04.15.2022 11:52:45 + 04.18.2022 11:20:39 diff --git a/docs/PCTDoc/Spark.Core.Util.TransientScope.html b/docs/PCTDoc/Spark.Core.Util.TransientScope.html index 60a2d35a..941b1424 100644 --- a/docs/PCTDoc/Spark.Core.Util.TransientScope.html +++ b/docs/PCTDoc/Spark.Core.Util.TransientScope.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -114,7 +114,7 @@


- +
@@ -195,7 +161,7 @@
- + +
- Returns - - Progress.Lang.Object - -
- - -
- - - - - -
-
- - Top - - -
-

PUBLIC CHARACTER ToString ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Core.Util.LifecycleScope -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-


- + -->
@@ -422,7 +264,7 @@

PUBLIC CHARACTER TransientScope (character)">

-

PUBLIC TransientScope (character)

+

TransientScope (character)

- - - -
@@ -518,6 +360,6 @@

PUBLIC Tr

--> - 04.15.2022 11:52:45 + 04.18.2022 11:20:39 diff --git a/docs/PCTDoc/Spark.Core.Util.package.html b/docs/PCTDoc/Spark.Core.Util.package.html index 718a6409..ccbca568 100644 --- a/docs/PCTDoc/Spark.Core.Util.package.html +++ b/docs/PCTDoc/Spark.Core.Util.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -413,7 +413,7 @@
- 04.15.2022 11:52:51 + 04.18.2022 11:20:42
diff --git a/docs/PCTDoc/Spark.Core.package.html b/docs/PCTDoc/Spark.Core.package.html index 2e7b7b01..c0ec9588 100644 --- a/docs/PCTDoc/Spark.Core.package.html +++ b/docs/PCTDoc/Spark.Core.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -135,7 +135,7 @@
- 04.15.2022 11:52:49 + 04.18.2022 11:20:41
diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.Logger.html b/docs/PCTDoc/Spark.Diagnostic.Util.Logger.html deleted file mode 100644 index f158d6eb..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.Util.Logger.html +++ /dev/null @@ -1,523 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Namespace: - - Spark.Diagnostic.Util -
- Class  - - - - - -
- Logger -
-
- Parent classes: - -
-
- Inherits: - - Spark.Diagnostic.Util.OSPath -
- - -
- ABSTRACT - -
-
- -
File:Logger
Author(s):Dustin Grau (dugrau@progress.com)
Created:Thu Apr 26 13:30:07 EDT 2018
/* Automatically creates a logger instance for this class.
-
-
-
-
-
-
-
-
- - - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - # - - - - - CHARACTER CatalinaBase - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - # - - - - - OpenEdge.Logging.ILogWriter oLogger - - -
-
- - # - - - - - CHARACTER TemporaryDir - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- -
-
- - - - -
- - - - - Property Detail - - -
- - - - - - - - - - -
-
- - Top - - -
-

PROTECTED CHARACTER CatalinaBase

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED OpenEdge.Logging.ILogWriter oLogger

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER TemporaryDir

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
-
- - 04.15.2022 11:52:45 - - diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.OEMetrics.html b/docs/PCTDoc/Spark.Diagnostic.Util.OEMetrics.html deleted file mode 100644 index e4c9f947..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.Util.OEMetrics.html +++ /dev/null @@ -1,4271 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Namespace: - - Spark.Diagnostic.Util -
- Class  - - - - - -
- OEMetrics -
-
- Parent classes: - -
-
- Inherits: - - Spark.Diagnostic.Util.Logger -
- FINAL - -
- - -
-
- -
File:OEMetrics
Purpose:Gather and report OE metrics for the current PAS instance
Description:Utilizes JMX or OEManager queries to get PAS metrics
Author(s):Dustin Grau (dugrau@progress.com)
Created:Wed Apr 25 13:58:59 EDT 2018
Notes:Provides front-end methods to enable/disable features for
tracking metrics in a PASOE environment. For ABLObjects
the report must be requested at an application boundary,
meaning a point at the end of a request where all normal
cleanup has been performed and before the session is made
available for the next request. Depends on a configuration
file at CATALINA_BASE/bin/metrics_config.json to run the
necessary features. The name of this file is set in the
related metrics_setenv.[bat|sh] files which must also be
placed in the CATALINA_BASE/bin directory.
Purpose:
-
-
-
-
-
-
-
-
- -
-
-
- - - - - Method Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - LOGICAL GetABLObjects () - - - -/* StopTrackingObjects */
-
- - - - - - - - INTEGER GetAgentID () - - - -/* GetProcedureName */
-
- - + - - - - - LOGICAL GetAllABLObjectsReport (character) - - - -/* TrackAllAgents */
-
- - - - - - - - CHARACTER GetObjectsPath (integer, integer) - - - -/* GetSessionPath */
-
- - - - - - - - CHARACTER GetProcedureName () - - - -/* GetRequestInfo */
-
- - - - - - - - CHARACTER GetRequestID () - - - -/* GetSessionID */
-
- - - - - - - - Progress.Lang.OERequestInfo GetRequestInfo () - - - -/* InMatchList */
-
- - + - - - - - GetRequestMetrics (integer) - - - -/* GetSessionABLObjects */
-
- - - - - - - - CHARACTER GetRequestPath (integer) - - - -/***** Private Methods *****/
-
- - + - - - - - LOGICAL GetSessionABLObjects () - - - -/* GetAllABLObjectsReport */
-
- - + - - - - - LOGICAL GetSessionABLObjects (integer, integer) - - - -/* GetSessionABLObjects */
-
- - - - - - - - INTEGER GetSessionID () - - - -/* GetAgentID */
-
- - + - - - - - GetSessionMetrics (integer) - - - -/* GetRequestMetrics */
-
- - - - - - - - CHARACTER GetSessionPath (integer) - - - -/* GetRequestPath */
-
- - - - - - - - LOGICAL InMatchList (character, character) - - - -/* GetObjectsPath */
-
- - + - - - - - PrepareSessionReports () - - - -/* GetSessionMetrics */
-
- - + - - - - - PrepareSessionReports (integer, integer) - - - -/* PrepareSessionReports */
-
- - + - - - - - ProcessAccessLogs () - - - -/* WriteProfiler */
-
- - - - - - - - ResetOutput () - - - -/* GetRequestID */
-
- - - - - - - - LOGICAL SendToCollector (character, JsonObject) - - - -/* ResetOutput */
-
- - + - - - - - LOGICAL StartProfiler (character) - - - -/***** Public Methods *****/
-
- - + - - - - - LOGICAL StartProfiler (character, character) - - - -/* StartProfiler */
-
- - + - - - - - LOGICAL StartTrackingObjects () - - - -/* ProcessAccessLogs */
-
- - + - - - - - LOGICAL StartTrackingObjects (integer, character) - - - -/* StartTrackingObjects */
-
- - + - - - - - LOGICAL StopTrackingObjects () - - - -/* StartTrackingObjects */
-
- - + - - - - - LOGICAL StopTrackingObjects (integer) - - - -/* StopTrackingObjects */
-
- - + - - - - - LOGICAL TrackAllAgents (character, logical) - - - -/* GetABLObjects */
-
- - + - - - - - LOGICAL WriteProfiler (character) - - - -/* StartProfiler */
-
- - + - - - - - LOGICAL WriteProfiler (character, integer) - - - -/* StartProfiler */
-
- - - - - - - - WriteSessionReports (integer, integer) - - - -/* SendToCollector */
-
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - OEMetrics () - - - -/***** Constructor/Destructor *****/
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - - - - - - - CHARACTER ApplicationName - - -
-
- - # - - - - - CHARACTER CatalinaBase - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - - - - - - - CHARACTER CollectorLogsURI - - -
-
- - - - - - - - CHARACTER CollectorMetricsURI - - -
-
- - - - - - - - CHARACTER CollectorProfileURI - - -
-
- - + - - - - - Spark.Diagnostic.Util.OEMetrics Instance - - -
-
- - - - - - - - Progress.Json.ObjectModel.JsonObject MetricsOutput - - -
-
- - - - - - - - Spark.Diagnostic.Util.OEMetricsConfig oConfig - - -
-
- - # - - - - - OpenEdge.Logging.ILogWriter oLogger - - -
Inherited from Spark.Diagnostic.Util.Logger -
- - - - - - - - OpenEdge.Logging.ILogWriter oMetricsLogger - - -
-
- - - - - - - - Spark.Diagnostic.Util.RemoteMetrics oRemoteMetrics - - -
-
- - - - - - - - DATETIME OutputTime - - -
-
- - - - - - - - INTEGER RequestCount - - -
-
- - - - - - - - DATETIME-TZ RequestStart - - -
-
- - # - - - - - CHARACTER TemporaryDir - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PUBLIC LOGICAL GetABLObjects ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StopTrackingObjects
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE INTEGER GetAgentID ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetProcedureName
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL GetAllABLObjectsReport (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* TrackAllAgents
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAppName - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetObjectsPath (integer, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessionPath
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetProcedureName ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetRequestInfo
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetRequestID ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessionID
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Progress.Lang.OERequestInfo GetRequestInfo ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* InMatchList
-
- - - - - - - - - - - -
- Returns - - Progress.Lang.OERequestInfo - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC GetRequestMetrics (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessionABLObjects
-
- - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetRequestPath (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL GetSessionABLObjects ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetAllABLObjectsReport
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL GetSessionABLObjects (integer, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessionABLObjects
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE INTEGER GetSessionID ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetAgentID
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC GetSessionMetrics (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetRequestMetrics
-
- - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetSessionPath (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetRequestPath
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE LOGICAL InMatchList (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetObjectsPath
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcCompare - - CHARACTER - -
- - -
- pcMatches - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC PrepareSessionReports ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessionMetrics
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC PrepareSessionReports (integer, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* PrepareSessionReports
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC ProcessAccessLogs ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* WriteProfiler
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE ResetOutput ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetRequestID
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE LOGICAL SendToCollector (character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* ResetOutput
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcType - - CHARACTER - -
- - -
- pcData - - Progress.Json.ObjectModel.JsonObject - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StartProfiler (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcTrackBy - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StartProfiler (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StartProfiler
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcTrackBy - - CHARACTER - -
- - -
- pcFilter - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StartTrackingObjects ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* ProcessAccessLogs
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StartTrackingObjects (integer, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StartTrackingObjects
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- pcProcedure - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StopTrackingObjects ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StartTrackingObjects
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL StopTrackingObjects (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StopTrackingObjects
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackAllAgents (character, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetABLObjects
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAppName - - CHARACTER - -
- - -
- plEnable - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL WriteProfiler (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StartProfiler
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcTrackBy - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL WriteProfiler (character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* StartProfiler
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcTrackBy - - CHARACTER - -
- - -
- piExecThreshold - - INTEGER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE WriteSessionReports (integer, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* SendToCollector
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
-
-
-
-
-
-
-
- - -
- - - - - Constructor Detail - - -
- - - - - - -
-
- - Top - - -
-

PUBLIC OEMetrics ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - -
-
-
-
-
-
-
-
- - - -
- - - - - Property Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PRIVATE CHARACTER ApplicationName

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER CatalinaBase

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CollectorLogsURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CollectorMetricsURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CollectorProfileURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Spark.Diagnostic.Util.OEMetrics Instance

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Spark.Diagnostic.Util.OEMetrics - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Progress.Json.ObjectModel.JsonObject MetricsOutput

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Spark.Diagnostic.Util.OEMetricsConfig oConfig

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Spark.Diagnostic.Util.OEMetricsConfig - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED OpenEdge.Logging.ILogWriter oLogger

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.Logger -
-
-
-
-
- - - - - - - - - - - -
- Returns - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE OpenEdge.Logging.ILogWriter oMetricsLogger

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Spark.Diagnostic.Util.RemoteMetrics oRemoteMetrics

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Spark.Diagnostic.Util.RemoteMetrics - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE DATETIME OutputTime

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE INTEGER RequestCount

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE DATETIME-TZ RequestStart

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - DATETIME-TZ - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER TemporaryDir

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
-
- - 04.15.2022 11:52:46 - - diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.OEMetricsConfig.html b/docs/PCTDoc/Spark.Diagnostic.Util.OEMetricsConfig.html deleted file mode 100644 index 1a8be473..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.Util.OEMetricsConfig.html +++ /dev/null @@ -1,3411 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Namespace: - - Spark.Diagnostic.Util -
- Class  - - - - - -
- OEMetricsConfig -
-
- Parent classes: - -
-
- Inherits: - - Spark.Diagnostic.Util.OSPath -
- FINAL - -
- - -
-
- -
File:OEMetricsConfig
Purpose:Provide a central object for metrics configuration options
Author(s):Dustin Grau
Created:Mon May 07 17:01:59 EDT 2018
/* Tracks the last time the metrics config file was loaded from the file system.
-
-
-
-
-
-
-
-
- -
-
-
- - - - - Method Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - LOGICAL AreObjectsEnabled (character) - - - -/* GetTrackingFlag */
-
- - + - - - - - LOGICAL AreRequestsEnabled (character) - - - -/* IsMemoryEnabled */
-
- - - - - - - - Discovery () - - - -/***** Private Methods *****/
-
- - + - - - - - CHARACTER GetTrackingFlag (integer) - - - -/* UpdateCredentialsOEM */
-
- - + - - - - - LOGICAL IsMemoryEnabled (character) - - - -/* AreObjectsEnabled */
-
- - + - - - - - LOGICAL IsProfilerEnabled (character) - - - -/* AreRequestsEnabled */
-
- - + - - - - - LOGICAL OnValidSchedule () - - - -/* IsProfilerEnabled */
-
- - - - - - - - ParseConfig () - - - -/* Discovery */
-
- - + - - - - - RefreshConfig () - - - -/* SetLogger */
-
- - + - - - - - SetLogger (ILogWriter) - - - -/***** Public Methods *****/
-
- - + - - - - - UpdateCredentialsOEM (RemoteMetrics) - - - -/* CheckConfig */
-
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - OEMetricsConfig (ILogWriter) - - - -/***** Constructor/Destructor *****/
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - Progress.Json.ObjectModel.JsonObject ABLAppList - - -
-
- - # - - - - - CHARACTER CatalinaBase - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - + - - - - - CHARACTER ClassesExcluded - - -
-
- - + - - - - - INTEGER CollectorPort - - -
-
- - + - - - - - CHARACTER CollectorScheme - - -
-
- - + - - - - - CHARACTER CollectorServer - - -
-
- - + - - - - - CHARACTER CollectorType - - -
-
- - + - - - - - CHARACTER DefaultAppName - - -
-
- - + - - - - - CHARACTER InstanceURI - - -
-
- - - - - - - - CHARACTER MetricsConfigFile - - -
-
- - - - - - - - CHARACTER MetricsConfigPath - - -
-
- - - - - - - - CHARACTER OEManagerPass - - -
-
- - - - - - - - CHARACTER OEManagerUser - - -
-
- - - - - - - - OpenEdge.Logging.ILogWriter oLogger - - -
-
- - + - - - - - INTEGER OutputInterval - - -
-
- - + - - - - - CHARACTER PollingIgnoreList - - -
-
- - + - - - - - DATETIME PollingStartTime - - -
-
- - + - - - - - DATETIME PollingStopTime - - -
-
- - + - - - - - LOGICAL ProfilerEnabled - - -
-
- - + - - - - - CHARACTER ProfilerFilter - - -
-
- - + - - - - - INTEGER ProfilerThreshold - - -
-
- - + - - - - - CHARACTER ProfilerTrackBy - - -
-
- - + - - - - - CHARACTER RemoteSource - - -
-
- - # - - - - - CHARACTER TemporaryDir - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - + - - - - - LOGICAL TrackMemory - - -
-
- - + - - - - - LOGICAL TrackObjects - - -
-
- - + - - - - - LOGICAL TrackRequests - - -
-
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PUBLIC LOGICAL AreObjectsEnabled (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetTrackingFlag
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcMethodName - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL AreRequestsEnabled (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* IsMemoryEnabled
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcMethodName - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Discovery ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER GetTrackingFlag (integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* UpdateCredentialsOEM
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- piAgentID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL IsMemoryEnabled (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* AreObjectsEnabled
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcMethodName - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL IsProfilerEnabled (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* AreRequestsEnabled
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcMethodName - - CHARACTER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL OnValidSchedule ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* IsProfilerEnabled
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE ParseConfig ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* Discovery
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC RefreshConfig ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* SetLogger
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC SetLogger (ILogWriter)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- poLogger - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC UpdateCredentialsOEM (RemoteMetrics)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* CheckConfig
-
- - - - - - - - - - - - - - - -
- Parameters: -
- poRemoteMetrics - - Spark.Diagnostic.Util.RemoteMetrics - -
- - -
-
-
-
-
-
-
-
- - -
- - - - - Constructor Detail - - -
- - - - - - -
-
- - Top - - -
-

PUBLIC OEMetricsConfig (ILogWriter)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- poLogger - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
-
- - - -
- - - - - Property Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonObject ABLAppList

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER CatalinaBase

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ClassesExcluded

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER CollectorPort

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER CollectorScheme

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER CollectorServer

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER CollectorType

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER DefaultAppName

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER InstanceURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER MetricsConfigFile

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER MetricsConfigPath

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER OEManagerPass

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER OEManagerUser

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE OpenEdge.Logging.ILogWriter oLogger

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - OpenEdge.Logging.ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER OutputInterval

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER PollingIgnoreList

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME PollingStartTime

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC DATETIME PollingStopTime

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - DATETIME - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL ProfilerEnabled

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ProfilerFilter

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC INTEGER ProfilerThreshold

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - INTEGER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ProfilerTrackBy

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER RemoteSource

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER TemporaryDir

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackMemory

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackObjects

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackRequests

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
-
- - 04.15.2022 11:52:47 - - diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.RemoteMetrics.html b/docs/PCTDoc/Spark.Diagnostic.Util.RemoteMetrics.html deleted file mode 100644 index 8831508d..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.Util.RemoteMetrics.html +++ /dev/null @@ -1,4276 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Namespace: - - Spark.Diagnostic.Util -
- Class  - - - - - -
- RemoteMetrics -
-
- Parent classes: - -
-
- Inherits: - - Spark.Diagnostic.Util.Logger -
- FINAL - -
- - -
-
- -
File:RemoteMetrics
Purpose:Utilize the OEManager or JMX tools to gather info on
metrics for the current PASOE instance (agent/session)
Author(s):Irfan Syed (isyed@progress.com), Dustin Grau (dugrau@progress.com)
Created:Tue Nov 28 14:07:12 EST 2017
Notes:Requires OpenEdge 11.7.3 or later!
-
-
-
-
-
-
-
-
- -
-
-
- - - - - Method Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - - - - - - - CheckTempPath () - - - -/***** Private Methods *****/
-
- - - - - - - - CHARACTER CreateTempQuery (character, character) - - - -/* InvokeJMX */
-
- - - - - - - - CHARACTER CreateTempQuery (character, character, integer) - - - -/* CreateTempQuery */
-
- - - - - - - - CHARACTER CreateTempQuery (character, character, integer, integer) - - - -/* CreateTempQuery */
-
- - + - - - - - LOGICAL FilterABLObjectReport (character, integer, character, JsonObject) - - - -/* GetRequestMetrics */
-
- - - - - - - - Progress.Json.ObjectModel.JsonArray FilterABLObjects (JsonObject, character) - - - -/* CreateTempQuery */
-
- - + - - - - - LOGICAL FilterSessionABLObjectReport (character, integer, integer, character, JsonArray) - - - -/* FilterABLObjectReport */
-
- - + - - - - - GetAgents (character) - - - -/* GetApplication */
-
- - + - - - - - CHARACTER GetApplication (character[], integer) - - - -/***** Public Methods *****/
-
- - + - - - - - LOGICAL GetRequestMetrics (character, integer, JsonArray) - - - -/* TrackABLObjects */
-
- - + - - - - - GetSessions (character, integer, JsonArray) - - - -/* GetAgents */
-
- - - - - - - - Progress.Json.ObjectModel.JsonObject InvokeAPI (character) - - - -/* CheckTempPath */
-
- - - - - - - - Progress.Json.ObjectModel.JsonObject InvokeAPI (character, MethodEnum, JsonObject) - - - -/* InvokeAPI */
-
- - - - - - - - CHARACTER InvokeJMX (character) - - - -/* InvokeAPI */
-
- - + - - - - - LOGICAL TrackABLObjects (character, integer, logical) - - - -/* GetSessions */
-
- - + - - - - - LOGICAL TrackingABLObjects (character, integer) - - - -/* TrackABLObjects */
-
- - -
-
- - - - - Constructor Summary - - -
- - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - + - - - - - RemoteMetrics (character) - - - -/***** Constructor/Destructor *****/
-
- - - -
-
- - - - - Property Summary - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OptionsNamePurpose
- - - - - - - - CHARACTER ABLObjectsQuery - - -
-
- - - - - - - - CHARACTER ABLSessionObjectsQuery - - -
-
- - - - - - - - CHARACTER AgentsQuery - - -
-
- - + - - - - - Progress.Json.ObjectModel.JsonObject Applications - - -
-
- - # - - - - - CHARACTER CatalinaBase - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - - - - - - - CHARACTER GetAgentSessionURI - - -
-
- - - - - - - - CHARACTER GetAgentURI - - -
-
- - - - - - - - CHARACTER GetAllAgentsURI - - -
-
- - - - - - - - CHARACTER GetObjectsReport - - -
-
- - - - - - - - CHARACTER GetRequestsURI - - -
-
- - - - - - - - CHARACTER GetSessionObjectsReport - - -
-
- - + - - - - - CHARACTER InstanceURI - - -
-
- - + - - - - - CHARACTER ManagerPassword - - -
-
- - + - - - - - CHARACTER ManagerRealm - - -
-
- - - - - - - - CHARACTER ManagerURI - - -
-
- - + - - - - - CHARACTER ManagerUsername - - -
-
- - - - - - - - CHARACTER MetricSource - - -
-
- - - - - - - - CHARACTER OEJMXBinary - - -
-
- - # - - - - - ILogWriter oLogger - - -
Inherited from Spark.Diagnostic.Util.Logger -
- - - - - - - - CHARACTER RequestsQuery - - -
-
- - - - - - - - CHARACTER SessionsQuery - - -
-
- - # - - - - - CHARACTER TemporaryDir - - -
Inherited from Spark.Diagnostic.Util.OSPath -
- - - - - - - - CHARACTER TrackingQuery - - -
-
- - - - - - - - CHARACTER TrackObjects - - -
-
- - - - - - - - CHARACTER TrackOffQuery - - -
-
- - - - - - - - CHARACTER TrackOnQuery - - -
-
- -
-
- -
- - - - - Method Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PRIVATE CheckTempPath ()

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CreateTempQuery (character, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* InvokeJMX
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcQueryName - - CHARACTER - -
- - -
- pcABLApp - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CreateTempQuery (character, character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* CreateTempQuery
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcQueryName - - CHARACTER - -
- - -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER CreateTempQuery (character, character, integer, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* CreateTempQuery
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcQueryName - - CHARACTER - -
- - -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL FilterABLObjectReport (character, integer, character, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetRequestMetrics
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- pcExclude - - CHARACTER - -
- - -
- poReport - - Progress.Json.ObjectModel.JsonObject - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Progress.Json.ObjectModel.JsonArray FilterABLObjects (JsonObject, character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* CreateTempQuery
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- poObjData - - Progress.Json.ObjectModel.JsonObject - -
- - -
- pcExclude - - CHARACTER - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL FilterSessionABLObjectReport (character, integer, integer, character, JsonArray)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* FilterABLObjectReport
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- piSessionID - - INTEGER - -
- - -
- pcExclude - - CHARACTER - -
- - -
- poReport - - Progress.Json.ObjectModel.JsonArray - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC GetAgents (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetApplication
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER GetApplication (character[], integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcAppList - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL GetRequestMetrics (character, integer, JsonArray)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* TrackABLObjects
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- poRequests - - Progress.Json.ObjectModel.JsonArray - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC GetSessions (character, integer, JsonArray)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetAgents
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- poSessions - - Progress.Json.ObjectModel.JsonArray - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Progress.Json.ObjectModel.JsonObject InvokeAPI (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* CheckTempPath
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRequestURI - - CHARACTER - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE Progress.Json.ObjectModel.JsonObject InvokeAPI (character, MethodEnum, JsonObject)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* InvokeAPI
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcRequestURI - - CHARACTER - -
- - -
- poHttpMethod - - OpenEdge.Net.HTTP.MethodEnum - -
- - -
- poRequestData - - Progress.Json.ObjectModel.JsonObject - -
- - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER InvokeJMX (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* InvokeAPI
-
- - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcQueryPath - - CHARACTER - -
- - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackABLObjects (character, integer, logical)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* GetSessions
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- plEnable - - LOGICAL - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC LOGICAL TrackingABLObjects (character, integer)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
/* TrackABLObjects
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Parameters: -
- pcABLApp - - CHARACTER - -
- - -
- piAgentID - - INTEGER - -
- - -
- Returns - - LOGICAL - -
- - -
-
-
-
-
-
-
-
- - -
- - - - - Constructor Detail - - -
- - - - - - -
-
- - Top - - -
-

PUBLIC RemoteMetrics (character)

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - -
- Parameters: -
- pcSource - - CHARACTER - -
- - -
-
-
-
-
-
-
-
- - - -
- - - - - Property Detail - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - Top - - -
-

PRIVATE CHARACTER ABLObjectsQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER ABLSessionObjectsQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER AgentsQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC Progress.Json.ObjectModel.JsonObject Applications

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - Progress.Json.ObjectModel.JsonObject - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER CatalinaBase

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetAgentSessionURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetAgentURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetAllAgentsURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetObjectsReport

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetRequestsURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER GetSessionObjectsReport

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER InstanceURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ManagerPassword

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ManagerRealm

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER ManagerURI

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PUBLIC CHARACTER ManagerUsername

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER MetricSource

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER OEJMXBinary

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED ILogWriter oLogger

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.Logger -
-
-
-
-
- - - - - - - - - - - -
- Returns - - ILogWriter - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER RequestsQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER SessionsQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PROTECTED CHARACTER TemporaryDir

- - - - - - -
-
-
-
-
-
-
-
-
-
- Inherited from Spark.Diagnostic.Util.OSPath -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER TrackingQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER TrackObjects

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER TrackOffQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
- - Top - - -
-

PRIVATE CHARACTER TrackOnQuery

- - - - - - -
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - -
- Returns - - CHARACTER - -
- - -
-
-
-
-
-
-
-
- - 04.15.2022 11:52:48 - - diff --git a/docs/PCTDoc/Spark.Diagnostic.Util.package.html b/docs/PCTDoc/Spark.Diagnostic.Util.package.html deleted file mode 100644 index 4c800d26..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.Util.package.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - -
-
- - - - - - - -
-
- - - - - - - - - - - - - - - -
- Parentpacke: - - Spark.Diagnostic -
- Spark.Diagnostic.Util -
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - -
Classes
-
-
-
- Logger - - -
-
-
-
- OEMetrics - - -
-
-
-
- OEMetricsConfig - - -
-
-
-
- OSPath - - -
-
-
-
- RemoteMetrics - - -
-
-
-
-
- 04.15.2022 11:52:52 -
- - diff --git a/docs/PCTDoc/Spark.Diagnostic.package.html b/docs/PCTDoc/Spark.Diagnostic.package.html deleted file mode 100644 index e5537b17..00000000 --- a/docs/PCTDoc/Spark.Diagnostic.package.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - Progress Spark Toolkit (v6.0.2) - - - - - - -
-
- - - - - - - -
-
- - - - - - - - - - - - - - - -
- Parentpacke: - - Spark -
- Spark.Diagnostic.Util -
-
- -
-
-
- -
- - - - - - - -
Subpackages
-
-
-
- Spark.Diagnostic.Util - - -
-
-
-
-
- 04.15.2022 11:52:52 -
- - diff --git a/docs/PCTDoc/Spark.package.html b/docs/PCTDoc/Spark.package.html index d4214762..22e03ea4 100644 --- a/docs/PCTDoc/Spark.package.html +++ b/docs/PCTDoc/Spark.package.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0) @@ -62,17 +62,6 @@

-
-
-
-
- Spark.Diagnostic - -
@@ -80,7 +69,7 @@
- 04.15.2022 11:52:49 + 04.18.2022 11:20:41
diff --git a/docs/PCTDoc/index.html b/docs/PCTDoc/index.html index b1cee875..0f5947cd 100644 --- a/docs/PCTDoc/index.html +++ b/docs/PCTDoc/index.html @@ -2,7 +2,7 @@ - Progress Spark Toolkit (v6.0.2) + Progress Spark Toolkit (v7.0.0)