LibItsCalm_TestSystem.ttcn 1.24 KB
Newer Older
reinaortega's avatar
reinaortega committed
1
2
/**
 *    @author     ETSI / STF405
filatov's avatar
filatov committed
3
4
 *  @version     $URL$
 *                $Id$
reinaortega's avatar
reinaortega committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 *    @desc        Test System module for ITS
 *
 */
module LibItsCalm_TestSystem {
    
    // LibCommon
    import from LibCommon_Time {modulepar all};
    import from LibCommon_Sync all;
    
    // LibIts
    import from LibItsCalm_Interface all;
    
    group componentDefinitions {

         /**
         * @desc ITS System Adapter
         */
        type component ItsCalmSystem {
            
            port UpperTesterPort utPort;
            port AdapterControlPort acPort;
            
            // MGT1 ports
28
            port IicpPort iicpPort; // ITS station-internal management communications protocol 
reinaortega's avatar
reinaortega committed
29
            // MGT2 ports
30
            port FsapPort fsapPort; // Fast Service Advertisement Protocol 
31
32
            port MgtMfSapPort mgtMfSapPort;
            port MgtMnSapPort mgtMnSapPort;
reinaortega's avatar
reinaortega committed
33
34
            
            // NT3 ports
35
36
            port FntpPort fntpPort; // Fast Network & Transport layer Protocol 
            port MgtMnSapPort cfPort; // FNTP configuration port
37
38
            
        } // End of component ItsCalmSystem
reinaortega's avatar
reinaortega committed
39
40
41
42
        
    } // End of group componentDefinitions
     
} // End of module LibItsCalm_TestSystem