@@ -200,34 +200,34 @@ <h2><a>Messaging</a> Interface</h2> <p>The <a>Messaging</a> interface
200
200
</ dd >
201
201
202
202
< dt > MessagingRequest getMessage ()</ dt > < dd > This method makes a request to
203
- retrieve the message identified by the < code > id </ code > parameter.
203
+ retrieve the message identified by the < code > messageID </ code > parameter.
204
204
It returns a new < code > MessagingRequest</ code > object which allows the
205
205
caller to be notified about the result of the operation.
206
206
< dl class ='parameters '>
207
- < dt > DOMString id </ dt > < dd >
207
+ < dt > DOMString messageID </ dt > < dd >
208
208
Identifier of the message that is requested to be retrieved
209
209
</ dd >
210
210
</ dl >
211
211
</ dd >
212
212
213
213
< dt > MessagingRequest deleteMessage ()</ dt > < dd > This method requests the
214
- deletion of the message with identifier equal to the < code > id </ code >
214
+ deletion of the message with identifier equal to the < code > messageID </ code >
215
215
parameter. A new < code > MessagingRequest</ code > is returned in order to
216
216
notify the request result (success or error) to the caller.
217
217
< dl class ='parameters '>
218
- < dt > DOMString id </ dt > < dd >
218
+ < dt > DOMString messageID </ dt > < dd >
219
219
Identifier of the message that is requested to be deleted
220
220
</ dd >
221
221
</ dl >
222
222
</ dd >
223
223
224
224
< dt > MessagingRequest deleteConversation ()</ dt > < dd > This method requests
225
225
the deletion of all the messages in the conversation with identifier equal
226
- to the < code > id </ code > parameter. A new < code > MessagingRequest</ code > is
226
+ to the < code > conversationID </ code > parameter. A new < code > MessagingRequest</ code > is
227
227
returned in order to notify the request result (success or error) to the
228
228
caller.
229
229
< dl class ='parameters '>
230
- < dt > DOMString id </ dt > < dd >
230
+ < dt > DOMString conversationID </ dt > < dd >
231
231
Identifier of the conversation whose messages are requested to
232
232
be deleted
233
233
</ dd >
@@ -236,11 +236,11 @@ <h2><a>Messaging</a> Interface</h2> <p>The <a>Messaging</a> interface
236
236
237
237
< dt > MessagingRequest markMessageRead ()</ dt > < dd > This method requests to
238
238
mark as read or unread the message with identifier equal to the
239
- < code > id </ code > parameter. The method returns a new
239
+ < code > messageID </ code > parameter. The method returns a new
240
240
< code > MessagingRequest</ code > that will allow the caller to be notified
241
241
about the result (success, error) of the operation.
242
242
< dl class ='parameters '>
243
- < dt > DOMString id </ dt > < dd >
243
+ < dt > DOMString messageID </ dt > < dd >
244
244
Identifier of the message that is requested to be marked as
245
245
read or unread
246
246
</ dd > < dt > boolean value</ dt > < dd >
@@ -252,11 +252,11 @@ <h2><a>Messaging</a> Interface</h2> <p>The <a>Messaging</a> interface
252
252
253
253
< dt > MessagingRequest markConversationRead ()</ dt > < dd > This method
254
254
requests to mark as read or unread all the messages in the conversation with
255
- identifier equal to the < code > id </ code > parameter. The method returns a new
255
+ identifier equal to the < code > conversationID </ code > parameter. The method returns a new
256
256
< code > MessagingRequest</ code > that will allow the caller to be notified
257
257
about the result (success, error) of the operation.
258
258
< dl class ='parameters '>
259
- < dt > DOMString id </ dt > < dd >
259
+ < dt > DOMString conversationID </ dt > < dd >
260
260
Identifier of the conversation whose messages are requested to be
261
261
marked as read or unread
262
262
</ dd > < dt > boolean value</ dt > < dd >
@@ -326,7 +326,7 @@ <h3>Steps</h3>
326
326
the following steps:
327
327
< ol >
328
328
< li > Make a request to the system to get the message with identifier equal
329
- to the < code > id </ code > parameter passed in the request.
329
+ to the < code > messageID </ code > parameter passed in the request.
330
330
< li > Create a new < code > MessagingRequest</ code > object and set
331
331
< code > readyState</ code > of the < code > MessagingRequest</ code > object to
332
332
'processing' and return the < code > MessagingRequest</ code > to the caller
@@ -338,7 +338,7 @@ <h3>Steps</h3>
338
338
< code > MessagingRequest</ code > object to 'done'
339
339
< li > set the < code > result</ code > of the < code > MessagingRequest</ code >
340
340
object to the < code > SmsMessage</ code > or < code > MmsMessage</ code > whose
341
- identifier matches the < code > id </ code > parameter
341
+ identifier matches the < code > messageID </ code > parameter
342
342
< li > invoke the < code > onsuccess</ code > < a class ="internalDFN "
343
343
href ="#dfn-eventhandler "> event handlers</ a > of the
344
344
< code > MessagingRequest</ code >
@@ -349,7 +349,7 @@ <h3>Steps</h3>
349
349
following steps:
350
350
< ol >
351
351
< li > Make a request to the system to delete the message with identifier
352
- equal to the < code > id </ code > parameter passed in the request
352
+ equal to the < code > messageID </ code > parameter passed in the request
353
353
< li > Create a new < code > MessagingRequest</ code > object and set
354
354
< code > readyState</ code > of the < code > MessagingRequest</ code > object to
355
355
'processing' and return the < code > MessagingRequest</ code > to the caller
@@ -371,7 +371,7 @@ <h3>Steps</h3>
371
371
run the following steps:
372
372
< ol >
373
373
< li > Make a request to the system to delete the messages in the conversation
374
- with identifier equal to the < code > id </ code > parameter passed in the
374
+ with identifier equal to the < code > conversationID </ code > parameter passed in the
375
375
request
376
376
< li > Create a new < code > MessagingRequest</ code > object and set
377
377
< code > readyState</ code > of the < code > MessagingRequest</ code > object to
@@ -395,7 +395,7 @@ <h3>Steps</h3>
395
395
< ol >
396
396
< li > Make a request to the system to mark as read/unread (depending on the
397
397
< code > value</ code > parameter being respectively 'true' or 'false') the
398
- message with identifier equal to the < code > id </ code > parameter passed in
398
+ message with identifier equal to the < code > messageID </ code > parameter passed in
399
399
the request.
400
400
< li > Create a new < code > MessagingRequest</ code > object and set
401
401
< code > readyState</ code > of the < code > MessagingRequest</ code > object to
@@ -419,7 +419,7 @@ <h3>Steps</h3>
419
419
< ol >
420
420
< li > Make a request to the system to mark as read/unread (depending on the
421
421
< code > value</ code > parameter being respectively 'true' or 'false') the
422
- messages in the conversation with identifier equal to the < code > id </ code >
422
+ messages in the conversation with identifier equal to the < code > conversationID </ code >
423
423
parameter passed in the request.
424
424
< li > Create a new < code > MessagingRequest</ code > object and set
425
425
< code > readyState</ code > of the < code > MessagingRequest</ code > object to
@@ -528,7 +528,7 @@ <h3>Steps</h3>
528
528
< li > generate a identifier for this message that is globally unique within
529
529
the implementation, i.e. there cannot be any other message with the same
530
530
identifier
531
- < li > set the < code > id </ code > of the < code > SmsMessage</ code > to the
531
+ < li > set the < code > messageID </ code > of the < code > SmsMessage</ code > to the
532
532
generated identifier
533
533
< li > set the < code > type</ code > of the < code > SmsMessage</ code > to 'sms'
534
534
< li > set the < code > serviceID</ code > of the < code > SmsMessage</ code > to the
@@ -564,7 +564,7 @@ <h3>Steps</h3>
564
564
< li > generate a identifier for this message that is globally unique within
565
565
the implementation, i.e. there cannot be any other message with the same
566
566
identifier
567
- < li > set the < code > id </ code > of the < code > MmsMessage</ code > to the
567
+ < li > set the < code > messageID </ code > of the < code > MmsMessage</ code > to the
568
568
generated identifier
569
569
< li > set the < code > type</ code > of the < code > MmsMessage</ code > to 'mms'
570
570
< li > set the < code > serviceID</ code > of the < code > MmsMessage</ code > to the
@@ -643,7 +643,7 @@ <h3>Steps</h3>
643
643
< a > deliverysuccess</ a > or < a > deliveryfailure</ a > respectively if the
644
644
delivery was successfull or not, with
645
645
< ol >
646
- < li > the < code > id </ code > attribute set to the identifier of the
646
+ < li > the < code > messageID </ code > attribute set to the identifier of the
647
647
< code > SmsMessage</ code > to which this confirmation is related,
648
648
< li > the < code > serviceID</ code > attribute set to the identifier of the
649
649
service used to send such message, and
@@ -663,7 +663,7 @@ <h3>Steps</h3>
663
663
< a > deliverysuccess</ a > or < a > deliveryfailure</ a > respectively if the
664
664
delivery was successfull or not, with
665
665
< ol >
666
- < li > the < code > id </ code > attribute set to the identifier of the
666
+ < li > the < code > messageID </ code > attribute set to the identifier of the
667
667
< code > MmsMessage</ code > to which this confirmation is related,
668
668
< li > the < code > serviceID</ code > attribute set to the identifier of the
669
669
service used to send such message, and
@@ -799,7 +799,7 @@ <h3>Steps</h3>
799
799
< li > generate a identifier for this message that is globally unique within
800
800
the implementation, i.e. there cannot be any other message with the same
801
801
identifier
802
- < li > set the < code > id </ code > of the < code > SmsMessage</ code > to the
802
+ < li > set the < code > messageID </ code > of the < code > SmsMessage</ code > to the
803
803
generated identifier
804
804
< li > set the < code > type</ code > of the < code > SmsMessage</ code > to 'sms'
805
805
< li > set the < code > serviceID</ code > of the < code > SmsMessage</ code > to the
@@ -979,12 +979,12 @@ <h2><a>MmsManager</a> Interface</h2>
979
979
980
980
< dt > MessagingRequest fetch ()</ dt >
981
981
< dd > This method requests to fetch an MMS message with identifier equal to
982
- the indicated in the < code > id </ code > parameter from the URL indicated in the
982
+ the indicated in the < code > messageID </ code > parameter from the URL indicated in the
983
983
MMS notification. The method returns a new < code > MessagingRequest</ code >
984
984
that will allow the caller to be notified about the result (success, error)
985
985
of the operation.
986
986
< dl class ='parameters '>
987
- < dt > DOMString id </ dt >
987
+ < dt > DOMString messageID </ dt >
988
988
< dd >
989
989
Identifier of the MMS message that is requested to be download.
990
990
</ dd >
@@ -1009,7 +1009,7 @@ <h3>Steps</h3>
1009
1009
< li > generate a identifier for this message that is globally unique within
1010
1010
the implementation, i.e. there cannot be any other message with the same
1011
1011
identifier
1012
- < li > set the < code > id </ code > of the < code > MmsMessage</ code > to the
1012
+ < li > set the < code > messageID </ code > of the < code > MmsMessage</ code > to the
1013
1013
generated identifier
1014
1014
< li > set the < code > type</ code > of the < code > MmsMessage</ code > to 'mms'
1015
1015
< li > set the < code > serviceID</ code > of the < code > MmsMessage</ code > to the
@@ -1082,7 +1082,7 @@ <h3>Steps</h3>
1082
1082
following steps:
1083
1083
< ol >
1084
1084
< li > Create a new < code > MessagingRequest</ code > object
1085
- < li > If the < code > id </ code > parameter passed in the request matches with an
1085
+ < li > If the < code > messageID </ code > parameter passed in the request matches with an
1086
1086
MMS message that has already been fetched, or to an SMS message go to step
1087
1087
5.1, otherwise make a request to the system to fetch the MMS message
1088
1088
< li > set the < code > readyState</ code > of the < code > MessagingRequest</ code >
@@ -1204,7 +1204,7 @@ <h2><a>Message</a> Interface</h2>
1204
1204
< dl title ="[NoInterfaceObject]
1205
1205
interface Message "
1206
1206
class ="idl ">
1207
- < dt > readonly attribute DOMString id </ dt >
1207
+ < dt > readonly attribute DOMString messageID </ dt >
1208
1208
< dd > MUST return the identifier of the message.</ dd >
1209
1209
1210
1210
< dt > readonly attribute DOMString type</ dt >
@@ -1386,7 +1386,7 @@ <h2><a>Conversation</a> Interface</h2>
1386
1386
participants or because they have the same subject.
1387
1387
< dl title ="[NoInterfaceObject] interface Conversation "
1388
1388
class ="idl ">
1389
- < dt > readonly attribute DOMString id </ dt >
1389
+ < dt > readonly attribute DOMString conversationID </ dt >
1390
1390
< dd > MUST return the identifier of the conversation, which is globally unique
1391
1391
within the implementation, i.e. there cannot be any other conversation with
1392
1392
the same identifier.</ dd >
@@ -1418,7 +1418,7 @@ <h2><a>Conversation</a> Interface</h2>
1418
1418
< dt > readonly attribute unsigned long unreadCount</ dt >
1419
1419
< dd > MUST return the number of unread messages in the conversation.</ dd >
1420
1420
1421
- < dt > readonly attribute DOMString lastMessageId </ dt >
1421
+ < dt > readonly attribute DOMString lastMessageID </ dt >
1422
1422
< dd > MUST return the identifier of the message in the conversation with the
1423
1423
most recent timestamp .</ dd >
1424
1424
@@ -1498,7 +1498,7 @@ <h2><a>DeliveryReportEvent</a> Interface</h2>
1498
1498
< dt > readonly attribute DOMString serviceID</ dt >
1499
1499
< dd > MUST return the identifier of the service used to send the message to
1500
1500
which this delivery report event is related.</ dd >
1501
- < dt > readonly attribute DOMString id </ dt >
1501
+ < dt > readonly attribute DOMString messageID </ dt >
1502
1502
< dd > MUST return the identifier of the message to which this delivery
1503
1503
report event is related.</ dd >
1504
1504
< dt > readonly attribute DOMString[] recipients</ dt >
0 commit comments