Difference between revisions of "Extensions.Flash.GetSecurityMethod"
Jump to navigation
Jump to search
m (Hb moved page GetSecurityMethod to Extensions.Flash.GetSecurityMethod: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Flash]] | + | {{DISPLAYTITLE: ''' GetSecurityMethod '''}}[[Category:Flash]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetSecurityMethod | Return the security method information of a block or a session | [[Term]] | [[Flash|OTX Flash extension]] | [[Security related terms]] | [[OutOfBoundsException]] | - }} | + | {{ClassificationActivity | GetSecurityMethod | Return the security method information of a block or a session | [[Term]] | [[Extensions.Flash|OTX Flash extension]] | [[Security related terms]] | [[OutOfBoundsException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetSecurityMethod''' term is the security method information of a block or a session. | The '''GetSecurityMethod''' term is the security method information of a block or a session. | ||
− | {{TermReturnValue| [[String]] | The security method information of a block or a session.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The security method information of a block or a session.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| FlashSession | [[FlashSession]] | [[Term]] | - | [1] | This element represents the FlashSession in which the block containing the segment resides.}} | + | {{TableRowPropertie1| FlashSession | [[Extensions.Flash.FlashSession|FlashSession]] | [[Term]] | - | [1] | This element represents the FlashSession in which the block containing the segment resides.}} |
− | {{TableRowPropertie2| Block | [[Integer]] | [[Term]] | - | [0..1] | This element represents the number of the block whose signature shall be returned.}} | + | {{TableRowPropertie2| Block | [[Core.DataTypes.SimpleDataType.Integer|Integer]] | [[Term]] | - | [0..1] | This element represents the number of the block whose signature shall be returned.}} |
− | {{TableRowPropertie1| Security | [[Integer]] | [[Term]] | - | [1] | This element defines the number of the security on which the term execution is based.}} | + | {{TableRowPropertie1| Security | [[Core.DataTypes.SimpleDataType.Integer|Integer]] | [[Term]] | - | [1] | This element defines the number of the security on which the term execution is based.}} |
|} | |} | ||
Line 36: | Line 36: | ||
== See also == | == See also == | ||
− | [[GetSignature]] <br/> | + | [[Extensions.Flash.GetSignature|GetSignature]] <br/> |
− | [[GetValidity]] <br/> | + | [[Extensions.Flash.GetValidity|GetValidity]] <br/> |
− | [[GetChecksum]] | + | [[Extensions.Flash.GetChecksum|GetChecksum]] |
Revision as of 08:15, 15 February 2016
Contents
Classification
Name | GetSecurityMethod |
Short Description | Return the security method 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.GetSecurityMethod(FlashSessionTerm, IntegerTerm);
Description
The GetSecurityMethod term is the security method 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 security method 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;
Integer Integer1;
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.GetSecurityMethod(FlashSession1, 0, 0);