LocationAPI_TypesAndValues.ttcn 11.7 KB
Newer Older
Yann Garcia's avatar
Yann Garcia committed
1
2
3
4
module LocationAPI_TypesAndValues {
  
  // LibCommon
  import from LibCommon_BasicTypesAndValues all;
Yann Garcia's avatar
Yann Garcia committed
5
6
7
8
9
10

  /**
   * @desc
   * @member seconds The seconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC
   * @member nanoSeconds The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC
   */
Yann Garcia's avatar
Yann Garcia committed
11
12
13
14
15
  type record TimeStamp {
    UInt32 seconds,
    UInt32 nanoSeconds
  }
  
Yann Garcia's avatar
Yann Garcia committed
16
17
18
19
20
21
22
23
  /**
   * @desc A type containing list of users.
   * @member user Collection of the zone information list.
   * @member resourceURL Self referring URL.
   */
  type record of UserInfo UserInfos;
  type record UserList {
    UserInfos user optional,
Yann Garcia's avatar
Yann Garcia committed
24
    ResourceURL resourceURL
Yann Garcia's avatar
Yann Garcia committed
25
  }
Yann Garcia's avatar
Yann Garcia committed
26
27
28
  
  /**
   * @desc A type containing location information with latitude, longitude and altitude, in addition the accuracy of the information are provided.
Yann Garcia's avatar
Yann Garcia committed
29
30
31
32
   * @member latitude
   * @member longitude
   * @member altitude
   * @member accuracy
Yann Garcia's avatar
Yann Garcia committed
33
34
35
36
37
   */
  type record LocationInfo {
    float latitude,
    float longitude,
    float altitude optional,
Yann Garcia's avatar
Yann Garcia committed
38
    UInt32 accuracy
Yann Garcia's avatar
Yann Garcia committed
39
40
41
42
  } // End of type LocationInfo
  
  /**
   * @desc A type containing zone information.
Yann Garcia's avatar
Yann Garcia committed
43
44
45
46
47
   * @member zoneId Identifier of zone
   * @member numberOfAccessPoints The number of access points within the zone
   * @member numberOfUnservicableAccessPoints Number of inoperable access points within the zone.
   * @member numberOfUsers The number of users currently on the access point.
   * @member resourceURL Self referring URL.
Yann Garcia's avatar
Yann Garcia committed
48
49
   */
  type record ZoneInfo {
Yann Garcia's avatar
Yann Garcia committed
50
51
52
53
54
    ZoneId zoneId,
    NumberOfAccessPoints numberOfAccessPoints,
    NumberOfUnserviceableAccessPoints numberOfUnservicableAccessPoints,
    NumberOfUsers numberOfUsers,
    ResourceURL resourceURL
Yann Garcia's avatar
Yann Garcia committed
55
  }
Yann Garcia's avatar
Yann Garcia committed
56
57
58
59
60
61
62
63
64

  /**
   * @desc Collection of the zone information list.
   * @member zone Collection of the zone information list.
   * @member resourceURL Self referring URL.
   */
  type record of ZoneInfo ZoneInfos;
  type record ZoneList {
    ZoneInfos zone optional,
Yann Garcia's avatar
Yann Garcia committed
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
    ResourceURL resourceURL
  }

  /**
   * @desc Identifier of access point, <E-CGI><Cell Portion ID> (reference ETSI TS 129 171). Where the E-CGI is made up of the PLMN and Cell Identity (28 bit string). Then the PLMN is made up of the 3 digit MCC & 2 or 3 digit MNC. The Cell Portion is an optional element
   */
  type universal charstring AccessPointId;
  
  /**
   * @desc A type containing access point information.
   * @member accessPointId
   * @member connectionType The connection type for the access poin
   * @member operationStatus The operation status of the access point
   * @member numberOfUsers The number of users currently on the access point.
   * @member resourceURL Self referring URL.
   */
  type record AccessPointInfo {
    AccessPointId accessPointId,
Yann Garcia's avatar
Yann Garcia committed
83
    LocationInfo locationInfo optional,
Yann Garcia's avatar
Yann Garcia committed
84
85
    ConnectionType connectionType,
    OperationStatus operationStatus,
Yann Garcia's avatar
Yann Garcia committed
86
87
    NumberOfUsers numberOfUsers,
    InterestRealm interestRealm,
Yann Garcia's avatar
Yann Garcia committed
88
89
    ResourceURL resourceURL
  }
Yann Garcia's avatar
Yann Garcia committed
90
  type record of AccessPointInfo AccessPointInfos;
Yann Garcia's avatar
Yann Garcia committed
91
92
93
94
95
96
97
98
99

  /**
   * @desc A type containing list of access points.
   * @member zoneId 
   * @member accessPoint Collection of the access point information list.
   * @member resourceURL 
   */
  type record AccessPointList {
    ZoneId zoneId,
Yann Garcia's avatar
Yann Garcia committed
100
    AccessPointInfos accessPoint optional,
Yann Garcia's avatar
Yann Garcia committed
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
    ResourceURL resourceURL
  }

  /**
   * @desc Address of user (e.g. \"sip\" URI, \"tel\" URI, \"acr\" URI).
   */
  type universal charstring Address

  /**
   * @desc Reserved for future use.
   */
  type universal charstring AncillaryInfo;

  /**
   * @desc CallBackData if passed by the application during the associated ZonalTrafficSubscription and UserTrackingSubscription operation. See [\
REST_NetAPI_Common].
   */
  type universal charstring CallbackData;

  /**
   * @desc Notification callback definition.
   * @member notifyURL 
   */
  type record CallbackReference {
    NotifyURL notifyURL
Yann Garcia's avatar
Yann Garcia committed
126
127
128
  }

  /**
Yann Garcia's avatar
Yann Garcia committed
129
130
131
132
133
134
   * @desc Uniquely identifies this create subscription request. If there is a communication failure during the request, using the same clientCorrelator when retrying the request allows the operator to avoid creating a duplicate subscription.
   */
  type universal charstring ClientCorrelator;

  /**
   * @desc The connection type for the access point
Yann Garcia's avatar
Yann Garcia committed
135
136
   */
  type enumerated ConnectionType {
Yann Garcia's avatar
Yann Garcia committed
137
138
139
140
141
142
143
144
145
146
    Femto,
    LTE_femto,
    Smallcell,
    LTE_smallcell,
    Wifi,
    Pico,
    Micro,
    Macro,
    Wimax,
    Unknown
Yann Garcia's avatar
Yann Garcia committed
147
148
  }

Yann Garcia's avatar
Yann Garcia committed
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
  /**
   * @desc Contextual information of a user location (e.g., aisle, floor, room number, etc.)
   */
  type universal charstring ContextLocationInfo;

  /**
   * @desc Zone ID
   */
  type universal charstring CurrentAccessPointId;

  /**
   * @desc Period (in seconds) of time notifications are provided for. If set to \"0\" (zero), a default duration time, which is specified by the service policy, will be used. If the parameter is omitted, the notifications will continue until the maximum duration time, which is specified by the service policy, unless the notifications are stopped by deletion of subscription for notifications. This element MAY be given by the client during resource creation in order to signal the desired lifetime of the subscription. The server MUST return in this element the period of time for which the subscription will still be valid.
   */
  type universal charstring Duration;

  /**
   * @desc Interest realm of access point (e.g. geographical area, a type of industry etc.).
   */
  type universal charstring InterestRealm;

  /**
   * @desc Link to other resources
   * @member rel Describes the relationship between the URI and the resource.
   * @member href UTI
   */
  type record Link {
    universal charstring rel,
    universal charstring href
  }

  /**
   * @desc The URL of your own listener application.
   */
  type universal charstring NotifyURL;

  /**
   * @desc The number of access points within the zone
   */
  type UInt32 NumberOfAccessPoints;

  /**
   * @desc Number of inoperable access points within the zone.
   */
  type UInt32 NumberOfUnserviceableAccessPoints;

  /**
   * @desc The number of users currently on the access point.
   */
  type UInt32 NumberOfUsers;

  /**
   * @desc Threshold number of users in an access point which if crossed shall cause a notification.
   */
  type UInt32 NumberOfUsersAPThreshold;

  /**
   * @desc This element shall be present when ZoneStatusSubscription includes numberOfUsersAPThreshold element and the number of users in an access point exceeds the threshold defined in the subscription.
   */
  type UInt32 NumberOfUsersInAP;

  /**
   * @desc Threshold number of users in a zone which if crossed shall cause a notification.
   */
  type UInt32 NumberOfUsersInZone;

  /**
   * @desc Threshold number of users in a zone which if crossed shall cause a notification.
   */
  type UInt32 NumberOfUsersZoneThreshold;

Yann Garcia's avatar
Yann Garcia committed
219
220
221
222
  /**
   * @desc The operation status of the access point
   */
  type enumerated OperationStatus {
Yann Garcia's avatar
Yann Garcia committed
223
224
225
    Serviceable,
    Unserviceable,
    Unknown
Yann Garcia's avatar
Yann Garcia committed
226
  }
Yann Garcia's avatar
Yann Garcia committed
227

Yann Garcia's avatar
Yann Garcia committed
228
  /**
Yann Garcia's avatar
Yann Garcia committed
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
   * @desc Zone ID
   */
  type universal charstring PreviousAccessPointId;

  /**
   * @desc Self referring URL
   */
  type universal charstring ResourceURL;

  /**
   * @desc Indicates the time of day for zonal presence notification.
   */
  type universal charstring Timestamp;

  /**
   * @desc Time zone of access point
   */
  type universal charstring Timezone;

  /**
   * @desc User event
   */
  type enumerated UserEventType {
    Entering,
    Leaving,
    Transferring
  }

  /**
   * @desc List of user event values to generate notifications for (these apply to address specified). If this element is missing, a notification is requested to be generated for any change in user event.
   */
  type record of UserEventType UserEventCriteria;

  /**
   * @desc A type containing user information.
   * @member address_ Address of user (e.g. \"sip\" URI, \"tel\" URI, \"acr\" URI).
   * @member accessPointId Identifier of access point, <E-CGI><Cell Portion ID> (reference ETSI TS 129 171).
   * @member zoneId Identifier of zone
Yann Garcia's avatar
Yann Garcia committed
267
   * @member resourceURL Self referring URL.
Yann Garcia's avatar
Yann Garcia committed
268
269
270
   * @member locationInfo A type containing location information with latitude, longitude and altitude, in addition the accuracy of the information are provided.
   * @member contextLocationInfo 
   * @member ancillaryInfo 
Yann Garcia's avatar
Yann Garcia committed
271
   */
Yann Garcia's avatar
Yann Garcia committed
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
  type record UserInfo {
    Address address_,
    AccessPointId accessPointId,
    ZoneId zoneId,
    ResourceURL resourceURL,
    LocationInfo locationInfo optional,
    ContextLocationInfo contextLocationInfo optional,
    AncillaryInfo ancillaryInfo optional
  } with {
    variant (address_) "name as 'address'";
  } // End of type UserInfo

  /**
   * @desc A type containing user tracking subscription.
   * @member 
   */
  type record UserTrackingSubscription {
    ClientCorrelator clientCorrelator optional,
    CallbackReference callbackReference,
    Address address_,
    UserEventCriteria userEventCriteria optional,
    ResourceURL resourceURL optional
  } with {
    variant (address_) "name as 'address'";
  }

  /**
   * @desc A type containing zonal presence notification
   * @member 
   * @member link Link to other resources that are in relationship with this notification. The server SHOULD include a link to the related subscription. No other links are required or suggested by this specification.
   */
  type record ZonalPresenceNotification {
    CallbackReference callbackReference optional,
    ZoneId zoneId,
    Address address_,
    InterestRealm interestRealm optional,
    UserEventType userEventType,
    CurrentAccessPointId currentAccessPointId,
    PreviousAccessPointId previousAccessPointId optional,
    Timestamp timestamp_,
    Link link optional
  } with {
    variant (address_) "name as 'address'";
    variant (timestamp_) "name as 'timestamp'";
  }

  /**
   * @desc A type containing zonal traffic subscription
   * @member
   * @member interestRealm Interest realms of access points within a zone (e.g. geographical area, a type of industry etc.).
   * @member userEventCriteria List of user event values to generate notifications for (these apply to zone identifier or all interest realms within zone identifier specified). If this element is missing, a notification is requested to be generated for any change in user event.
   * @member resourceURL 
   */
  type record ZonalTrafficSubscription {
    ClientCorrelator clientCorrelator optional,
    CallbackReference callbackReference,
    ZoneId zoneId,
    InterestRealm interestRealm optional,
    UserEventCriteria userEventCriteria optional,
    Duration duration optional,
    ResourceURL resourceURL optional
  }

  /**
   * @desc Identifier of zone
   */
  type universal charstring ZoneId;

  /**
   * @desc A type containing zone status notification.
   * @member zoneId 
   * @member 
   */
  type record ZoneStatusNotification {
    CallbackData callbackData optional,
    ZoneId zoneId,
    AccessPointId accessPointId optional,
    NumberOfUsersInZone numberOfUsersInZone optional,
    NumberOfUsersInAP numberOfUsersInAP optional,
    OperationStatus operationStatus optional,
    Timestamp timestamp_,
    Link link
  } with {
    variant (timestamp_) "name as 'timestamp'";
  }

  /**
   * @desc A type containing zone status subscription.
   * @member zoneId
   * @member
   * @member
   * @member
   * @member operationStatus List of operation status values to generate notifications for (these apply to all access points within a zone).
   */
  type record ZoneStatusSubscription {
    ClientCorrelator clientCorrelator optional,
    ResourceURL resourceURL optional,
    CallbackReference callbackReference,
    ZoneId zoneId,
    NumberOfUsersZoneThreshold numberOfUsersZoneThreshold optional,
    NumberOfUsersAPThreshold numberOfUsersAPThreshold optional,
    OperationStatus operationStatus optional
Yann Garcia's avatar
Yann Garcia committed
374
  }
Yann Garcia's avatar
Yann Garcia committed
375
376
377
378
  
} with {
  encode "JSON"
}