LibItsHttp_MessageBodyTypes.ttcn 322 Bytes
Newer Older
garciay's avatar
garciay committed
module LibItsHttp_MessageBodyTypes {
    
    // LibHttp
    import from LibItsHttp_XmlMessageBodyTypes all;
    
    type octetstring MsdBody;
    
    type union HttpMessageBody {
        MsdBody ms_body,
        XmlBody xml_body
    } // End of type HttpMessageBody
    
} // End of module LibItsHttp_MessageBodyTypes