Difference between revisions of "Extensions.DiagCom.GetRequest"
Jump to navigation
Jump to search
(Created page with "Category:DiagCom == Classification == {{ClassificationActivity | GetRequest | Request of Diagnostic Services | Term | OTX DiagCom extension | Request rel...") |
|||
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetRequest'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetRequest | Request of Diagnostic Services | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Request related terms]] | - | - }} | + | {{ClassificationActivity | GetRequest | Request of the Diagnostic Services | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Extensions.DiagCom#Terms|Request related terms]] | - | - }} |
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | GetRequest( | + | RequestTerm DiagCom.GetRequest(DiagServiceTerm diagService); |
</syntaxhighlight> | </syntaxhighlight> | ||
== Description == | == Description == | ||
− | The '''GetRequest''' term returns the | + | The '''GetRequest''' term returns the '''Request''' belonging to a diagnostic service. It accepts a diagnostic service handle. |
+ | |||
+ | {{TermReturnValue| [[Extensions.DiagCom.Request|Request]] | '''Request''' of diagnostic services.}} | ||
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{ | + | {{TableRowPropertie2| DiagService | [[Extensions.DiagCom.DiagService|DiagService]] | [[Term]] | - | [1] | The term will yield a handle to the '''DiagService''' that the '''Request''' belongs to.}} |
− | |||
|} | |} | ||
== Examples == | == Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | Request | + | |
+ | /// Local Declarations | ||
+ | |||
+ | DiagCom.DiagService DiagService1; | ||
+ | DiagCom.ComChannel ComChannel1; | ||
+ | DiagCom.Request Request1; | ||
+ | |||
+ | /// Flow | ||
+ | |||
+ | ComChannel1 = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false); | ||
+ | DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu"); | ||
+ | Request1 = DiagCom.GetRequest(DiagService1); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== See also == | == See also == | ||
− | [[GetPdu]] | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]]<br/> |
+ | [[Extensions.DiagCom.CreateDiagServiceByName|CreateDiagServiceByName]]<br/> | ||
+ | [[Extensions.DiagCom.CreateDiagServiceBySemantic|CreateDiagServiceBySemantic]]<br/> | ||
+ | [[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]]<br/> | ||
+ | [[Extensions.DiagCom.GetPdu|GetPdu]] |
Latest revision as of 08:55, 17 December 2019
Contents
Classification
Name | GetRequest |
Short Description | Request of the Diagnostic Services |
Class | Term |
Extension | OTX DiagCom extension |
Group | Request related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
RequestTerm DiagCom.GetRequest(DiagServiceTerm diagService);
Description
The GetRequest term returns the Request belonging to a diagnostic service. It accepts a diagnostic service handle.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Request | Request of diagnostic services. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DiagService | DiagService | Term | - | [1] | The term will yield a handle to the DiagService that the Request belongs to. |
Examples
/// Local Declarations
DiagCom.DiagService DiagService1;
DiagCom.ComChannel ComChannel1;
DiagCom.Request Request1;
/// Flow
ComChannel1 = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
Request1 = DiagCom.GetRequest(DiagService1);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetParameterByPath
GetPdu