LibItsHttp_XmlMessageBodyTypes.ttcn 623 Bytes
Newer Older
garciay's avatar
garciay committed
module LibItsHttp_XmlMessageBodyTypes {
    
    // LibItsHttp
    import from LibItsHttp_XMLTypes all;
    // RFC5985 Held
    import from XSD all;
    import from urn_ietf_params_xml_ns_geopriv_held language "XSD" all;
    
    /**
     * This file volontary contains a trivial declaration of the type XmlBodu. 
     * In accordance with your TTCN-3 module LibItsHttp_XMLTypes, you have to change the XmlBody typing.
     */
    
    type union XmlBody {
      LocationRequest   locationRequest,
      LocationResponse  locationResponse,
      charstring        raw
    };
    
} // End of LibItsHttp_XmlMessageBodyTypes