LibItsHttp_JsonTemplates.ttcn 4.53 KB
Newer Older
Yann Garcia's avatar
Yann Garcia committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 *    @author   ETSI / STF569
 *    @version  $URL$
 *              $ID:$
 *    @desc     This module provides the custom templates 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_JsonTemplates {
  
  // LibMec/LocationAPI
  import from LocationAPI_TypesAndValues all;
  import from LocationAPI_Templates all;
Yann Garcia's avatar
Yann Garcia committed
16
17
18
  // LibMec/UEidentityAPI
  import from UEidentityAPI_TypesAndValues all;
  import from UEidentityAPI_Templates all;
Yann Garcia's avatar
Yann Garcia committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  
  // TODO Add here your custom RFCs import 
  
  // LibItsHttp
  import from LibItsHttp_JsonMessageBodyTypes all;
  import from LibItsHttp_JSONTypes all;
    
  template (value) JsonBody m_json_body_raw(
                                            in template (value) charstring p_raw
  ) := {
    raw := p_raw
  } // End of template m_json_body_raw

  template (present) JsonBody mw_json_body_raw(
                                               template (present) charstring p_raw := ?
  ) := {
    raw := p_raw
  } // End of template mw_json_body_raw
Yann Garcia's avatar
Yann Garcia committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

  group locarion_api {
    
    template (value) JsonBody m_body_json_user_info(
                                                    in template (value) UserInfo p_user_info
                                                    ) := {
      userInfo := p_user_info
    } // End of template m_body_json_user_info
    
    template (present) JsonBody mw_body_json_user_info(
                                                       template (present) UserInfo p_user_info := ?
                                                       ) := {
      userInfo := p_user_info
    } // End of template mw_body_json_user_info
    
Yann Garcia's avatar
Yann Garcia committed
52
53
54
55
56
57
58
59
60
61
62
63
    template (value) JsonBody m_body_json_user_list(
                                                    in template (value) UserList p_user_list
                                                    ) := {
      userList := p_user_list
    } // End of template m_body_json_user_list
    
    template (present) JsonBody mw_body_json_user_list(
                                                       template (present) UserList p_user_list := ?
                                                       ) := {
      userList := p_user_list
    } // End of template mw_body_json_user_list
    
Yann Garcia's avatar
Yann Garcia committed
64
65
66
67
68
    template (value) JsonBody m_body_json_zone_info(
                                                    in template (value) ZoneInfo p_zone_info
                                                    ) := {
      zoneInfo := p_zone_info
    } // End of template m_body_json_zone_info
Yann Garcia's avatar
Yann Garcia committed
69
  
Yann Garcia's avatar
Yann Garcia committed
70
71
    template (present) JsonBody mw_body_json_zone_info(
                                                       template (present) ZoneInfo p_zone_info := ?
Yann Garcia's avatar
Yann Garcia committed
72
                                                     ) := {
Yann Garcia's avatar
Yann Garcia committed
73
74
75
76
77
78
79
      zoneInfo := p_zone_info
    } // End of template mw_body_json_zone_info
    
  } // End of group locarion_api

  group ue_identity_api {

Yann Garcia's avatar
Yann Garcia committed
80
81
82
83
84
85
    template (value) JsonBody m_body_json_ue_identity_tag_info(
                                                               in template (value) UeIdentityTagInfo p_ueIdentityTagInfo
                                                               ) := {
      ueIdentityTagInfo := p_ueIdentityTagInfo
    } // End of template m_body_json_ue_identity_tags
    
Yann Garcia's avatar
Yann Garcia committed
86
87
88
89
90
91
    template (present) JsonBody mw_body_json_ue_identity_tag_info(
                                                                  template (present) UeIdentityTagInfo p_ueIdentityTagInfo := ?
                                                                  ) := {
      ueIdentityTagInfo := p_ueIdentityTagInfo
    } // End of template mw_body_json_ue_identity_tags
    
Yann Garcia's avatar
Yann Garcia committed
92
93
94
95
96
97
    template (value) JsonBody m_body_json_ue_problem_details(
                                                             in template (value) ProblemDetails p_problemDetails
                                                             ) := {
      problemDetails := p_problemDetails
    } // End of template m_body_json_ue_problem_details
    
Yann Garcia's avatar
Yann Garcia committed
98
99
100
101
102
103
104
    template (present) JsonBody mw_body_json_ue_problem_details(
                                                                template (present) ProblemDetails p_problemDetails := ?
                                                                ) := {
      problemDetails := p_problemDetails
    } // End of template mw_body_json_ue_problem_details
    
  } // End of group ue_identity_api
Yann Garcia's avatar
Yann Garcia committed
105
106
  
} // End of module LibItsHttp_JsonTemplates