Rev

Rev 130 | Rev 132 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | Bug Tracker

Rev 130 Rev 131
Line 1... Line 1...
1
/*
1
/*
2
 *      @author         STF 346, STF366, STF368, STF369
2
 *      @author         STF 346, STF366, STF368, STF369
3
 *  @version    $Id: LibIms_Templates.ttcn 130 2012-01-20 08:50:40Z schmitting $
3
 *  @version    $Id: LibIms_Templates.ttcn 131 2012-01-20 12:21:24Z schmitting $
4
 *      @desc           This module provides the types used by the test component
4
 *      @desc           This module provides the types used by the test component
5
 *              for SIP-IMS tests. Module become from STF306 and STF334-336
5
 *              for SIP-IMS tests. Module become from STF306 and STF334-336
6
 */
6
 */
7
7
8
module LibIms_Templates
8
module LibIms_Templates
Line 483... Line 483...
483
} // end group HeaderFieldTemplates
483
} // end group HeaderFieldTemplates
484
484
485
group MessageBodyTemplates {
485
group MessageBodyTemplates {
486
       
486
       
487
group XMLTemplates {
487
group XMLTemplates {
488
       
-
 
489
//  template XmlBody m_XmlBody_ACR_ICB(template Incoming_communication_barring p_icb) :=
-
 
490
//  {
-
 
491
//      icb := p_icb
-
 
492
//  };
-
 
493
       
-
 
494
//  template XmlBody m_XmlBody_ACR_OCB(template Outgoing_communication_barring p_ocb) :=
-
 
495
//  {
-
 
496
//      ocb := p_ocb
-
 
497
//  };
-
 
498
       
488
       
499
    template XmlBody m_XmlBody_ConfInfo(template Conference_type p_confInfo) :=
489
    template XmlBody m_XmlBody_ConfInfo(template Conference_type p_confInfo) :=
500
    {
490
    {
501
        conference := p_confInfo
491
        conference := p_confInfo
502
    };
492
    };
Line 524... Line 514...
524
    template XmlBody m_XmlBody_simservs(template Simservs p_simservs) :=
514
    template XmlBody m_XmlBody_simservs(template Simservs p_simservs) :=
525
    {
515
    {
526
        simservs := p_simservs
516
        simservs := p_simservs
527
    };
517
    };
528
       
518
       
529
    template XmlBody
-
 
530
    m_XmlBody_ACR_ICB(template Incoming_communication_barring p_icb) := {
519
    template XmlBody m_XmlBody_ACR_ICB(template Incoming_communication_barring p_icb) := {
531
        simservs := {
520
        simservs := {
532
            attr := {},  
521
            attr := {},  
533
            absServiceGroup_list := {},
522
            absServiceGroup_list := {},
534
            extensions := {
523
            extensions := {
535
                                                        {elem_list := p_icb.attr}
524
                                                        elem_list := valueof(p_icb.attr)
536
                                                  }
525
                                                  }
537
        }
526
        }
538
    };
527
    };
539
           
528
           
540
    template XmlBody m_XmlBody_ACR_OCB(template Outgoing_communication_barring p_ocb) := {
529
    template XmlBody m_XmlBody_ACR_OCB(template Outgoing_communication_barring p_ocb) := {
541
        simservs := {
530
        simservs := {
542
            attr := {},  
531
            attr := {},  
543
            absServiceGroup_list := {},
532
            absServiceGroup_list := {},
544
            extensions := {
533
            extensions := {
545
                                                        {elem_list := p_ocb.attr}
534
                                                        elem_list := valueof(p_ocb.attr)
546
                                                  }
535
                                                  }
547
        }
536
        }
548
    };
537
    };
549
       
538
       
550
    template XmlBody m_XmlBody_CDIVN(template Comm_div_info_type p_cdivn) :=
539
    template XmlBody m_XmlBody_CDIVN(template Comm_div_info_type p_cdivn) :=