Difference between revisions of "Extensions.Flash.GetSignature"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
{{DISPLAYTITLE: '''GetSignature'''}}[[Category:Flash]] | {{DISPLAYTITLE: '''GetSignature'''}}[[Category:Flash]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetSignature | Returns the signature information of a block or a session | [[Term]] | [[Extensions.Flash|OTX Flash extension]] | [[Security related terms]] | [[OutOfBoundsException]] | - }} | + | {{ClassificationActivity | GetSignature | Returns the signature information of a block or a session | [[Term]] | [[Extensions.Flash|OTX Flash extension]] | [[Security related terms]] | [[Core.Actions.Throw.Exception.OutOfBoundsException|OutOfBoundsException]] | - }} |
== OTL Syntax == | == OTL Syntax == |
Revision as of 07:31, 16 February 2016
Contents
Classification
Name | GetSignature |
Short Description | Returns the signature information of a block or a session |
Class | Term |
Extension | OTX Flash extension |
Group | Security related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = Flash.GetSignature(FlashSessionTerm, IntegerTerm);
Description
The GetSignature term is the signature information of a block or a session.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | The signature information of a block or a session. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
FlashSession | FlashSession | Term | - | [1] | This element represents the FlashSession in which the block containing the segment resides. |
Block | Integer | Term | - | [0..1] | This element represents the number of the block whose signature shall be returned. |
Security | Integer | Term | - | [1] | This element defines the number of the security on which the term execution is based. |
OTL Examples
DiagCom.ComChannel ComChannel1;
List<String> List1;
Flash.FlashSession FlashSession1;
String String1;
ComChannel1 = DiagCom.GetComChannel("DiagnosticsCan_ECU_1", null, false);
List1 = Flash.GetListOfValidFlashSessions(@Directions:DOWNLOAD, ComChannel1, @Audiences:SUPPLIER);
FlashSession1 = Flash.GetFlashSession(List1[0]);
String1 = Flash.GetSignature(FlashSession1, 0, 0);