LibItsHttp_BinaryMessageBodyTypes.ttcn 1.35 KB
Newer Older
/**
 *    @author   ETSI / STF545
 *    @version  $URL$
 *              $ID:$
 *    @desc     This module provides the custom binary types for ITS HTTP based protocols.
 *    @copyright   ETSI Copyright Notification
 *                 No part may be reproduced except as authorized by written permission.
 *                 The copyright and the foregoing restriction extend to reproduction in all media.
 *                 All rights reserved.
 */
module LibItsHttp_BinaryMessageBodyTypes {
    
  /**
   * This file volontary contains a trivial declaration of the type BinaryBodu. 
   * In accordance with your TTCN-3 module LibItsHttp_XMLTypes, you have to change the BinaryBody typing.
   */
  // TODO Add here your custom binary import
  // LibIts
ASN.1 Documenter's avatar
ASN.1 Documenter committed
  import from Ieee1609Dot2BaseTypes language "ASN.1:1997" all;
  import from Ieee1609Dot2 language "ASN.1:1997" all;
  import from EtsiTs102941BaseTypes language "ASN.1:1997" all;
  import from EtsiTs102941TypesEnrolment language "ASN.1:1997" all;
  import from EtsiTs102941MessagesCa language "ASN.1:1997" all;
  import from EtsiTs103097Module language "ASN.1:1997" all;
  
  type union BinaryBody {
    // TODO Add here your custom variants
Yann Garcia's avatar
Yann Garcia committed
    Ieee1609Dot2Data   ieee1609dot2_data,
    octetstring        raw
  } with {
    variant ""
  }
      
} // End of LibItsHttp_BinaryMessageBodyTypes