summaryrefslogtreecommitdiff
path: root/idl/parlay/gms.idl
blob: a12f6085c837e63025744e614fc2c866b1231752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
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
219
220
221
222
223
224
225
226
227
228
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
267
268
269
270
271
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
//Source file: gms.idl
//Date:  11 October 2004
//Generic Messaging Interfaces and Data Types for ETSI ES 203 915-09 V1.1.1, DES/TISPAN-01005-09-OSA, Parlay 5.0

#ifndef __GMS_DEFINED
#define __GMS_DEFINED


#include "osa.idl"

module org {
	
	module csapi {
		
		
		module gms {
			interface IpAppMessagingManager ;
			interface IpMailbox ;
			interface IpMailboxFolder ;
			
			
			
			enum TpMessagingFault {

				P_MESSAGING_FAULT_UNDEFINED				
			};
			
			
			enum TpMessagingEventName {

				P_EVENT_GMS_NAME_UNDEFINED,
				P_EVENT_GMS_NEW_MESSAGE_ARRIVED				
			};
			
			
			enum TpMessageStatus {

				P_MESSAGING_MESSAGE_STATUS_READ_MESSAGE,
				P_MESSAGING_MESSAGE_STATUS_UNREAD_MESSAGE,
				P_MESSAGING_MESSAGE_STATUS_FORWARDED_MESSAGE,
				P_MESSAGING_MESSAGE_STATUS_REPLIED_TO_MESSAGE,
				P_MESSAGING_MESSAGE_STATUS_SAVED_OR_UNSENT_MESSAGE,
				P_MESSAGING_MESSAGE_STATUS_NOTIFICATION_THAT_A_MESSAGE_WAS_DELIVERED,
				P_MESSAGING_MESSAGE_STATUS_NOTIFICATION_THAT_A_MESSAGE_WAS_READ,
				P_MESSAGING_MESSAGE_STATUS_NOTIFICATION_THAT_A_MESSAGE_WAS_NOT_DELIVERED,
				P_MESSAGING_MESSAGE_STATUS_NOTIFICATION_THAT_A_MESSAGE_WAS_NOT_READ				
			};
			
			
			enum TpMessagePriority {

				P_MESSAGING_MESSAGE_PRIORITY_UNDEFINED,
				P_MESSAGING_MESSAGE_PRIORITY_HIGH,
				P_MESSAGING_MESSAGE_PRIORITY_LOW				
			};
			
			
			enum TpMessageInfoPropertyName {

				P_MESSAGING_MESSAGE_UNDEFINED,
				P_MESSAGING_MESSAGE_ID,
				P_MESSAGING_MESSAGE_SUBJECT,
				P_MESSAGING_MESSAGE_DATE_SENT,
				P_MESSAGING_MESSAGE_DATE_RECEIVED,
				P_MESSAGING_MESSAGE_DATE_CHANGED,
				P_MESSAGING_MESSAGE_SENT_FROM,
				P_MESSAGING_MESSAGE_SENT_TO,
				P_MESSAGING_MESSAGE_CC_TO,
				P_MESSAGING_MESSAGE_BCC_TO,
				P_MESSAGING_MESSAGE_SIZE,
				P_MESSAGING_MESSAGE_PRIORITY,
				P_MESSAGING_MESSAGE_FORMAT,
				P_MESSAGING_MESSAGE_FOLDER,
				P_MESSAGING_MESSAGE_STATUS				
			};
			
			
			enum TpMessageFormat {

				P_MESSAGING_MESSAGE_FORMAT_UNDEFINED,
				P_MESSAGING_MESSAGE_FORMAT_TEXT,
				P_MESSAGING_MESSAGE_FORMAT_BINARY,
				P_MESSAGING_MESSAGE_FORMAT_UUENCODED,
				P_MESSAGING_MESSAGE_FORMAT_MIME,
				P_MESSAGING_MESSAGE_FORMAT_WAVE,
				P_MESSAGING_MESSAGE_FORMAT_AU				
			};
			
			
			union TpMessageInfoProperty switch(TpMessageInfoPropertyName) {
				case P_MESSAGING_MESSAGE_ID: TpString MessagingMessageID;
				case P_MESSAGING_MESSAGE_SUBJECT: TpString MessagingMessageSubject;
				case P_MESSAGING_MESSAGE_DATE_SENT: TpDateAndTime MessagingMessageDateSent;
				case P_MESSAGING_MESSAGE_DATE_RECEIVED: TpDateAndTime MessagingMessageDateReceived;
				case P_MESSAGING_MESSAGE_DATE_CHANGED: TpDateAndTime MessagingMessageDateChanged;
				case P_MESSAGING_MESSAGE_SENT_FROM: TpAddress MessagingMessageSentFrom;
				case P_MESSAGING_MESSAGE_SENT_TO: TpAddress MessagingMessageSentTo;
				case P_MESSAGING_MESSAGE_CC_TO: TpAddress MessagingMessageCCTo;
				case P_MESSAGING_MESSAGE_BCC_TO: TpAddress MessagingMessageBCCTo;
				case P_MESSAGING_MESSAGE_SIZE: TpInt32 MessagingMessageSize;
				case P_MESSAGING_MESSAGE_PRIORITY: TpMessagePriority MessagingMessagePriority;
				case P_MESSAGING_MESSAGE_FORMAT: TpMessageFormat MessagingMessageFormat;
				case P_MESSAGING_MESSAGE_FOLDER: TpString MessagingMessageFolder;
				case P_MESSAGING_MESSAGE_STATUS: TpMessageStatus MessagingMessageStatus;
				default: short Dummy;
			};
			
			
			typedef sequence <TpMessageInfoProperty> TpMessageInfoPropertySet;
			
			
			enum TpMailboxInfoPropertyName {

				P_MESSAGING_MAILBOX_UNDEFINED,
				P_MESSAGING_MAILBOX_ID,
				P_MESSAGING_MAILBOX_OWNER,
				P_MESSAGING_MAILBOX_FOLDER,
				P_MESSAGING_MAILBOX_DATE_CREATED,
				P_MESSAGING_MAILBOX_DATE_CHANGED				
			};
			
			
			union TpMailboxInfoProperty switch(TpMailboxInfoPropertyName) {
				case P_MESSAGING_MAILBOX_ID: TpAddress MessagingMailboxID;
				case P_MESSAGING_MAILBOX_OWNER: TpString MessagingMailboxOwner;
				case P_MESSAGING_MAILBOX_FOLDER: TpString MessagingMailboxFolder;
				case P_MESSAGING_MAILBOX_DATE_CREATED: TpDateAndTime MessagingMailboxDateCreated;
				case P_MESSAGING_MAILBOX_DATE_CHANGED: TpDateAndTime MessagingMailboxDateChanged;
				default: short Dummy;
			};
			
			
			typedef sequence <TpMailboxInfoProperty> TpMailboxInfoPropertySet;
			
			
			struct TpGMSNewMessageArrivedInfo {
				TpAddress MailboxID;
				TpString FolderID;
				TpString MessageID;
				TpInt32 NumberOfProperties;
			};
			
			
			union TpMessagingEventInfo switch(TpMessagingEventName) {
				case P_EVENT_GMS_NAME_UNDEFINED: TpString EventNameUndefined;
				case P_EVENT_GMS_NEW_MESSAGE_ARRIVED: TpGMSNewMessageArrivedInfo EventGMSNewMessageArrived;
			};
			
			
			struct TpGMSNewMessageArrivedCriteria {
				TpAddress MailboxID;
				TpString AuthenticationInfo;
			};
			
			
			union TpMessagingEventCriteria switch(TpMessagingEventName) {
				case P_EVENT_GMS_NEW_MESSAGE_ARRIVED: TpGMSNewMessageArrivedCriteria EventGMSNewMessageArrived;
				default: short Dummy;
			};
			
			
			enum TpFolderInfoPropertyName {

				P_MESSAGING_FOLDER_UNDEFINED,
				P_MESSAGING_FOLDER_ID,
				P_MESSAGING_FOLDER_MESSAGE,
				P_MESSAGING_FOLDER_SUBFOLDER,
				P_MESSAGING_FOLDER_DATE_CREATED,
				P_MESSAGING_FOLDER_DATE_CHANGED				
			};
			
			
			union TpFolderInfoProperty switch(TpFolderInfoPropertyName) {
				case P_MESSAGING_FOLDER_ID: TpString MessagingFolderID;
				case P_MESSAGING_FOLDER_MESSAGE: TpString MessagingFolderMessage;
				case P_MESSAGING_FOLDER_SUBFOLDER: TpString MessagingFolderSubfolder;
				case P_MESSAGING_FOLDER_DATE_CREATED: TpDateAndTime MessagingFolderDateCreated;
				case P_MESSAGING_FOLDER_DATE_CHANGED: TpDateAndTime MessagingFolderDateChanged;
				default: short Dummy;
			};
			
			
			typedef sequence <TpFolderInfoProperty> TpFolderInfoPropertySet;
			
			
			exception P_GMS_INVALID_FOLDER_ID {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_INSUFFICIENT_PRIVILEGE {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_INVALID_AUTHENTICATION_INFORMATION {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_INVALID_MAILBOX {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_INVALID_MESSAGE_ID {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_LOCKING_LOCKED_MAILBOX {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_MESSAGE_NOT_REMOVED {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_NUMBER_NOT_POSITIVE {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_UNLOCKING_UNLOCKED_MAILBOX {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_MAILBOX_LOCKED {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_CANNOT_UNLOCK_MAILBOX {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_PROPERTY_NOT_SET {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_FOLDER_IS_OPEN {
				TpString ExtraInformation;
			};
			
			
			exception P_GMS_MAILBOX_OPEN {
				TpString ExtraInformation;
			};
			
			
			typedef TpLongString TpMessage;
			
			
			struct TpMailboxIdentifier {
				IpMailbox Mailbox;
				TpSessionID SessionID;
			};
			
			
			struct TpMailboxFolderIdentifier {
				IpMailboxFolder MailboxFolder;
				TpSessionID SessionID;
			};
			
			
			interface IpMessagingManager : IpService {
				
				TpMailboxIdentifier openMailbox (
					in TpAddress mailboxID,	
					in TpString authenticationInfo	
					)					
					raises (TpCommonExceptions,P_GMS_INVALID_MAILBOX,P_GMS_INVALID_AUTHENTICATION_INFORMATION);
					
				TpAssignmentID enableMessagingNotification (
					in IpAppMessagingManager appInterface,	
					in TpMessagingEventCriteria eventCriteria	
					)					
					raises (TpCommonExceptions,P_INVALID_CRITERIA);
					
				void disableMessagingNotification (
					in TpAssignmentID assignmentID	
					)					
					raises (TpCommonExceptions,P_INVALID_ASSIGNMENT_ID);
					
			};
			
			
			interface IpAppMessagingManager : IpInterface {
				void mailboxTerminated (
					in IpMailbox mailbox,	
					in TpSessionID mailboxSessionID	
					);
					
				void mailboxFaultDetected (
					in IpMailbox mailbox,	
					in TpSessionID mailboxSessionID,	
					in TpMessagingFault fault	
					);
					
				void messagingEventNotify (
					in IpMessagingManager messagingManager,	
					in TpMessagingEventInfo eventInfo,	
					in TpAssignmentID assignmentID	
					);
					
				void messagingNotificationTerminated ();
					
			};
			

			interface IpMailbox : IpService {
				
				void close (
					in TpSessionID mailboxSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID);
					
				void lock (
					in TpSessionID mailboxSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_LOCKING_LOCKED_MAILBOX);
					
				void unlock (
					in TpSessionID mailboxSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_UNLOCKING_UNLOCKED_MAILBOX,P_GMS_CANNOT_UNLOCK_MAILBOX);
					
				TpInt32 getInfoAmount (
					in TpSessionID mailboxSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID);
					
				TpMailboxInfoPropertySet getInfoProperties (
					in TpSessionID mailboxSessionID,	
					in TpInt32 firstProperty,	
					in TpInt32 numberOfProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_NUMBER_NOT_POSITIVE);
					
				void setInfoProperties (
					in TpSessionID mailboxSessionID,	
					in TpInt32 firstProperty,	
					in TpMailboxInfoPropertySet mailboxInfoProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_PROPERTY_NOT_SET,P_GMS_MAILBOX_LOCKED);
					
				TpMailboxFolderIdentifier openFolder (
					in TpSessionID mailboxSessionID,	
					in TpString folderID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_FOLDER_IS_OPEN,P_GMS_INVALID_FOLDER_ID,P_GMS_MAILBOX_LOCKED);
					
				void createFolder (
					in TpSessionID mailboxSessionID,	
					in TpString folderID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INVALID_FOLDER_ID,P_GMS_MAILBOX_LOCKED);
					
				void remove (
					in TpAddress mailboxID,	
					in TpString authenticationInfo	
					)					
					raises (TpCommonExceptions,P_GMS_INSUFFICIENT_PRIVILEGE,P_GMS_INVALID_MAILBOX,P_GMS_MAILBOX_LOCKED,P_GMS_MAILBOX_OPEN,P_GMS_INVALID_AUTHENTICATION_INFORMATION);
					
			};
			
			interface IpMessage : IpService {
				
				TpInt32 getInfoAmount (
					in TpSessionID folderSessionID,	
					in TpString messageID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INVALID_MESSAGE_ID);
					
				TpMessageInfoPropertySet getInfoProperties (
					in TpSessionID folderSessionID,	
					in TpString messageID,	
					in TpInt32 firstProperty,	
					in TpInt32 numberOfProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_NUMBER_NOT_POSITIVE,P_GMS_INVALID_MESSAGE_ID);
					
				void setInfoProperties (
					in TpSessionID folderSessionID,	
					in TpString messageID,	
					in TpInt32 firstProperty,	
					in TpMessageInfoPropertySet messageInfoProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INVALID_MESSAGE_ID,P_GMS_PROPERTY_NOT_SET);
					
				void remove (
					in TpSessionID folderSessionID,	
					in TpString messageID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INSUFFICIENT_PRIVILEGE,P_GMS_MESSAGE_NOT_REMOVED,P_GMS_INVALID_MESSAGE_ID);
					
				TpMessage getContent (
					in TpSessionID folderSessionID,	
					in TpString messageID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INVALID_MESSAGE_ID);
					
			};
			
			interface IpMailboxFolder : IpService {
				
				TpInt32 getInfoAmount (
					in TpSessionID folderSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID);
					
				TpFolderInfoPropertySet getInfoProperties (
					in TpSessionID folderSessionID,	
					in TpInt32 firstProperty,	
					in TpInt32 numberOfProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_NUMBER_NOT_POSITIVE);
					
				void setInfoProperties (
					in TpSessionID folderSessionID,	
					in TpInt32 firstProperty,	
					in TpFolderInfoPropertySet folderInfoProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_PROPERTY_NOT_SET);
					
				void putMessage (
					in TpSessionID folderSessionID,	
					in TpMessage message,	
					in TpMessageInfoPropertySet messageInfoProperties	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID);
					
				IpMessage getMessage (
					in TpSessionID folderSessionID,	
					in TpString messageID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INVALID_MESSAGE_ID);
					
				void close (
					in TpSessionID mailboxSessionID,	
					in TpSessionID folderSessionID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID);
					
				void remove (
					in TpSessionID mailboxSessionID,	
					in TpString folderID	
					)					
					raises (TpCommonExceptions,P_INVALID_SESSION_ID,P_GMS_INSUFFICIENT_PRIVILEGE,P_GMS_INVALID_FOLDER_ID,P_GMS_FOLDER_IS_OPEN);
					
			};
			
		};
		
	};
	
};

#endif