001 /*
002 * The MIT License
003 * Copyright (c) 2012 Microsoft Corporation
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023
024 package microsoft.exchange.webservices.data.core;
025
026 /**
027 * XML element names.
028 */
029 public class XmlElementNames {
030
031 /**
032 * The Constant AllProperties.
033 */
034 public static final String AllProperties = "AllProperties";
035
036 /**
037 * The Constant ParentFolderIds.
038 */
039 public static final String ParentFolderIds = "ParentFolderIds";
040
041 /**
042 * The Constant DistinguishedFolderId.
043 */
044 public static final String DistinguishedFolderId = "DistinguishedFolderId";
045
046 /**
047 * The Constant ItemId.
048 */
049 public static final String ItemId = "ItemId";
050
051 /**
052 * The Constant ItemIds.
053 */
054 public static final String ItemIds = "ItemIds";
055
056 /**
057 * The Constant FolderId.
058 */
059 public static final String FolderId = "FolderId";
060
061 /**
062 * The Constant FolderIds.
063 */
064 public static final String FolderIds = "FolderIds";
065
066 /**
067 * The Constant OccurrenceItemId.
068 */
069 public static final String OccurrenceItemId = "OccurrenceItemId";
070
071 /**
072 * The Constant RecurringMasterItemId.
073 */
074 public static final String RecurringMasterItemId = "RecurringMasterItemId";
075
076 /**
077 * The Constant ItemShape.
078 */
079 public static final String ItemShape = "ItemShape";
080
081 /**
082 * The Constant FolderShape.
083 */
084 public static final String FolderShape = "FolderShape";
085
086 /**
087 * The Constant BaseShape.
088 */
089 public static final String BaseShape = "BaseShape";
090
091 /**
092 * The Constant IndexedPageItemView.
093 */
094 public static final String IndexedPageItemView = "IndexedPageItemView";
095
096 /**
097 * The Constant IndexedPageFolderView.
098 */
099 public static final String IndexedPageFolderView = "IndexedPageFolderView";
100
101 /**
102 * The Constant FractionalPageItemView.
103 */
104 public static final String FractionalPageItemView =
105 "FractionalPageItemView";
106
107 /**
108 * The Constant FractionalPageFolderView.
109 */
110 public static final String FractionalPageFolderView =
111 "FractionalPageFolderView";
112
113 /**
114 * The Constant ResponseCode.
115 */
116 public static final String ResponseCode = "ResponseCode";
117
118 /**
119 * The Constant RootFolder.
120 */
121 public static final String RootFolder = "RootFolder";
122
123 /**
124 * The Constant Folder.
125 */
126 public static final String Folder = "Folder";
127
128 /**
129 * The Constant ContactsFolder.
130 */
131 public static final String ContactsFolder = "ContactsFolder";
132
133 /**
134 * The Constant TasksFolder.
135 */
136 public static final String TasksFolder = "TasksFolder";
137
138 /**
139 * The Constant SearchFolder.
140 */
141 public static final String SearchFolder = "SearchFolder";
142
143 /**
144 * The Constant Folders.
145 */
146 public static final String Folders = "Folders";
147
148 /**
149 * The Constant Item.
150 */
151 public static final String Item = "Item";
152
153 /**
154 * The Constant Items.
155 */
156 public static final String Items = "Items";
157
158 /**
159 * The Constant Message.
160 */
161 public static final String Message = "Message";
162
163 /**
164 * The Constant Mailbox.
165 */
166 public static final String Mailbox = "Mailbox";
167
168 /**
169 * The Constant Body.
170 */
171 public static final String Body = "Body";
172
173 /**
174 * The Constant From.
175 */
176 public static final String From = "From";
177
178 /**
179 * The Constant Sender.
180 */
181 public static final String Sender = "Sender";
182
183 /**
184 * The Constant Name.
185 */
186 public static final String Name = "Name";
187
188 /**
189 * The Constant Address.
190 */
191 public static final String Address = "Address";
192
193 /**
194 * The Constant EmailAddress.
195 */
196 public static final String EmailAddress = "EmailAddress";
197
198 /**
199 * The Constant RoutingType.
200 */
201 public static final String RoutingType = "RoutingType";
202
203 /**
204 * The Constant MailboxType.
205 */
206 public static final String MailboxType = "MailboxType";
207
208 /**
209 * The Constant ToRecipients.
210 */
211 public static final String ToRecipients = "ToRecipients";
212
213 /**
214 * The Constant CcRecipients.
215 */
216 public static final String CcRecipients = "CcRecipients";
217
218 /**
219 * The Constant BccRecipients.
220 */
221 public static final String BccRecipients = "BccRecipients";
222
223 /**
224 * The Constant ReplyTo.
225 */
226 public static final String ReplyTo = "ReplyTo";
227
228 /**
229 * The Constant ConversationTopic.
230 */
231 public static final String ConversationTopic = "ConversationTopic";
232
233 /**
234 * The Constant ConversationIndex.
235 */
236 public static final String ConversationIndex = "ConversationIndex";
237
238 /**
239 * The Constant IsDeliveryReceiptRequested.
240 */
241 public static final String IsDeliveryReceiptRequested =
242 "IsDeliveryReceiptRequested";
243
244 /**
245 * The Constant IsRead.
246 */
247 public static final String IsRead = "IsRead";
248
249 /**
250 * The Constant IsReadReceiptRequested.
251 */
252 public static final String IsReadReceiptRequested =
253 "IsReadReceiptRequested";
254
255 /**
256 * The Constant IsResponseRequested.
257 */
258 public static final String IsResponseRequested = "IsResponseRequested";
259
260 /**
261 * The Constant InternetMessageId.
262 */
263 public static final String InternetMessageId = "InternetMessageId";
264
265 /**
266 * The Constant References.
267 */
268 public static final String References = "References";
269
270 /**
271 * The Constant ParentItemId.
272 */
273 public static final String ParentItemId = "ParentItemId";
274
275 /**
276 * The Constant ParentFolderId.
277 */
278 public static final String ParentFolderId = "ParentFolderId";
279
280 /**
281 * The Constant ChildFolderCount.
282 */
283 public static final String ChildFolderCount = "ChildFolderCount";
284
285 /**
286 * The Constant DisplayName.
287 */
288 public static final String DisplayName = "DisplayName";
289
290 /**
291 * The Constant TotalCount.
292 */
293 public static final String TotalCount = "TotalCount";
294
295 /**
296 * The Constant ItemClass.
297 */
298 public static final String ItemClass = "ItemClass";
299
300 /**
301 * The Constant FolderClass.
302 */
303 public static final String FolderClass = "FolderClass";
304
305 /**
306 * The Constant Subject.
307 */
308 public static final String Subject = "Subject";
309
310 /**
311 * The Constant MimeContent.
312 */
313 public static final String MimeContent = "MimeContent";
314
315 /**
316 * The Constant Sensitivity.
317 */
318 public static final String Sensitivity = "Sensitivity";
319
320 /**
321 * The Constant Attachments.
322 */
323 public static final String Attachments = "Attachments";
324
325 /**
326 * The Constant DateTimeReceived.
327 */
328 public static final String DateTimeReceived = "DateTimeReceived";
329
330 /**
331 * The Constant Size.
332 */
333 public static final String Size = "Size";
334
335 /**
336 * The Constant Categories.
337 */
338 public static final String Categories = "Categories";
339
340 /**
341 * The Constant Importance.
342 */
343 public static final String Importance = "Importance";
344
345 /**
346 * The Constant InReplyTo.
347 */
348 public static final String InReplyTo = "InReplyTo";
349
350 /**
351 * The Constant IsSubmitted.
352 */
353 public static final String IsSubmitted = "IsSubmitted";
354
355 /**
356 * The Constant IsAssociated.
357 */
358 public static final String IsAssociated = "IsAssociated";
359
360 /**
361 * The Constant IsDraft.
362 */
363 public static final String IsDraft = "IsDraft";
364
365 /**
366 * The Constant IsFromMe.
367 */
368 public static final String IsFromMe = "IsFromMe";
369
370 /**
371 * The Constant IsResend.
372 */
373 public static final String IsResend = "IsResend";
374
375 /**
376 * The Constant IsUnmodified.
377 */
378 public static final String IsUnmodified = "IsUnmodified";
379
380 /**
381 * The Constant InternetMessageHeader.
382 */
383 public static final String InternetMessageHeader = "InternetMessageHeader";
384
385 /**
386 * The Constant InternetMessageHeaders.
387 */
388 public static final String InternetMessageHeaders =
389 "InternetMessageHeaders";
390
391 /**
392 * The Constant DateTimeSent.
393 */
394 public static final String DateTimeSent = "DateTimeSent";
395
396 /**
397 * The Constant DateTimeCreated.
398 */
399 public static final String DateTimeCreated = "DateTimeCreated";
400
401 /**
402 * The Constant ResponseObjects.
403 */
404 public static final String ResponseObjects = "ResponseObjects";
405
406 /**
407 * The Constant ReminderDueBy.
408 */
409 public static final String ReminderDueBy = "ReminderDueBy";
410
411 /**
412 * The Constant ReminderIsSet.
413 */
414 public static final String ReminderIsSet = "ReminderIsSet";
415
416 /**
417 * The Constant ReminderMinutesBeforeStart.
418 */
419 public static final String ReminderMinutesBeforeStart =
420 "ReminderMinutesBeforeStart";
421
422 /**
423 * The Constant DisplayCc.
424 */
425 public static final String DisplayCc = "DisplayCc";
426
427 /**
428 * The Constant DisplayTo.
429 */
430 public static final String DisplayTo = "DisplayTo";
431
432 /**
433 * The Constant HasAttachments.
434 */
435 public static final String HasAttachments = "HasAttachments";
436
437 /**
438 * The Constant ExtendedProperty.
439 */
440 public static final String ExtendedProperty = "ExtendedProperty";
441
442 /**
443 * The Constant Culture.
444 */
445 public static final String Culture = "Culture";
446
447 /**
448 * The Constant FileAttachment.
449 */
450 public static final String FileAttachment = "FileAttachment";
451
452 /**
453 * The Constant ItemAttachment.
454 */
455 public static final String ItemAttachment = "ItemAttachment";
456
457 /**
458 * The Constant AttachmentIds.
459 */
460 public static final String AttachmentIds = "AttachmentIds";
461
462 /**
463 * The Constant AttachmentId.
464 */
465 public static final String AttachmentId = "AttachmentId";
466
467 /**
468 * The Constant ContentType.
469 */
470 public static final String ContentType = "ContentType";
471
472 /**
473 * The Constant ContentLocation.
474 */
475 public static final String ContentLocation = "ContentLocation";
476
477 /**
478 * The Constant ContentId.
479 */
480 public static final String ContentId = "ContentId";
481
482 /**
483 * The Constant Content.
484 */
485 public static final String Content = "Content";
486
487 /**
488 * The Constant SavedItemFolderId.
489 */
490 public static final String SavedItemFolderId = "SavedItemFolderId";
491
492 /**
493 * The Constant MessageText.
494 */
495 public static final String MessageText = "MessageText";
496
497 /**
498 * The Constant DescriptiveLinkKey.
499 */
500 public static final String DescriptiveLinkKey = "DescriptiveLinkKey";
501
502 /**
503 * The Constant ItemChange.
504 */
505 public static final String ItemChange = "ItemChange";
506
507 /**
508 * The Constant ItemChanges.
509 */
510 public static final String ItemChanges = "ItemChanges";
511
512 /**
513 * The Constant FolderChange.
514 */
515 public static final String FolderChange = "FolderChange";
516
517 /**
518 * The Constant FolderChanges.
519 */
520 public static final String FolderChanges = "FolderChanges";
521
522 /**
523 * The Constant Updates.
524 */
525 public static final String Updates = "Updates";
526
527 /**
528 * The Constant AppendToItemField.
529 */
530 public static final String AppendToItemField = "AppendToItemField";
531
532 /**
533 * The Constant SetItemField.
534 */
535 public static final String SetItemField = "SetItemField";
536
537 /**
538 * The Constant DeleteItemField.
539 */
540 public static final String DeleteItemField = "DeleteItemField";
541
542 /**
543 * The Constant SetFolderField.
544 */
545 public static final String SetFolderField = "SetFolderField";
546
547 /**
548 * The Constant DeleteFolderField.
549 */
550 public static final String DeleteFolderField = "DeleteFolderField";
551
552 /**
553 * The Constant FieldURI.
554 */
555 public static final String FieldURI = "FieldURI";
556
557 /**
558 * The Constant RootItemId.
559 */
560 public static final String RootItemId = "RootItemId";
561
562 /**
563 * The Constant ReferenceItemId.
564 */
565 public static final String ReferenceItemId = "ReferenceItemId";
566
567 /**
568 * The Constant NewBodyContent.
569 */
570 public static final String NewBodyContent = "NewBodyContent";
571
572 /**
573 * The Constant ReplyToItem.
574 */
575 public static final String ReplyToItem = "ReplyToItem";
576
577 /**
578 * The Constant ReplyAllToItem.
579 */
580 public static final String ReplyAllToItem = "ReplyAllToItem";
581
582 /**
583 * The Constant ForwardItem.
584 */
585 public static final String ForwardItem = "ForwardItem";
586
587 /**
588 * The Constant AcceptItem.
589 */
590 public static final String AcceptItem = "AcceptItem";
591
592 /**
593 * The Constant TentativelyAcceptItem.
594 */
595 public static final String TentativelyAcceptItem = "TentativelyAcceptItem";
596
597 /**
598 * The Constant DeclineItem.
599 */
600 public static final String DeclineItem = "DeclineItem";
601
602 /**
603 * The Constant CancelCalendarItem.
604 */
605 public static final String CancelCalendarItem = "CancelCalendarItem";
606
607 /**
608 * The Constant RemoveItem.
609 */
610 public static final String RemoveItem = "RemoveItem";
611
612 /**
613 * The Constant SuppressReadReceipt.
614 */
615 public static final String SuppressReadReceipt = "SuppressReadReceipt";
616
617 /**
618 * The Constant String.
619 */
620 public static final String String = "String";
621
622 /**
623 * The Constant Start.
624 */
625 public static final String Start = "Start";
626
627 /**
628 * The Constant End.
629 */
630 public static final String End = "End";
631
632 /**
633 * The Constant OriginalStart.
634 */
635 public static final String OriginalStart = "OriginalStart";
636
637 /**
638 * The Constant IsAllDayEvent.
639 */
640 public static final String IsAllDayEvent = "IsAllDayEvent";
641
642 /**
643 * The Constant LegacyFreeBusyStatus.
644 */
645 public static final String LegacyFreeBusyStatus = "LegacyFreeBusyStatus";
646
647 /**
648 * The Constant Location.
649 */
650 public static final String Location = "Location";
651
652 /**
653 * The Constant When.
654 */
655 public static final String When = "When";
656
657 /**
658 * The Constant IsMeeting.
659 */
660 public static final String IsMeeting = "IsMeeting";
661
662 /**
663 * The Constant IsCancelled.
664 */
665 public static final String IsCancelled = "IsCancelled";
666
667 /**
668 * The Constant IsRecurring.
669 */
670 public static final String IsRecurring = "IsRecurring";
671
672 /**
673 * The Constant MeetingRequestWasSent.
674 */
675 public static final String MeetingRequestWasSent = "MeetingRequestWasSent";
676
677 /**
678 * The Constant CalendarItemType.
679 */
680 public static final String CalendarItemType = "CalendarItemType";
681
682 /**
683 * The Constant MyResponseType.
684 */
685 public static final String MyResponseType = "MyResponseType";
686
687 /**
688 * The Constant Organizer.
689 */
690 public static final String Organizer = "Organizer";
691
692 /**
693 * The Constant RequiredAttendees.
694 */
695 public static final String RequiredAttendees = "RequiredAttendees";
696
697 /**
698 * The Constant OptionalAttendees.
699 */
700 public static final String OptionalAttendees = "OptionalAttendees";
701
702 /**
703 * The Constant Resources.
704 */
705 public static final String Resources = "Resources";
706
707 /**
708 * The Constant ConflictingMeetingCount.
709 */
710 public static final String ConflictingMeetingCount =
711 "ConflictingMeetingCount";
712
713 /**
714 * The Constant AdjacentMeetingCount.
715 */
716 public static final String AdjacentMeetingCount = "AdjacentMeetingCount";
717
718 /**
719 * The Constant ConflictingMeetings.
720 */
721 public static final String ConflictingMeetings = "ConflictingMeetings";
722
723 /**
724 * The Constant AdjacentMeetings.
725 */
726 public static final String AdjacentMeetings = "AdjacentMeetings";
727
728 /**
729 * The Constant Duration.
730 */
731 public static final String Duration = "Duration";
732
733 /**
734 * The Constant TimeZone.
735 */
736 public static final String TimeZone = "TimeZone";
737
738 /**
739 * The Constant AppointmentReplyTime.
740 */
741 public static final String AppointmentReplyTime = "AppointmentReplyTime";
742
743 /**
744 * The Constant AppointmentSequenceNumber.
745 */
746 public static final String AppointmentSequenceNumber =
747 "AppointmentSequenceNumber";
748
749 /**
750 * The Constant AppointmentState.
751 */
752 public static final String AppointmentState = "AppointmentState";
753
754 /**
755 * The Constant Recurrence.
756 */
757 public static final String Recurrence = "Recurrence";
758
759 /**
760 * The Constant FirstOccurrence.
761 */
762 public static final String FirstOccurrence = "FirstOccurrence";
763
764 /**
765 * The Constant LastOccurrence.
766 */
767 public static final String LastOccurrence = "LastOccurrence";
768
769 /**
770 * The Constant ModifiedOccurrences.
771 */
772 public static final String ModifiedOccurrences = "ModifiedOccurrences";
773
774 /**
775 * The Constant DeletedOccurrences.
776 */
777 public static final String DeletedOccurrences = "DeletedOccurrences";
778
779 /**
780 * The Constant MeetingTimeZone.
781 */
782 public static final String MeetingTimeZone = "MeetingTimeZone";
783
784 /**
785 * The Constant ConferenceType.
786 */
787 public static final String ConferenceType = "ConferenceType";
788
789 /**
790 * The Constant AllowNewTimeProposal.
791 */
792 public static final String AllowNewTimeProposal = "AllowNewTimeProposal";
793
794 /**
795 * The Constant IsOnlineMeeting.
796 */
797 public static final String IsOnlineMeeting = "IsOnlineMeeting";
798
799 /**
800 * The Constant MeetingWorkspaceUrl.
801 */
802 public static final String MeetingWorkspaceUrl = "MeetingWorkspaceUrl";
803
804 /**
805 * The Constant NetShowUrl.
806 */
807 public static final String NetShowUrl = "NetShowUrl";
808
809 /**
810 * The Constant CalendarItem.
811 */
812 public static final String CalendarItem = "CalendarItem";
813
814 /**
815 * The Constant CalendarFolder.
816 */
817 public static final String CalendarFolder = "CalendarFolder";
818
819 /**
820 * The Constant Attendee.
821 */
822 public static final String Attendee = "Attendee";
823
824 /**
825 * The Constant ResponseType.
826 */
827 public static final String ResponseType = "ResponseType";
828
829 /**
830 * The Constant LastResponseTime.
831 */
832 public static final String LastResponseTime = "LastResponseTime";
833
834 /**
835 * The Constant Occurrence.
836 */
837 public static final String Occurrence = "Occurrence";
838
839 /**
840 * The Constant DeletedOccurrence.
841 */
842 public static final String DeletedOccurrence = "DeletedOccurrence";
843
844 /**
845 * The Constant RelativeYearlyRecurrence.
846 */
847 public static final String RelativeYearlyRecurrence =
848 "RelativeYearlyRecurrence";
849
850 /**
851 * The Constant AbsoluteYearlyRecurrence.
852 */
853 public static final String AbsoluteYearlyRecurrence =
854 "AbsoluteYearlyRecurrence";
855
856 /**
857 * The Constant RelativeMonthlyRecurrence.
858 */
859 public static final String RelativeMonthlyRecurrence =
860 "RelativeMonthlyRecurrence";
861
862 /**
863 * The Constant AbsoluteMonthlyRecurrence.
864 */
865 public static final String AbsoluteMonthlyRecurrence =
866 "AbsoluteMonthlyRecurrence";
867
868 /**
869 * The Constant WeeklyRecurrence.
870 */
871 public static final String WeeklyRecurrence = "WeeklyRecurrence";
872
873 /**
874 * The Constant DailyRecurrence.
875 */
876 public static final String DailyRecurrence = "DailyRecurrence";
877
878 /**
879 * The Constant DailyRegeneration.
880 */
881 public static final String DailyRegeneration = "DailyRegeneration";
882
883 /**
884 * The Constant WeeklyRegeneration.
885 */
886 public static final String WeeklyRegeneration = "WeeklyRegeneration";
887
888 /**
889 * The Constant MonthlyRegeneration.
890 */
891 public static final String MonthlyRegeneration = "MonthlyRegeneration";
892
893 /**
894 * The Constant YearlyRegeneration.
895 */
896 public static final String YearlyRegeneration = "YearlyRegeneration";
897
898 /**
899 * The Constant NoEndRecurrence.
900 */
901 public static final String NoEndRecurrence = "NoEndRecurrence";
902
903 /**
904 * The Constant EndDateRecurrence.
905 */
906 public static final String EndDateRecurrence = "EndDateRecurrence";
907
908 /**
909 * The Constant NumberedRecurrence.
910 */
911 public static final String NumberedRecurrence = "NumberedRecurrence";
912
913 /**
914 * The Constant Interval.
915 */
916 public static final String Interval = "Interval";
917
918 /**
919 * The Constant DayOfMonth.
920 */
921 public static final String DayOfMonth = "DayOfMonth";
922
923 /**
924 * The Constant DayOfWeek.
925 */
926 public static final String DayOfWeek = "DayOfWeek";
927
928 /**
929 * The Constant DaysOfWeek.
930 */
931 public static final String DaysOfWeek = "DaysOfWeek";
932
933 /**
934 * The Constant DayOfWeekIndex.
935 */
936 public static final String DayOfWeekIndex = "DayOfWeekIndex";
937
938 /**
939 * The Constant Month.
940 */
941 public static final String Month = "Month";
942
943 /**
944 * The Constant StartDate.
945 */
946 public static final String StartDate = "StartDate";
947
948 /**
949 * The Constant EndDate.
950 */
951 public static final String EndDate = "EndDate";
952
953 /**
954 * The Constant StartTime.
955 */
956 public static final String StartTime = "StartTime";
957
958 /**
959 * The Constant EndTime.
960 */
961 public static final String EndTime = "EndTime";
962
963 /**
964 * The Constant NumberOfOccurrences.
965 */
966 public static final String NumberOfOccurrences = "NumberOfOccurrences";
967
968 /**
969 * The Constant AssociatedCalendarItemId.
970 */
971 public static final String AssociatedCalendarItemId =
972 "AssociatedCalendarItemId";
973
974 /**
975 * The Constant IsDelegated.
976 */
977 public static final String IsDelegated = "IsDelegated";
978
979 /**
980 * The Constant IsOutOfDate.
981 */
982 public static final String IsOutOfDate = "IsOutOfDate";
983
984 /**
985 * The Constant HasBeenProcessed.
986 */
987 public static final String HasBeenProcessed = "HasBeenProcessed";
988
989 /**
990 * The Constant MeetingMessage.
991 */
992 public static final String MeetingMessage = "MeetingMessage";
993
994 /**
995 * The Constant FileAs.
996 */
997 public static final String FileAs = "FileAs";
998
999 /**
1000 * The Constant FileAsMapping.
1001 */
1002 public static final String FileAsMapping = "FileAsMapping";
1003
1004 /**
1005 * The Constant GivenName.
1006 */
1007 public static final String GivenName = "GivenName";
1008
1009 /**
1010 * The Constant Initials.
1011 */
1012 public static final String Initials = "Initials";
1013
1014 /**
1015 * The Constant MiddleName.
1016 */
1017 public static final String MiddleName = "MiddleName";
1018
1019 /**
1020 * The Constant NickName.
1021 */
1022 public static final String NickName = "Nickname";
1023
1024 /**
1025 * The Constant CompleteName.
1026 */
1027 public static final String CompleteName = "CompleteName";
1028
1029 /**
1030 * The Constant CompanyName.
1031 */
1032 public static final String CompanyName = "CompanyName";
1033
1034 /**
1035 * The Constant EmailAddresses.
1036 */
1037 public static final String EmailAddresses = "EmailAddresses";
1038
1039 /**
1040 * The Constant PhysicalAddresses.
1041 */
1042 public static final String PhysicalAddresses = "PhysicalAddresses";
1043
1044 /**
1045 * The Constant PhoneNumbers.
1046 */
1047 public static final String PhoneNumbers = "PhoneNumbers";
1048
1049 /**
1050 * The Constant PhoneNumber.
1051 */
1052 public static final String PhoneNumber = "PhoneNumber";
1053
1054 /**
1055 * The Constant AssistantName.
1056 */
1057 public static final String AssistantName = "AssistantName";
1058
1059 /**
1060 * The Constant Birthday.
1061 */
1062 public static final String Birthday = "Birthday";
1063
1064 /**
1065 * The Constant BusinessHomePage.
1066 */
1067 public static final String BusinessHomePage = "BusinessHomePage";
1068
1069 /**
1070 * The Constant Children.
1071 */
1072 public static final String Children = "Children";
1073
1074 /**
1075 * The Constant Companies.
1076 */
1077 public static final String Companies = "Companies";
1078
1079 /**
1080 * The Constant ContactSource.
1081 */
1082 public static final String ContactSource = "ContactSource";
1083
1084 /**
1085 * The Constant Department.
1086 */
1087 public static final String Department = "Department";
1088
1089 /**
1090 * The Constant Generation.
1091 */
1092 public static final String Generation = "Generation";
1093
1094 /**
1095 * The Constant ImAddresses.
1096 */
1097 public static final String ImAddresses = "ImAddresses";
1098
1099 /**
1100 * The Constant ImAddress.
1101 */
1102 public static final String ImAddress = "ImAddress";
1103
1104 /**
1105 * The Constant JobTitle.
1106 */
1107 public static final String JobTitle = "JobTitle";
1108
1109 /**
1110 * The Constant Manager.
1111 */
1112 public static final String Manager = "Manager";
1113
1114 /**
1115 * The Constant Mileage.
1116 */
1117 public static final String Mileage = "Mileage";
1118
1119 /**
1120 * The Constant OfficeLocation.
1121 */
1122 public static final String OfficeLocation = "OfficeLocation";
1123
1124 /**
1125 * The Constant PostalAddressIndex.
1126 */
1127 public static final String PostalAddressIndex = "PostalAddressIndex";
1128
1129 /**
1130 * The Constant Profession.
1131 */
1132 public static final String Profession = "Profession";
1133
1134 /**
1135 * The Constant SpouseName.
1136 */
1137 public static final String SpouseName = "SpouseName";
1138
1139 /**
1140 * The Constant Surname.
1141 */
1142 public static final String Surname = "Surname";
1143
1144 /**
1145 * The Constant WeddingAnniversary.
1146 */
1147 public static final String WeddingAnniversary = "WeddingAnniversary";
1148
1149 /**
1150 * The Constant HasPicture.
1151 */
1152 public static final String HasPicture = "HasPicture";
1153
1154 /**
1155 * The Constant Title.
1156 */
1157 public static final String Title = "Title";
1158
1159 /**
1160 * The Constant FirstName.
1161 */
1162 public static final String FirstName = "FirstName";
1163
1164 /**
1165 * The Constant LastName.
1166 */
1167 public static final String LastName = "LastName";
1168
1169 /**
1170 * The Constant Suffix.
1171 */
1172 public static final String Suffix = "Suffix";
1173
1174 /**
1175 * The Constant FullName.
1176 */
1177 public static final String FullName = "FullName";
1178
1179 /**
1180 * The Constant YomiFirstName.
1181 */
1182 public static final String YomiFirstName = "YomiFirstName";
1183
1184 /**
1185 * The Constant YomiLastName.
1186 */
1187 public static final String YomiLastName = "YomiLastName";
1188
1189 /**
1190 * The Constant Contact.
1191 */
1192 public static final String Contact = "Contact";
1193
1194 /**
1195 * The Constant Entry.
1196 */
1197 public static final String Entry = "Entry";
1198
1199 /**
1200 * The Constant Street.
1201 */
1202 public static final String Street = "Street";
1203
1204 /**
1205 * The Constant City.
1206 */
1207 public static final String City = "City";
1208
1209 /**
1210 * The Constant State.
1211 */
1212 public static final String State = "State";
1213
1214 /**
1215 * The Constant CountryOrRegion.
1216 */
1217 public static final String CountryOrRegion = "CountryOrRegion";
1218
1219 /**
1220 * The Constant PostalCode.
1221 */
1222 public static final String PostalCode = "PostalCode";
1223
1224 /**
1225 * The Constant Members.
1226 */
1227 public static final String Members = "Members";
1228
1229 /**
1230 * The Constant Member.
1231 */
1232 public static final String Member = "Member";
1233
1234 /**
1235 * The Constant AdditionalProperties.
1236 */
1237 public static final String AdditionalProperties = "AdditionalProperties";
1238
1239 /**
1240 * The Constant ExtendedFieldURI.
1241 */
1242 public static final String ExtendedFieldURI = "ExtendedFieldURI";
1243
1244 /**
1245 * The Constant Value.
1246 */
1247 public static final String Value = "Value";
1248
1249 /**
1250 * The Constant Values.
1251 */
1252 public static final String Values = "Values";
1253
1254 /**
1255 * The Constant ToFolderId.
1256 */
1257 public static final String ToFolderId = "ToFolderId";
1258
1259 /**
1260 * The Constant ActualWork.
1261 */
1262 public static final String ActualWork = "ActualWork";
1263
1264 /**
1265 * The Constant AssignedTime.
1266 */
1267 public static final String AssignedTime = "AssignedTime";
1268
1269 /**
1270 * The Constant BillingInformation.
1271 */
1272 public static final String BillingInformation = "BillingInformation";
1273
1274 /**
1275 * The Constant ChangeCount.
1276 */
1277 public static final String ChangeCount = "ChangeCount";
1278
1279 /**
1280 * The Constant CompleteDate.
1281 */
1282 public static final String CompleteDate = "CompleteDate";
1283
1284 /**
1285 * The Constant Contacts.
1286 */
1287 public static final String Contacts = "Contacts";
1288
1289 /**
1290 * The Constant DelegationState.
1291 */
1292 public static final String DelegationState = "DelegationState";
1293
1294 /**
1295 * The Constant Delegator.
1296 */
1297 public static final String Delegator = "Delegator";
1298
1299 /**
1300 * The Constant DueDate.
1301 */
1302 public static final String DueDate = "DueDate";
1303
1304 /**
1305 * The Constant IsAssignmentEditable.
1306 */
1307 public static final String IsAssignmentEditable = "IsAssignmentEditable";
1308
1309 /**
1310 * The Constant IsComplete.
1311 */
1312 public static final String IsComplete = "IsComplete";
1313
1314 /**
1315 * The Constant IsTeamTask.
1316 */
1317 public static final String IsTeamTask = "IsTeamTask";
1318
1319 /**
1320 * The Constant Owner.
1321 */
1322 public static final String Owner = "Owner";
1323
1324 /**
1325 * The Constant PercentComplete.
1326 */
1327 public static final String PercentComplete = "PercentComplete";
1328
1329 /**
1330 * The Constant Status.
1331 */
1332 public static final String Status = "Status";
1333
1334 /**
1335 * The Constant StatusDescription.
1336 */
1337 public static final String StatusDescription = "StatusDescription";
1338
1339 /**
1340 * The Constant TotalWork.
1341 */
1342 public static final String TotalWork = "TotalWork";
1343
1344 /**
1345 * The Constant Task.
1346 */
1347 public static final String Task = "Task";
1348
1349 /**
1350 * The Constant MailboxCulture.
1351 */
1352 public static final String MailboxCulture = "MailboxCulture";
1353
1354 /**
1355 * The Constant MeetingRequestType.
1356 */
1357 public static final String MeetingRequestType = "MeetingRequestType";
1358
1359 /**
1360 * The Constant IntendedFreeBusyStatus.
1361 */
1362 public static final String IntendedFreeBusyStatus =
1363 "IntendedFreeBusyStatus";
1364
1365 /**
1366 * The Constant MeetingRequest.
1367 */
1368 public static final String MeetingRequest = "MeetingRequest";
1369
1370 /**
1371 * The Constant MeetingResponse.
1372 */
1373 public static final String MeetingResponse = "MeetingResponse";
1374
1375 /**
1376 * The Constant MeetingCancellation.
1377 */
1378 public static final String MeetingCancellation = "MeetingCancellation";
1379
1380 /**
1381 * The Constant BaseOffset.
1382 */
1383 public static final String BaseOffset = "BaseOffset";
1384
1385 /**
1386 * The Constant Offset.
1387 */
1388 public static final String Offset = "Offset";
1389
1390 /**
1391 * The Constant Standard.
1392 */
1393 public static final String Standard = "Standard";
1394
1395 /**
1396 * The Constant Daylight.
1397 */
1398 public static final String Daylight = "Daylight";
1399
1400 /**
1401 * The Constant Time.
1402 */
1403 public static final String Time = "Time";
1404
1405 /**
1406 * The Constant AbsoluteDate.
1407 */
1408 public static final String AbsoluteDate = "AbsoluteDate";
1409
1410 /**
1411 * The Constant UnresolvedEntry.
1412 */
1413 public static final String UnresolvedEntry = "UnresolvedEntry";
1414
1415 /**
1416 * The Constant ResolutionSet.
1417 */
1418 public static final String ResolutionSet = "ResolutionSet";
1419
1420 /**
1421 * The Constant Resolution.
1422 */
1423 public static final String Resolution = "Resolution";
1424
1425 /**
1426 * The Constant DistributionList.
1427 */
1428 public static final String DistributionList = "DistributionList";
1429
1430 /**
1431 * The Constant DLExpansion.
1432 */
1433 public static final String DLExpansion = "DLExpansion";
1434
1435 /**
1436 * The Constant IndexedFieldURI.
1437 */
1438 public static final String IndexedFieldURI = "IndexedFieldURI";
1439
1440 /**
1441 * The Constant PullSubscriptionRequest.
1442 */
1443 public static final String PullSubscriptionRequest =
1444 "PullSubscriptionRequest";
1445
1446 /**
1447 * The Constant PushSubscriptionRequest.
1448 */
1449 public static final String PushSubscriptionRequest =
1450 "PushSubscriptionRequest";
1451
1452 /**
1453 * The Constant StreamingSubscriptionRequest.
1454 */
1455 public static final String StreamingSubscriptionRequest =
1456 "StreamingSubscriptionRequest";
1457 /**
1458 * The Constant EventTypes.
1459 */
1460 public static final String EventTypes = "EventTypes";
1461
1462 /**
1463 * The Constant EventType.
1464 */
1465 public static final String EventType = "EventType";
1466
1467 /**
1468 * The Constant Timeout.
1469 */
1470 public static final String Timeout = "Timeout";
1471
1472 /**
1473 * The Constant Watermark.
1474 */
1475 public static final String Watermark = "Watermark";
1476
1477 /**
1478 * The Constant SubscriptionId.
1479 */
1480 public static final String SubscriptionId = "SubscriptionId";
1481
1482 /**
1483 * The Constant SubscriptionId.
1484 */
1485 public static final String SubscriptionIds = "SubscriptionIds";
1486
1487 /**
1488 * The Constant StatusFrequency.
1489 */
1490 public static final String StatusFrequency = "StatusFrequency";
1491
1492 /**
1493 * The Constant URL.
1494 */
1495 public static final String URL = "URL";
1496
1497 /**
1498 * The Constant Notification.
1499 */
1500 public static final String Notification = "Notification";
1501
1502 /**
1503 * The Constant Notifications.
1504 */
1505 public static final String Notifications = "Notifications";
1506
1507 /**
1508 * The Constant PreviousWatermark.
1509 */
1510 public static final String PreviousWatermark = "PreviousWatermark";
1511
1512 /**
1513 * The Constant MoreEvents.
1514 */
1515 public static final String MoreEvents = "MoreEvents";
1516
1517 /**
1518 * The Constant TimeStamp.
1519 */
1520 public static final String TimeStamp = "TimeStamp";
1521
1522 /**
1523 * The Constant UnreadCount.
1524 */
1525 public static final String UnreadCount = "UnreadCount";
1526
1527 /**
1528 * The Constant OldParentFolderId.
1529 */
1530 public static final String OldParentFolderId = "OldParentFolderId";
1531
1532 /**
1533 * The Constant CopiedEvent.
1534 */
1535 public static final String CopiedEvent = "CopiedEvent";
1536
1537 /**
1538 * The Constant CreatedEvent.
1539 */
1540 public static final String CreatedEvent = "CreatedEvent";
1541
1542 /**
1543 * The Constant DeletedEvent.
1544 */
1545 public static final String DeletedEvent = "DeletedEvent";
1546
1547 /**
1548 * The Constant ModifiedEvent.
1549 */
1550 public static final String ModifiedEvent = "ModifiedEvent";
1551
1552 /**
1553 * The Constant MovedEvent.
1554 */
1555 public static final String MovedEvent = "MovedEvent";
1556
1557 /**
1558 * The Constant NewMailEvent.
1559 */
1560 public static final String NewMailEvent = "NewMailEvent";
1561
1562 /**
1563 * The Constant StatusEvent.
1564 */
1565 public static final String StatusEvent = "StatusEvent";
1566
1567 /**
1568 * The Constant FreeBusyChangedEvent.
1569 */
1570 public static final String FreeBusyChangedEvent = "FreeBusyChangedEvent";
1571
1572 /**
1573 * The Constant ExchangeImpersonation.
1574 */
1575 public static final String ExchangeImpersonation = "ExchangeImpersonation";
1576
1577 /**
1578 * The Constant ConnectingSID.
1579 */
1580 public static final String ConnectingSID = "ConnectingSID";
1581
1582 /**
1583 * The Constant SyncFolderId.
1584 */
1585 public static final String SyncFolderId = "SyncFolderId";
1586
1587 /**
1588 * The Constant SyncScope.
1589 */
1590 public static final String SyncScope = "SyncScope";
1591
1592 /**
1593 * The Constant SyncState.
1594 */
1595 public static final String SyncState = "SyncState";
1596
1597 /**
1598 * The Constant Ignore.
1599 */
1600 public static final String Ignore = "Ignore";
1601
1602 /**
1603 * The Constant MaxChangesReturned.
1604 */
1605 public static final String MaxChangesReturned = "MaxChangesReturned";
1606
1607 /**
1608 * The Constant Changes.
1609 */
1610 public static final String Changes = "Changes";
1611
1612 /**
1613 * The Constant IncludesLastItemInRange.
1614 */
1615 public static final String IncludesLastItemInRange =
1616 "IncludesLastItemInRange";
1617
1618 /**
1619 * The Constant IncludesLastFolderInRange.
1620 */
1621 public static final String IncludesLastFolderInRange =
1622 "IncludesLastFolderInRange";
1623
1624 /**
1625 * The Constant Create.
1626 */
1627 public static final String Create = "Create";
1628
1629 /**
1630 * The Constant Update.
1631 */
1632 public static final String Update = "Update";
1633
1634 /**
1635 * The Constant Delete.
1636 */
1637 public static final String Delete = "Delete";
1638
1639 /**
1640 * The Constant ReadFlagChange.
1641 */
1642 public static final String ReadFlagChange = "ReadFlagChange";
1643
1644 /**
1645 * The Constant SearchParameters.
1646 */
1647 public static final String SearchParameters = "SearchParameters";
1648
1649 /**
1650 * The Constant SoftDeleted.
1651 */
1652 public static final String SoftDeleted = "SoftDeleted";
1653
1654 /**
1655 * The Constant Shallow.
1656 */
1657 public static final String Shallow = "Shallow";
1658
1659 /**
1660 * The Constant Associated.
1661 */
1662 public static final String Associated = "Associated";
1663
1664 /**
1665 * The Constant BaseFolderIds.
1666 */
1667 public static final String BaseFolderIds = "BaseFolderIds";
1668
1669 /**
1670 * The Constant SortOrder.
1671 */
1672 public static final String SortOrder = "SortOrder";
1673
1674 /**
1675 * The Constant FieldOrder.
1676 */
1677 public static final String FieldOrder = "FieldOrder";
1678
1679 /**
1680 * The Constant CanDelete.
1681 */
1682 public static final String CanDelete = "CanDelete";
1683
1684 /**
1685 * The Constant CanRenameOrMove.
1686 */
1687 public static final String CanRenameOrMove = "CanRenameOrMove";
1688
1689 /**
1690 * The Constant MustDisplayComment.
1691 */
1692 public static final String MustDisplayComment = "MustDisplayComment";
1693
1694 /**
1695 * The Constant HasQuota.
1696 */
1697 public static final String HasQuota = "HasQuota";
1698
1699 /**
1700 * The Constant IsManagedFoldersRoot.
1701 */
1702 public static final String IsManagedFoldersRoot = "IsManagedFoldersRoot";
1703
1704 /**
1705 * The Constant ManagedFolderId.
1706 */
1707 public static final String ManagedFolderId = "ManagedFolderId";
1708
1709 /**
1710 * The Constant Comment.
1711 */
1712 public static final String Comment = "Comment";
1713
1714 /**
1715 * The Constant StorageQuota.
1716 */
1717 public static final String StorageQuota = "StorageQuota";
1718
1719 /**
1720 * The Constant FolderSize.
1721 */
1722 public static final String FolderSize = "FolderSize";
1723
1724 /**
1725 * The Constant HomePage.
1726 */
1727 public static final String HomePage = "HomePage";
1728
1729 /**
1730 * The Constant ManagedFolderInformation.
1731 */
1732 public static final String ManagedFolderInformation =
1733 "ManagedFolderInformation";
1734
1735 /**
1736 * The Constant CalendarView.
1737 */
1738 public static final String CalendarView = "CalendarView";
1739
1740 /**
1741 * The Constant PostedTime.
1742 */
1743 public static final String PostedTime = "PostedTime";
1744
1745 /**
1746 * The Constant PostItem.
1747 */
1748 public static final String PostItem = "PostItem";
1749
1750 /**
1751 * The Constant RequestServerVersion.
1752 */
1753 public static final String RequestServerVersion = "RequestServerVersion";
1754
1755 /**
1756 * The Constant PostReplyItem.
1757 */
1758 public static final String PostReplyItem = "PostReplyItem";
1759
1760 /**
1761 * The Constant CreateAssociated.
1762 */
1763 public static final String CreateAssociated = "CreateAssociated";
1764
1765 /**
1766 * The Constant CreateContents.
1767 */
1768 public static final String CreateContents = "CreateContents";
1769
1770 /**
1771 * The Constant CreateHierarchy.
1772 */
1773 public static final String CreateHierarchy = "CreateHierarchy";
1774
1775 /**
1776 * The Constant Modify.
1777 */
1778 public static final String Modify = "Modify";
1779
1780 /**
1781 * The Constant Read.
1782 */
1783 public static final String Read = "Read";
1784
1785 /**
1786 * The Constant EffectiveRights.
1787 */
1788 public static final String EffectiveRights = "EffectiveRights";
1789
1790 /**
1791 * The Constant LastModifiedName.
1792 */
1793 public static final String LastModifiedName = "LastModifiedName";
1794
1795 /**
1796 * The Constant LastModifiedTime.
1797 */
1798 public static final String LastModifiedTime = "LastModifiedTime";
1799
1800 /**
1801 * The Constant ConversationId.
1802 */
1803 public static final String ConversationId = "ConversationId";
1804
1805 /**
1806 * The Constant UniqueBody.
1807 */
1808 public static final String UniqueBody = "UniqueBody";
1809
1810 /**
1811 * The Constant BodyType.
1812 */
1813 public static final String BodyType = "BodyType";
1814
1815 /**
1816 * The Constant AttachmentShape.
1817 */
1818 public static final String AttachmentShape = "AttachmentShape";
1819
1820 /**
1821 * The Constant UserId.
1822 */
1823 public static final String UserId = "UserId";
1824
1825 /**
1826 * The Constant UserIds.
1827 */
1828 public static final String UserIds = "UserIds";
1829
1830 /**
1831 * The Constant CanCreateItems.
1832 */
1833 public static final String CanCreateItems = "CanCreateItems";
1834
1835 /**
1836 * The Constant CanCreateSubFolders.
1837 */
1838 public static final String CanCreateSubFolders = "CanCreateSubFolders";
1839
1840 /**
1841 * The Constant IsFolderOwner.
1842 */
1843 public static final String IsFolderOwner = "IsFolderOwner";
1844
1845 /**
1846 * The Constant IsFolderVisible.
1847 */
1848 public static final String IsFolderVisible = "IsFolderVisible";
1849
1850 /**
1851 * The Constant IsFolderContact.
1852 */
1853 public static final String IsFolderContact = "IsFolderContact";
1854
1855 /**
1856 * The Constant EditItems.
1857 */
1858 public static final String EditItems = "EditItems";
1859
1860 /**
1861 * The Constant DeleteItems.
1862 */
1863 public static final String DeleteItems = "DeleteItems";
1864
1865 /**
1866 * The Constant ReadItems.
1867 */
1868 public static final String ReadItems = "ReadItems";
1869
1870 /**
1871 * The Constant PermissionLevel.
1872 */
1873 public static final String PermissionLevel = "PermissionLevel";
1874
1875 /**
1876 * The Constant CalendarPermissionLevel.
1877 */
1878 public static final String CalendarPermissionLevel =
1879 "CalendarPermissionLevel";
1880
1881 /**
1882 * The Constant SID.
1883 */
1884 public static final String SID = "SID";
1885
1886 /**
1887 * The Constant PrimarySmtpAddress.
1888 */
1889 public static final String PrimarySmtpAddress = "PrimarySmtpAddress";
1890
1891 /**
1892 * The Constant DistinguishedUser.
1893 */
1894 public static final String DistinguishedUser = "DistinguishedUser";
1895
1896 /**
1897 * The Constant PermissionSet.
1898 */
1899 public static final String PermissionSet = "PermissionSet";
1900
1901 /**
1902 * The Constant Permissions.
1903 */
1904 public static final String Permissions = "Permissions";
1905
1906 /**
1907 * The Constant Permission.
1908 */
1909 public static final String Permission = "Permission";
1910
1911 /**
1912 * The Constant CalendarPermissions.
1913 */
1914 public static final String CalendarPermissions = "CalendarPermissions";
1915
1916 /**
1917 * The Constant CalendarPermission.
1918 */
1919 public static final String CalendarPermission = "CalendarPermission";
1920
1921 /**
1922 * The Constant GroupBy.
1923 */
1924 public static final String GroupBy = "GroupBy";
1925
1926 /**
1927 * The Constant AggregateOn.
1928 */
1929 public static final String AggregateOn = "AggregateOn";
1930
1931 /**
1932 * The Constant Groups.
1933 */
1934 public static final String Groups = "Groups";
1935
1936 /**
1937 * The Constant GroupedItems.
1938 */
1939 public static final String GroupedItems = "GroupedItems";
1940
1941 /**
1942 * The Constant GroupIndex.
1943 */
1944 public static final String GroupIndex = "GroupIndex";
1945
1946 /**
1947 * The Constant ConflictResults.
1948 */
1949 public static final String ConflictResults = "ConflictResults";
1950
1951 /**
1952 * The Constant Count.
1953 */
1954 public static final String Count = "Count";
1955
1956 /**
1957 * The Constant OofSettings.
1958 */
1959 public static final String OofSettings = "OofSettings";
1960
1961 /**
1962 * The Constant UserOofSettings.
1963 */
1964 public static final String UserOofSettings = "UserOofSettings";
1965
1966 /**
1967 * The Constant OofState.
1968 */
1969 public static final String OofState = "OofState";
1970
1971 /**
1972 * The Constant ExternalAudience.
1973 */
1974 public static final String ExternalAudience = "ExternalAudience";
1975
1976 /**
1977 * The Constant AllowExternalOof.
1978 */
1979 public static final String AllowExternalOof = "AllowExternalOof";
1980
1981 /**
1982 * The Constant InternalReply.
1983 */
1984 public static final String InternalReply = "InternalReply";
1985
1986 /**
1987 * The Constant ExternalReply.
1988 */
1989 public static final String ExternalReply = "ExternalReply";
1990
1991 /**
1992 * The Constant Bias.
1993 */
1994 public static final String Bias = "Bias";
1995
1996 /**
1997 * The Constant DayOrder.
1998 */
1999 public static final String DayOrder = "DayOrder";
2000
2001 /**
2002 * The Constant Year.
2003 */
2004 public static final String Year = "Year";
2005
2006 /**
2007 * The Constant StandardTime.
2008 */
2009 public static final String StandardTime = "StandardTime";
2010
2011 /**
2012 * The Constant DaylightTime.
2013 */
2014 public static final String DaylightTime = "DaylightTime";
2015
2016 /**
2017 * The Constant MailboxData.
2018 */
2019 public static final String MailboxData = "MailboxData";
2020
2021 /**
2022 * The Constant MailboxDataArray.
2023 */
2024 public static final String MailboxDataArray = "MailboxDataArray";
2025
2026 /**
2027 * The Constant Email.
2028 */
2029 public static final String Email = "Email";
2030
2031 /**
2032 * The Constant AttendeeType.
2033 */
2034 public static final String AttendeeType = "AttendeeType";
2035
2036 /**
2037 * The Constant ExcludeConflicts.
2038 */
2039 public static final String ExcludeConflicts = "ExcludeConflicts";
2040
2041 /**
2042 * The Constant FreeBusyViewOptions.
2043 */
2044 public static final String FreeBusyViewOptions = "FreeBusyViewOptions";
2045
2046 /**
2047 * The Constant SuggestionsViewOptions.
2048 */
2049 public static final String SuggestionsViewOptions =
2050 "SuggestionsViewOptions";
2051
2052 /**
2053 * The Constant FreeBusyView.
2054 */
2055 public static final String FreeBusyView = "FreeBusyView";
2056
2057 /**
2058 * The Constant TimeWindow.
2059 */
2060 public static final String TimeWindow = "TimeWindow";
2061
2062 /**
2063 * The Constant MergedFreeBusyIntervalInMinutes.
2064 */
2065 public static final String MergedFreeBusyIntervalInMinutes =
2066 "MergedFreeBusyIntervalInMinutes";
2067
2068 /**
2069 * The Constant RequestedView.
2070 */
2071 public static final String RequestedView = "RequestedView";
2072
2073 /**
2074 * The Constant FreeBusyViewType.
2075 */
2076 public static final String FreeBusyViewType = "FreeBusyViewType";
2077
2078 /**
2079 * The Constant CalendarEventArray.
2080 */
2081 public static final String CalendarEventArray = "CalendarEventArray";
2082
2083 /**
2084 * The Constant CalendarEvent.
2085 */
2086 public static final String CalendarEvent = "CalendarEvent";
2087
2088 /**
2089 * The Constant BusyType.
2090 */
2091 public static final String BusyType = "BusyType";
2092
2093 /**
2094 * The Constant MergedFreeBusy.
2095 */
2096 public static final String MergedFreeBusy = "MergedFreeBusy";
2097
2098 /**
2099 * The Constant WorkingHours.
2100 */
2101 public static final String WorkingHours = "WorkingHours";
2102
2103 /**
2104 * The Constant WorkingPeriodArray.
2105 */
2106 public static final String WorkingPeriodArray = "WorkingPeriodArray";
2107
2108 /**
2109 * The Constant WorkingPeriod.
2110 */
2111 public static final String WorkingPeriod = "WorkingPeriod";
2112
2113 /**
2114 * The Constant StartTimeInMinutes.
2115 */
2116 public static final String StartTimeInMinutes = "StartTimeInMinutes";
2117
2118 /**
2119 * The Constant EndTimeInMinutes.
2120 */
2121 public static final String EndTimeInMinutes = "EndTimeInMinutes";
2122
2123 /**
2124 * The Constant GoodThreshold.
2125 */
2126 public static final String GoodThreshold = "GoodThreshold";
2127
2128 /**
2129 * The Constant MaximumResultsByDay.
2130 */
2131 public static final String MaximumResultsByDay = "MaximumResultsByDay";
2132
2133 /**
2134 * The Constant MaximumNonWorkHourResultsByDay.
2135 */
2136 public static final String MaximumNonWorkHourResultsByDay =
2137 "MaximumNonWorkHourResultsByDay";
2138
2139 /**
2140 * The Constant MeetingDurationInMinutes.
2141 */
2142 public static final String MeetingDurationInMinutes =
2143 "MeetingDurationInMinutes";
2144
2145 /**
2146 * The Constant MinimumSuggestionQuality.
2147 */
2148 public static final String MinimumSuggestionQuality =
2149 "MinimumSuggestionQuality";
2150
2151 /**
2152 * The Constant DetailedSuggestionsWindow.
2153 */
2154 public static final String DetailedSuggestionsWindow =
2155 "DetailedSuggestionsWindow";
2156
2157 /**
2158 * The Constant CurrentMeetingTime.
2159 */
2160 public static final String CurrentMeetingTime = "CurrentMeetingTime";
2161
2162 /**
2163 * The Constant GlobalObjectId.
2164 */
2165 public static final String GlobalObjectId = "GlobalObjectId";
2166
2167 /**
2168 * The Constant SuggestionDayResultArray.
2169 */
2170 public static final String SuggestionDayResultArray =
2171 "SuggestionDayResultArray";
2172
2173 /**
2174 * The Constant SuggestionDayResult.
2175 */
2176 public static final String SuggestionDayResult = "SuggestionDayResult";
2177
2178 /**
2179 * The Constant Date.
2180 */
2181 public static final String Date = "Date";
2182
2183 /**
2184 * The Constant DayQuality.
2185 */
2186 public static final String DayQuality = "DayQuality";
2187
2188 /**
2189 * The Constant SuggestionArray.
2190 */
2191 public static final String SuggestionArray = "SuggestionArray";
2192
2193 /**
2194 * The Constant Suggestion.
2195 */
2196 public static final String Suggestion = "Suggestion";
2197
2198 /**
2199 * The Constant MeetingTime.
2200 */
2201 public static final String MeetingTime = "MeetingTime";
2202
2203 /**
2204 * The Constant IsWorkTime.
2205 */
2206 public static final String IsWorkTime = "IsWorkTime";
2207
2208 /**
2209 * The Constant SuggestionQuality.
2210 */
2211 public static final String SuggestionQuality = "SuggestionQuality";
2212
2213 /**
2214 * The Constant AttendeeConflictDataArray.
2215 */
2216 public static final String AttendeeConflictDataArray =
2217 "AttendeeConflictDataArray";
2218
2219 /**
2220 * The Constant UnknownAttendeeConflictData.
2221 */
2222 public static final String UnknownAttendeeConflictData =
2223 "UnknownAttendeeConflictData";
2224
2225 /**
2226 * The Constant TooBigGroupAttendeeConflictData.
2227 */
2228 public static final String TooBigGroupAttendeeConflictData =
2229 "TooBigGroupAttendeeConflictData";
2230
2231 /**
2232 * The Constant IndividualAttendeeConflictData.
2233 */
2234 public static final String IndividualAttendeeConflictData =
2235 "IndividualAttendeeConflictData";
2236
2237 /**
2238 * The Constant GroupAttendeeConflictData.
2239 */
2240 public static final String GroupAttendeeConflictData =
2241 "GroupAttendeeConflictData";
2242
2243 /**
2244 * The Constant NumberOfMembers.
2245 */
2246 public static final String NumberOfMembers = "NumberOfMembers";
2247
2248 /**
2249 * The Constant NumberOfMembersAvailable.
2250 */
2251 public static final String NumberOfMembersAvailable =
2252 "NumberOfMembersAvailable";
2253
2254 /**
2255 * The Constant NumberOfMembersWithConflict.
2256 */
2257 public static final String NumberOfMembersWithConflict =
2258 "NumberOfMembersWithConflict";
2259
2260 /**
2261 * The Constant NumberOfMembersWithNoData.
2262 */
2263 public static final String NumberOfMembersWithNoData =
2264 "NumberOfMembersWithNoData";
2265
2266 /**
2267 * The Constant SourceIds.
2268 */
2269 public static final String SourceIds = "SourceIds";
2270
2271 /**
2272 * The Constant AlternateId.
2273 */
2274 public static final String AlternateId = "AlternateId";
2275
2276 /**
2277 * The Constant AlternatePublicFolderId.
2278 */
2279 public static final String AlternatePublicFolderId =
2280 "AlternatePublicFolderId";
2281
2282 /**
2283 * The Constant AlternatePublicFolderItemId.
2284 */
2285 public static final String AlternatePublicFolderItemId =
2286 "AlternatePublicFolderItemId";
2287
2288 /**
2289 * The Constant DelegatePermissions.
2290 */
2291 public static final String DelegatePermissions = "DelegatePermissions";
2292
2293 /**
2294 * The Constant ReceiveCopiesOfMeetingMessages.
2295 */
2296 public static final String ReceiveCopiesOfMeetingMessages =
2297 "ReceiveCopiesOfMeetingMessages";
2298
2299 /**
2300 * The Constant ViewPrivateItems.
2301 */
2302 public static final String ViewPrivateItems = "ViewPrivateItems";
2303
2304 /**
2305 * The Constant CalendarFolderPermissionLevel.
2306 */
2307 public static final String CalendarFolderPermissionLevel =
2308 "CalendarFolderPermissionLevel";
2309
2310 /**
2311 * The Constant TasksFolderPermissionLevel.
2312 */
2313 public static final String TasksFolderPermissionLevel =
2314 "TasksFolderPermissionLevel";
2315
2316 /**
2317 * The Constant InboxFolderPermissionLevel.
2318 */
2319 public static final String InboxFolderPermissionLevel =
2320 "InboxFolderPermissionLevel";
2321
2322 /**
2323 * The Constant ContactsFolderPermissionLevel.
2324 */
2325 public static final String ContactsFolderPermissionLevel =
2326 "ContactsFolderPermissionLevel";
2327
2328 /**
2329 * The Constant NotesFolderPermissionLevel.
2330 */
2331 public static final String NotesFolderPermissionLevel =
2332 "NotesFolderPermissionLevel";
2333
2334 /**
2335 * The Constant JournalFolderPermissionLevel.
2336 */
2337 public static final String JournalFolderPermissionLevel =
2338 "JournalFolderPermissionLevel";
2339
2340 /**
2341 * The Constant DelegateUser.
2342 */
2343 public static final String DelegateUser = "DelegateUser";
2344
2345 /**
2346 * The Constant DelegateUsers.
2347 */
2348 public static final String DelegateUsers = "DelegateUsers";
2349
2350 /**
2351 * The Constant DeliverMeetingRequests.
2352 */
2353 public static final String DeliverMeetingRequests =
2354 "DeliverMeetingRequests";
2355
2356 /**
2357 * The Constant MessageXml.
2358 */
2359 public static final String MessageXml = "MessageXml";
2360
2361 /**
2362 * The Constant UserConfiguration.
2363 */
2364 public static final String UserConfiguration = "UserConfiguration";
2365
2366 /**
2367 * The Constant UserConfigurationName.
2368 */
2369 public static final String UserConfigurationName = "UserConfigurationName";
2370
2371 /**
2372 * The Constant UserConfigurationProperties.
2373 */
2374 public static final String UserConfigurationProperties =
2375 "UserConfigurationProperties";
2376
2377 /**
2378 * The Constant Dictionary.
2379 */
2380 public static final String Dictionary = "Dictionary";
2381
2382 /**
2383 * The Constant DictionaryEntry.
2384 */
2385 public static final String DictionaryEntry = "DictionaryEntry";
2386
2387 /**
2388 * The Constant DictionaryKey.
2389 */
2390 public static final String DictionaryKey = "DictionaryKey";
2391
2392 /**
2393 * The Constant DictionaryValue.
2394 */
2395 public static final String DictionaryValue = "DictionaryValue";
2396
2397 /**
2398 * The Constant XmlData.
2399 */
2400 public static final String XmlData = "XmlData";
2401
2402 /**
2403 * The Constant BinaryData.
2404 */
2405 public static final String BinaryData = "BinaryData";
2406
2407 /**
2408 * The Constant FilterHtmlContent.
2409 */
2410 public static final String FilterHtmlContent = "FilterHtmlContent";
2411
2412 /**
2413 * The Constant ConvertHtmlCodePageToUTF8.
2414 */
2415 public static final String ConvertHtmlCodePageToUTF8 =
2416 "ConvertHtmlCodePageToUTF8";
2417
2418 /**
2419 * The Constant UnknownEntries.
2420 */
2421 public static final String UnknownEntries = "UnknownEntries";
2422
2423 /**
2424 * The Constant UnknownEntry.
2425 */
2426 public static final String UnknownEntry = "UnknownEntry";
2427
2428 /**
2429 * The Constant PhoneCallId.
2430 */
2431 public static final String PhoneCallId = "PhoneCallId";
2432
2433 /**
2434 * The Constant DialString.
2435 */
2436 public static final String DialString = "DialString";
2437
2438 /**
2439 * The Constant PhoneCallInformation.
2440 */
2441 public static final String PhoneCallInformation = "PhoneCallInformation";
2442
2443 /**
2444 * The Constant PhoneCallState.
2445 */
2446 public static final String PhoneCallState = "PhoneCallState";
2447
2448 /**
2449 * The Constant ConnectionFailureCause.
2450 */
2451 public static final String ConnectionFailureCause =
2452 "ConnectionFailureCause";
2453
2454 /**
2455 * The Constant SIPResponseCode.
2456 */
2457 public static final String SIPResponseCode = "SIPResponseCode";
2458
2459 /**
2460 * The Constant SIPResponseText.
2461 */
2462 public static final String SIPResponseText = "SIPResponseText";
2463
2464 /**
2465 * The Constant WebClientReadFormQueryString.
2466 */
2467 public static final String WebClientReadFormQueryString =
2468 "WebClientReadFormQueryString";
2469
2470 /**
2471 * The Constant WebClientEditFormQueryString.
2472 */
2473 public static final String WebClientEditFormQueryString =
2474 "WebClientEditFormQueryString";
2475
2476 /**
2477 * The Constant Ids.
2478 */
2479 public static final String Ids = "Ids";
2480
2481 /**
2482 * The Constant Id.
2483 */
2484 public static final String Id = "Id";
2485
2486 /**
2487 * The Constant TimeZoneDefinitions.
2488 */
2489 public static final String TimeZoneDefinitions = "TimeZoneDefinitions";
2490
2491 /**
2492 * The Constant TimeZoneDefinition.
2493 */
2494 public static final String TimeZoneDefinition = "TimeZoneDefinition";
2495
2496 /**
2497 * The Constant Periods.
2498 */
2499 public static final String Periods = "Periods";
2500
2501 /**
2502 * The Constant Period.
2503 */
2504 public static final String Period = "Period";
2505
2506 /**
2507 * The Constant TransitionsGroups.
2508 */
2509 public static final String TransitionsGroups = "TransitionsGroups";
2510
2511 /**
2512 * The Constant TransitionsGroup.
2513 */
2514 public static final String TransitionsGroup = "TransitionsGroup";
2515
2516 /**
2517 * The Constant Transitions.
2518 */
2519 public static final String Transitions = "Transitions";
2520
2521 /**
2522 * The Constant Transition.
2523 */
2524 public static final String Transition = "Transition";
2525
2526 /**
2527 * The Constant AbsoluteDateTransition.
2528 */
2529 public static final String AbsoluteDateTransition =
2530 "AbsoluteDateTransition";
2531
2532 /**
2533 * The Constant RecurringDayTransition.
2534 */
2535 public static final String RecurringDayTransition =
2536 "RecurringDayTransition";
2537
2538 /**
2539 * The Constant RecurringDateTransition.
2540 */
2541 public static final String RecurringDateTransition =
2542 "RecurringDateTransition";
2543
2544 /**
2545 * The Constant DateTime.
2546 */
2547 public static final String DateTime = "DateTime";
2548
2549 /**
2550 * The Constant TimeOffset.
2551 */
2552 public static final String TimeOffset = "TimeOffset";
2553
2554 /**
2555 * The Constant Day.
2556 */
2557 public static final String Day = "Day";
2558
2559 /**
2560 * The Constant TimeZoneContext.
2561 */
2562 public static final String TimeZoneContext = "TimeZoneContext";
2563
2564 /**
2565 * The Constant StartTimeZone.
2566 */
2567 public static final String StartTimeZone = "StartTimeZone";
2568
2569 /**
2570 * The Constant EndTimeZone.
2571 */
2572 public static final String EndTimeZone = "EndTimeZone";
2573
2574 /**
2575 * The Constant ReceivedBy.
2576 */
2577 public static final String ReceivedBy = "ReceivedBy";
2578
2579 /**
2580 * The Constant ReceivedRepresenting.
2581 */
2582 public static final String ReceivedRepresenting = "ReceivedRepresenting";
2583
2584 /**
2585 * The Constant Uid.
2586 */
2587 public static final String Uid = "UID";
2588
2589 /**
2590 * The Constant RecurrenceId.
2591 */
2592 public static final String RecurrenceId = "RecurrenceId";
2593
2594 /**
2595 * The Constant DateTimeStamp.
2596 */
2597 public static final String DateTimeStamp = "DateTimeStamp";
2598
2599 /**
2600 * The Constant IsInline.
2601 */
2602 public static final String IsInline = "IsInline";
2603
2604 /**
2605 * The Constant IsContactPhoto.
2606 */
2607 public static final String IsContactPhoto = "IsContactPhoto";
2608
2609 /**
2610 * The Constant QueryString.
2611 */
2612 public static final String QueryString = "QueryString";
2613
2614 /**
2615 * The Constant CalendarEventDetails.
2616 */
2617 public static final String CalendarEventDetails = "CalendarEventDetails";
2618
2619 /**
2620 * The Constant ID.
2621 */
2622 public static final String ID = "ID";
2623
2624 /**
2625 * The Constant IsException.
2626 */
2627 public static final String IsException = "IsException";
2628
2629 /**
2630 * The Constant IsReminderSet.
2631 */
2632 public static final String IsReminderSet = "IsReminderSet";
2633
2634 /**
2635 * The Constant IsPrivate.
2636 */
2637 public static final String IsPrivate = "IsPrivate";
2638
2639 /**
2640 * The Constant FirstDayOfWeek.
2641 */
2642 public static final String FirstDayOfWeek = "FirstDayOfWeek";
2643
2644 /**
2645 * The Constant Verb.
2646 */
2647 public static final String Verb = "Verb";
2648
2649 /**
2650 * The Constant Parameter.
2651 */
2652 public static final String Parameter = "Parameter";
2653
2654 /**
2655 * The Constant ReturnValue.
2656 */
2657 public static final String ReturnValue = "ReturnValue";
2658
2659 /**
2660 * The Constant ReturnNewItemIds.
2661 */
2662 public static final String ReturnNewItemIds = "ReturnNewItemIds";
2663
2664 /**
2665 * The Constant DateTimePrecision.
2666 */
2667 public static final String DateTimePrecision = "DateTimePrecision";
2668
2669 /**
2670 * The Constant PasswordExpirationDate.
2671 */
2672 public static final String PasswordExpirationDate = "PasswordExpirationDate";
2673
2674 /**
2675 * The Constant StoreEntryId.
2676 */
2677 public static final String StoreEntryId = "StoreEntryId";
2678
2679 // Conversations
2680 /**
2681 * The Constant Conversations.
2682 */
2683 public static final String Conversations = "Conversations";
2684
2685 /**
2686 * The Constant Conversation.
2687 */
2688 public static final String Conversation = "Conversation";
2689
2690 /**
2691 * The Constant UniqueRecipients.
2692 */
2693 public static final String UniqueRecipients = "UniqueRecipients";
2694
2695 /**
2696 * The Constant GlobalUniqueRecipients.
2697 */
2698 public static final String GlobalUniqueRecipients =
2699 "GlobalUniqueRecipients";
2700
2701 /**
2702 * The Constant UniqueUnreadSenders.
2703 */
2704 public static final String UniqueUnreadSenders = "UniqueUnreadSenders";
2705
2706 /**
2707 * The Constant GlobalUniqueUnreadSenders.
2708 */
2709 public static final String GlobalUniqueUnreadSenders =
2710 "GlobalUniqueUnreadSenders";
2711
2712 /**
2713 * The Constant UniqueSenders.
2714 */
2715 public static final String UniqueSenders = "UniqueSenders";
2716
2717 /**
2718 * The Constant GlobalUniqueSenders.
2719 */
2720 public static final String GlobalUniqueSenders = "GlobalUniqueSenders";
2721
2722 /**
2723 * The Constant LastDeliveryTime.
2724 */
2725 public static final String LastDeliveryTime = "LastDeliveryTime";
2726
2727 /**
2728 * The Constant GlobalLastDeliveryTime.
2729 */
2730 public static final String GlobalLastDeliveryTime =
2731 "GlobalLastDeliveryTime";
2732
2733 /**
2734 * The Constant GlobalCategories.
2735 */
2736 public static final String GlobalCategories = "GlobalCategories";
2737
2738 /**
2739 * The Constant FlagStatus.
2740 */
2741 public static final String FlagStatus = "FlagStatus";
2742
2743 /**
2744 * The Constant GlobalFlagStatus.
2745 */
2746 public static final String GlobalFlagStatus = "GlobalFlagStatus";
2747
2748 /**
2749 * The Constant GlobalHasAttachments.
2750 */
2751 public static final String GlobalHasAttachments = "GlobalHasAttachments";
2752
2753 /**
2754 * The Constant MessageCount.
2755 */
2756 public static final String MessageCount = "MessageCount";
2757
2758 /**
2759 * The Constant GlobalMessageCount.
2760 */
2761 public static final String GlobalMessageCount = "GlobalMessageCount";
2762
2763 /**
2764 * The Constant GlobalUnreadCount.
2765 */
2766 public static final String GlobalUnreadCount = "GlobalUnreadCount";
2767
2768 /**
2769 * The Constant GlobalSize.
2770 */
2771 public static final String GlobalSize = "GlobalSize";
2772
2773 /**
2774 * The Constant ItemClasses.
2775 */
2776 public static final String ItemClasses = "ItemClasses";
2777
2778 /**
2779 * The Constant GlobalItemClasses.
2780 */
2781 public static final String GlobalItemClasses = "GlobalItemClasses";
2782
2783 /**
2784 * The Constant GlobalImportance.
2785 */
2786 public static final String GlobalImportance = "GlobalImportance";
2787
2788 /**
2789 * The Constant GlobalItemIds.
2790 */
2791 public static final String GlobalItemIds = "GlobalItemIds";
2792
2793 // ApplyConversationAction
2794
2795 /**
2796 * The Constant ApplyConversationAction.
2797 */
2798 public static final String ApplyConversationAction =
2799 "ApplyConversationAction";
2800
2801 /**
2802 * The Constant ConversationActions.
2803 */
2804 public static final String ConversationActions = "ConversationActions";
2805
2806 /**
2807 * The Constant ConversationAction.
2808 */
2809 public static final String ConversationAction = "ConversationAction";
2810
2811 /**
2812 * The Constant ApplyConversationActionResponse.
2813 */
2814 public static final String ApplyConversationActionResponse =
2815 "ApplyConversationActionResponse";
2816
2817 /**
2818 * The Constant ApplyConversationActionResponseMessage.
2819 */
2820 public static final String ApplyConversationActionResponseMessage =
2821 "ApplyConversationActionResponseMessage";
2822
2823 /**
2824 * The Constant EnableAlwaysDelete.
2825 */
2826 public static final String EnableAlwaysDelete = "EnableAlwaysDelete";
2827
2828 /**
2829 * The Constant ProcessRightAway.
2830 */
2831 public static final String ProcessRightAway = "ProcessRightAway";
2832
2833 /**
2834 * The Constant DestinationFolderId.
2835 */
2836 public static final String DestinationFolderId = "DestinationFolderId";
2837
2838 /**
2839 * The Constant ContextFolderId.
2840 */
2841 public static final String ContextFolderId = "ContextFolderId";
2842
2843 /**
2844 * The Constant ConversationLastSyncTime.
2845 */
2846 public static final String ConversationLastSyncTime =
2847 "ConversationLastSyncTime";
2848
2849 /**
2850 * The Constant AlwaysCategorize.
2851 */
2852 public static final String AlwaysCategorize = "AlwaysCategorize";
2853
2854 /**
2855 * The Constant AlwaysDelete.
2856 */
2857 public static final String AlwaysDelete = "AlwaysDelete";
2858
2859 /**
2860 * The Constant AlwaysMove.
2861 */
2862 public static final String AlwaysMove = "AlwaysMove";
2863
2864 /**
2865 * The Constant Move.
2866 */
2867 public static final String Move = "Move";
2868
2869 /**
2870 * The Constant Copy.
2871 */
2872 public static final String Copy = "Copy";
2873
2874 /**
2875 * The Constant SetReadState.
2876 */
2877 public static final String SetReadState = "SetReadState";
2878
2879 /**
2880 * The Constant DeleteType.
2881 */
2882 public static final String DeleteType = "DeleteType";
2883 // RoomList & Room
2884
2885 /**
2886 * The Constant RoomLists.
2887 */
2888 public static final String RoomLists = "RoomLists";
2889
2890 /**
2891 * The Constant Rooms.
2892 */
2893 public static final String Rooms = "Rooms";
2894
2895 /**
2896 * The Constant Room.
2897 */
2898 public static final String Room = "Room";
2899
2900 /**
2901 * The Constant RoomList.
2902 */
2903 public static final String RoomList = "RoomList";
2904
2905 /**
2906 * The Constant RoomId.
2907 */
2908 public static final String RoomId = "Id";
2909
2910 // Autodiscover
2911
2912 /**
2913 * The Constant Autodiscover.
2914 */
2915 public static final String Autodiscover = "Autodiscover";
2916
2917 /**
2918 * The Constant BinarySecret.
2919 */
2920 public static final String BinarySecret = "BinarySecret";
2921
2922 /**
2923 * The Constant Response.
2924 */
2925 public static final String Response = "Response";
2926
2927 /**
2928 * The Constant User.
2929 */
2930 public static final String User = "User";
2931
2932 /**
2933 * The Constant LegacyDN.
2934 */
2935 public static final String LegacyDN = "LegacyDN";
2936
2937 /**
2938 * The Constant DeploymentId.
2939 */
2940 public static final String DeploymentId = "DeploymentId";
2941
2942 /**
2943 * The Constant Account.
2944 */
2945 public static final String Account = "Account";
2946
2947 /**
2948 * The Constant AccountType.
2949 */
2950 public static final String AccountType = "AccountType";
2951
2952 /**
2953 * The Constant Action.
2954 */
2955 public static final String Action = "Action";
2956
2957 /**
2958 * The Constant To.
2959 */
2960 public static final String To = "To";
2961
2962 /**
2963 * The Constant RedirectAddr.
2964 */
2965 public static final String RedirectAddr = "RedirectAddr";
2966
2967 /**
2968 * The Constant RedirectUrl.
2969 */
2970 public static final String RedirectUrl = "RedirectUrl";
2971
2972 /**
2973 * The Constant Protocol.
2974 */
2975 public static final String Protocol = "Protocol";
2976
2977 /**
2978 * The Constant Type.
2979 */
2980 public static final String Type = "Type";
2981
2982 /**
2983 * The Constant Server.
2984 */
2985 public static final String Server = "Server";
2986
2987 /**
2988 * The Constant ServerDN.
2989 */
2990 public static final String ServerDN = "ServerDN";
2991
2992 /**
2993 * The Constant ServerVersion.
2994 */
2995 public static final String ServerVersion = "ServerVersion";
2996
2997 /**
2998 * The Constant ServerVersionInfo.
2999 */
3000 public static final String ServerVersionInfo = "ServerVersionInfo";
3001
3002 /**
3003 * The Constant AD.
3004 */
3005 public static final String AD = "AD";
3006
3007 /**
3008 * The Constant AuthPackage.
3009 */
3010 public static final String AuthPackage = "AuthPackage";
3011
3012 /**
3013 * The Constant MdbDN.
3014 */
3015 public static final String MdbDN = "MdbDN";
3016
3017 /**
3018 * The Constant EWSUrl.
3019 */
3020 public static final String EWSUrl = "EWSUrl";
3021
3022 /**
3023 * The Constant ASUrl.
3024 */
3025 public static final String ASUrl = "ASUrl";
3026
3027 /**
3028 * The Constant OOFUrl.
3029 */
3030 public static final String OOFUrl = "OOFUrl";
3031
3032 /**
3033 * The Constant UMUrl.
3034 */
3035 public static final String UMUrl = "UMUrl";
3036
3037 /**
3038 * The Constant OABUrl.
3039 */
3040 public static final String OABUrl = "OABUrl";
3041
3042 /**
3043 * The Constant Internal.
3044 */
3045 public static final String Internal = "Internal";
3046
3047 /**
3048 * The Constant External.
3049 */
3050 public static final String External = "External";
3051
3052 /**
3053 * The Constant OWAUrl.
3054 */
3055 public static final String OWAUrl = "OWAUrl";
3056
3057 /**
3058 * The Constant Error.
3059 */
3060 public static final String Error = "Error";
3061
3062 /**
3063 * The Constant ErrorCode.
3064 */
3065 public static final String ErrorCode = "ErrorCode";
3066
3067 /**
3068 * The Constant DebugData.
3069 */
3070 public static final String DebugData = "DebugData";
3071
3072 /**
3073 * The Constant Users.
3074 */
3075 public static final String Users = "Users";
3076
3077 /**
3078 * The Constant RequestedSettings.
3079 */
3080 public static final String RequestedSettings = "RequestedSettings";
3081
3082 /**
3083 * The Constant Setting.
3084 */
3085 public static final String Setting = "Setting";
3086
3087 /**
3088 * The Constant GetUserSettingsRequestMessage.
3089 */
3090 public static final String GetUserSettingsRequestMessage =
3091 "GetUserSettingsRequestMessage";
3092
3093 /**
3094 * The Constant RequestedServerVersion.
3095 */
3096 public static final String RequestedServerVersion =
3097 "RequestedServerVersion";
3098
3099 /**
3100 * The Constant Request.
3101 */
3102 public static final String Request = "Request";
3103
3104 /**
3105 * The Constant RedirectTarget.
3106 */
3107 public static final String RedirectTarget = "RedirectTarget";
3108
3109 /**
3110 * The Constant UserSettings.
3111 */
3112 public static final String UserSettings = "UserSettings";
3113
3114 /**
3115 * The Constant UserSettingErrors.
3116 */
3117 public static final String UserSettingErrors = "UserSettingErrors";
3118
3119 /**
3120 * The Constant GetUserSettingsResponseMessage.
3121 */
3122 public static final String GetUserSettingsResponseMessage =
3123 "GetUserSettingsResponseMessage";
3124
3125 /**
3126 * The Constant ErrorMessage.
3127 */
3128 public static final String ErrorMessage = "ErrorMessage";
3129
3130 /**
3131 * The Constant UserResponse.
3132 */
3133 public static final String UserResponse = "UserResponse";
3134
3135 /**
3136 * The Constant UserResponses.
3137 */
3138 public static final String UserResponses = "UserResponses";
3139
3140 /**
3141 * The Constant UserSettingError.
3142 */
3143 public static final String UserSettingError = "UserSettingError";
3144
3145 /**
3146 * The Constant Domain.
3147 */
3148 public static final String Domain = "Domain";
3149
3150 /**
3151 * The Constant Domains.
3152 */
3153 public static final String Domains = "Domains";
3154
3155 /**
3156 * The Constant DomainResponse.
3157 */
3158 public static final String DomainResponse = "DomainResponse";
3159
3160 /**
3161 * The Constant DomainResponses.
3162 */
3163 public static final String DomainResponses = "DomainResponses";
3164
3165 /**
3166 * The Constant DomainSetting.
3167 */
3168 public static final String DomainSetting = "DomainSetting";
3169
3170 /**
3171 * The Constant DomainSettings.
3172 */
3173 public static final String DomainSettings = "DomainSettings";
3174
3175 /**
3176 * The Constant DomainStringSetting.
3177 */
3178 public static final String DomainStringSetting = "DomainStringSetting";
3179
3180 /**
3181 * The Constant DomainSettingError.
3182 */
3183 public static final String DomainSettingError = "DomainSettingError";
3184
3185 /**
3186 * The Constant DomainSettingErrors.
3187 */
3188 public static final String DomainSettingErrors = "DomainSettingErrors";
3189
3190 /**
3191 * The Constant GetDomainSettingsRequestMessage.
3192 */
3193 public static final String GetDomainSettingsRequestMessage =
3194 "GetDomainSettingsRequestMessage";
3195
3196 /**
3197 * The Constant GetDomainSettingsResponseMessage.
3198 */
3199 public static final String GetDomainSettingsResponseMessage =
3200 "GetDomainSettingsResponseMessage";
3201
3202 /**
3203 * The Constant SettingName.
3204 */
3205 public static final String SettingName = "SettingName";
3206
3207 /**
3208 * The Constant UserSetting.
3209 */
3210 public static final String UserSetting = "UserSetting";
3211
3212 /**
3213 * The Constant StringSetting.
3214 */
3215 public static final String StringSetting = "StringSetting";
3216
3217 /**
3218 * The Constant WebClientUrlCollectionSetting.
3219 */
3220 public static final String WebClientUrlCollectionSetting =
3221 "WebClientUrlCollectionSetting";
3222
3223 /**
3224 * The Constant WebClientUrls.
3225 */
3226 public static final String WebClientUrls = "WebClientUrls";
3227
3228 /**
3229 * The Constant WebClientUrl.
3230 */
3231 public static final String WebClientUrl = "WebClientUrl";
3232
3233 /**
3234 * The Constant AuthenticationMethods.
3235 */
3236 public static final String AuthenticationMethods = "AuthenticationMethods";
3237
3238 /**
3239 * The Constant Url.
3240 */
3241 public static final String Url = "Url";
3242
3243 /**
3244 * The Constant AlternateMailboxCollectionSetting.
3245 */
3246 public static final String AlternateMailboxCollectionSetting =
3247 "AlternateMailboxCollectionSetting";
3248
3249 /**
3250 * The Constant AlternateMailboxes.
3251 */
3252 public static final String AlternateMailboxes = "AlternateMailboxes";
3253
3254 /**
3255 * The Constant AlternateMailbox.
3256 */
3257 public static final String AlternateMailbox = "AlternateMailbox";
3258
3259 /**
3260 * The Constant ProtocolConnectionCollectionSetting.
3261 */
3262 public static final String ProtocolConnectionCollectionSetting =
3263 "ProtocolConnectionCollectionSetting";
3264
3265 /**
3266 * The Constant ProtocolConnections.
3267 */
3268 public static final String ProtocolConnections = "ProtocolConnections";
3269
3270 /**
3271 * The Constant ProtocolConnection.
3272 */
3273 public static final String ProtocolConnection = "ProtocolConnection";
3274
3275 /**
3276 * The Constant EncryptionMethod.
3277 */
3278 public static final String EncryptionMethod = "EncryptionMethod";
3279
3280 /**
3281 * The Constant Hostname.
3282 */
3283 public static final String Hostname = "Hostname";
3284
3285 /**
3286 * The Constant Port.
3287 */
3288 public static final String Port = "Port";
3289
3290 /**
3291 * The Constant Version.
3292 */
3293 public static final String Version = "Version";
3294
3295 /**
3296 * The Constant MajorVersion.
3297 */
3298 public static final String MajorVersion = "MajorVersion";
3299
3300 /**
3301 * The Constant MinorVersion.
3302 */
3303 public static final String MinorVersion = "MinorVersion";
3304
3305 /**
3306 * The Constant MajorBuildNumber.
3307 */
3308 public static final String MajorBuildNumber = "MajorBuildNumber";
3309
3310 /**
3311 * The Constant MinorBuildNumber.
3312 */
3313 public static final String MinorBuildNumber = "MinorBuildNumber";
3314
3315 /**
3316 * The Constant RequestedVersion.
3317 */
3318 public static final String RequestedVersion = "RequestedVersion";
3319
3320 /**
3321 * The Constant PublicFolderServer.
3322 */
3323 public static final String PublicFolderServer = "PublicFolderServer";
3324
3325 /**
3326 * The Constant Ssl.
3327 */
3328 public static final String Ssl = "SSL";
3329
3330 /**
3331 * The Constant SharingUrl.
3332 */
3333 public static final String SharingUrl = "SharingUrl";
3334
3335 /**
3336 * The Constant EcpUrl.
3337 */
3338 public static final String EcpUrl = "EcpUrl";
3339
3340 /**
3341 * The Constant EcpUrl_um.
3342 */
3343 public static final String EcpUrl_um = "EcpUrl-um";
3344
3345 /**
3346 * The Constant EcpUrl_aggr.
3347 */
3348 public static final String EcpUrl_aggr = "EcpUrl-aggr";
3349
3350 /**
3351 * The Constant EcpUrl_sms.
3352 */
3353 public static final String EcpUrl_sms = "EcpUrl-sms";
3354
3355 /**
3356 * The Constant EcpUrl_mt.
3357 */
3358 public static final String EcpUrl_mt = "EcpUrl-mt";
3359
3360 /**
3361 * The Constant EcpUrl_ret.
3362 */
3363 public static final String EcpUrl_ret = "EcpUrl-ret";
3364
3365 /**
3366 * The Constant EcpUrl_publish.
3367 */
3368 public static final String EcpUrl_publish = "EcpUrl-publish";
3369
3370 /**
3371 * The Constant ExchangeRpcUrl.
3372 */
3373 public static final String ExchangeRpcUrl = "ExchangeRpcUrl";
3374
3375 /**
3376 * The Constant PartnerToken.
3377 */
3378 public static final String PartnerToken = "PartnerToken";
3379
3380 /**
3381 * The Constant PartnerTokenReference.
3382 */
3383 public static final String PartnerTokenReference = "PartnerTokenReference";
3384
3385 /**
3386 * The Constant GroupingInformation.
3387 */
3388 public static final String GroupingInformation = "GroupingInformation";
3389
3390 // InboxRule
3391 /**
3392 * The Constant MinorBuildNumber.
3393 */
3394 public static final String MailboxSmtpAddress = "MailboxSmtpAddress";
3395
3396 /**
3397 * The Constant RuleId.
3398 */
3399 public static final String RuleId = "RuleId";
3400
3401 /**
3402 * The Constant Priority.
3403 */
3404 public static final String Priority = "Priority";
3405
3406 /**
3407 * The Constant IsEnabled.
3408 */
3409 public static final String IsEnabled = "IsEnabled";
3410
3411 /**
3412 * The Constant IsNotSupported.
3413 */
3414 public static final String IsNotSupported = "IsNotSupported";
3415
3416 /**
3417 * The Constant IsInError.
3418 */
3419 public static final String IsInError = "IsInError";
3420
3421 /**
3422 * The Constant Conditions.
3423 */
3424 public static final String Conditions = "Conditions";
3425
3426 /**
3427 * The Constant Exceptions.
3428 */
3429 public static final String Exceptions = "Exceptions";
3430
3431 /**
3432 * The Constant Actions.
3433 */
3434 public static final String Actions = "Actions";
3435
3436 /**
3437 * The Constant InboxRules.
3438 */
3439 public static final String InboxRules = "InboxRules";
3440
3441 /**
3442 * The Constant Rule.
3443 */
3444 public static final String Rule = "Rule";
3445
3446 /**
3447 * The Constant OutlookRuleBlobExists.
3448 */
3449 public static final String OutlookRuleBlobExists = "OutlookRuleBlobExists";
3450
3451 /**
3452 * The Constant RemoveOutlookRuleBlob.
3453 */
3454 public static final String RemoveOutlookRuleBlob = "RemoveOutlookRuleBlob";
3455
3456 /**
3457 * The Constant ContainsBodyStrings.
3458 */
3459 public static final String ContainsBodyStrings = "ContainsBodyStrings";
3460
3461 /**
3462 * The Constant ContainsHeaderStrings.
3463 */
3464 public static final String ContainsHeaderStrings = "ContainsHeaderStrings";
3465
3466 /**
3467 * The Constant ContainsRecipientStrings.
3468 */
3469 public static final String ContainsRecipientStrings =
3470 "ContainsRecipientStrings";
3471
3472 /**
3473 * The Constant ContainsSenderStrings.
3474 */
3475 public static final String ContainsSenderStrings = "ContainsSenderStrings";
3476
3477 /**
3478 * The Constant ContainsSubjectOrBodyStrings.
3479 */
3480 public static final String ContainsSubjectOrBodyStrings =
3481 "ContainsSubjectOrBodyStrings";
3482
3483 /**
3484 * The Constant ContainsSubjectStrings.
3485 */
3486 public static final String ContainsSubjectStrings =
3487 "ContainsSubjectStrings";
3488
3489 /**
3490 * The Constant FlaggedForAction.
3491 */
3492 public static final String FlaggedForAction = "FlaggedForAction";
3493
3494 /**
3495 * The Constant FromAddresses.
3496 */
3497 public static final String FromAddresses = "FromAddresses";
3498
3499 /**
3500 * The Constant FromConnectedAccounts.
3501 */
3502 public static final String FromConnectedAccounts = "FromConnectedAccounts";
3503
3504 /**
3505 * The Constant IsApprovalRequest.
3506 */
3507 public static final String IsApprovalRequest = "IsApprovalRequest";
3508
3509 /**
3510 * The Constant IsAutomaticForward.
3511 */
3512 public static final String IsAutomaticForward = "IsAutomaticForward";
3513
3514 /**
3515 * The Constant IsAutomaticReply.
3516 */
3517 public static final String IsAutomaticReply = "IsAutomaticReply";
3518
3519 /**
3520 * The Constant IsEncrypted.
3521 */
3522 public static final String IsEncrypted = "IsEncrypted";
3523
3524 /**
3525 * The Constant IsMeetingRequest.
3526 */
3527 public static final String IsMeetingRequest = "IsMeetingRequest";
3528
3529 /**
3530 * The Constant IsMeetingResponse.
3531 */
3532 public static final String IsMeetingResponse = "IsMeetingResponse";
3533
3534 /**
3535 * The Constant IsNDR.
3536 */
3537 public static final String IsNDR = "IsNDR";
3538
3539 /**
3540 * The Constant IsPermissionControlled.
3541 */
3542 public static final String IsPermissionControlled =
3543 "IsPermissionControlled";
3544
3545 /**
3546 * The Constant IsSigned.
3547 */
3548 public static final String IsSigned = "IsSigned";
3549
3550 /**
3551 * The Constant IsVoicemail.
3552 */
3553 public static final String IsVoicemail = "IsVoicemail";
3554
3555 /**
3556 * The Constant IsReadReceipt.
3557 */
3558 public static final String IsReadReceipt = "IsReadReceipt";
3559
3560 /**
3561 * The Constant MessageClassifications.
3562 */
3563 public static final String MessageClassifications =
3564 "MessageClassifications";
3565
3566 /**
3567 * The Constant NotSentToMe.
3568 */
3569 public static final String NotSentToMe = "NotSentToMe";
3570
3571 /**
3572 * The Constant SentCcMe.
3573 */
3574 public static final String SentCcMe = "SentCcMe";
3575
3576 /**
3577 * The Constant SentOnlyToMe.
3578 */
3579 public static final String SentOnlyToMe = "SentOnlyToMe";
3580
3581 /**
3582 * The Constant SentToAddresses.
3583 */
3584 public static final String SentToAddresses = "SentToAddresses";
3585
3586 /**
3587 * The Constant SentToMe.
3588 */
3589 public static final String SentToMe = "SentToMe";
3590
3591 /**
3592 * The Constant SentToOrCcMe.
3593 */
3594 public static final String SentToOrCcMe = "SentToOrCcMe";
3595
3596 /**
3597 * The Constant WithinDateRange.
3598 */
3599 public static final String WithinDateRange = "WithinDateRange";
3600
3601 /**
3602 * The Constant WithinSizeRange.
3603 */
3604 public static final String WithinSizeRange = "WithinSizeRange";
3605
3606 /**
3607 * The Constant MinimumSize.
3608 */
3609 public static final String MinimumSize = "MinimumSize";
3610
3611 /**
3612 * The Constant MaximumSize.
3613 */
3614 public static final String MaximumSize = "MaximumSize";
3615
3616 /**
3617 * The Constant StartDateTime.
3618 */
3619 public static final String StartDateTime = "StartDateTime";
3620
3621 /**
3622 * The Constant EndDateTime.
3623 */
3624 public static final String EndDateTime = "EndDateTime";
3625
3626 /**
3627 * The Constant AssignCategories.
3628 */
3629 public static final String AssignCategories = "AssignCategories";
3630
3631 /**
3632 * The Constant CopyToFolder.
3633 */
3634 public static final String CopyToFolder = "CopyToFolder";
3635
3636 /**
3637 * The Constant FlagMessage.
3638 */
3639 public static final String FlagMessage = "FlagMessage";
3640
3641 /**
3642 * The Constant ForwardAsAttachmentToRecipients.
3643 */
3644 public static final String ForwardAsAttachmentToRecipients =
3645 "ForwardAsAttachmentToRecipients";
3646
3647 /**
3648 * The Constant ForwardToRecipients.
3649 */
3650 public static final String ForwardToRecipients = "ForwardToRecipients";
3651
3652 /**
3653 * The Constant MarkImportance.
3654 */
3655 public static final String MarkImportance = "MarkImportance";
3656
3657 /**
3658 * The Constant MarkAsRead.
3659 */
3660 public static final String MarkAsRead = "MarkAsRead";
3661
3662 /**
3663 * The Constant MoveToFolder.
3664 */
3665 public static final String MoveToFolder = "MoveToFolder";
3666
3667 /**
3668 * The Constant PermanentDelete.
3669 */
3670 public static final String PermanentDelete = "PermanentDelete";
3671
3672 /**
3673 * The Constant RedirectToRecipients.
3674 */
3675 public static final String RedirectToRecipients = "RedirectToRecipients";
3676
3677 /**
3678 * The Constant SendSMSAlertToRecipients.
3679 */
3680 public static final String SendSMSAlertToRecipients =
3681 "SendSMSAlertToRecipients";
3682
3683 /**
3684 * The Constant ServerReplyWithMessage.
3685 */
3686 public static final String ServerReplyWithMessage =
3687 "ServerReplyWithMessage";
3688
3689 /**
3690 * The Constant StopProcessingRules.
3691 */
3692 public static final String StopProcessingRules = "StopProcessingRules";
3693
3694 /**
3695 * The Constant CreateRuleOperation.
3696 */
3697 public static final String CreateRuleOperation = "CreateRuleOperation";
3698
3699 /**
3700 * The Constant SetRuleOperation.
3701 */
3702 public static final String SetRuleOperation = "SetRuleOperation";
3703
3704 /**
3705 * The Constant DeleteRuleOperation.
3706 */
3707 public static final String DeleteRuleOperation = "DeleteRuleOperation";
3708
3709 /**
3710 * The Constant Operations.
3711 */
3712 public static final String Operations = "Operations";
3713
3714 /**
3715 * The Constant RuleOperationErrors.
3716 */
3717 public static final String RuleOperationErrors = "RuleOperationErrors";
3718
3719 /**
3720 * The Constant RuleOperationError.
3721 */
3722 public static final String RuleOperationError = "RuleOperationError";
3723
3724 /**
3725 * The Constant OperationIndex.
3726 */
3727 public static final String OperationIndex = "OperationIndex";
3728
3729 /**
3730 * The Constant ValidationErrors.
3731 */
3732 public static final String ValidationErrors = "ValidationErrors";
3733
3734 /**
3735 * The Constant FieldValue.
3736 */
3737 public static final String FieldValue = "FieldValue";
3738
3739 // Restrictions
3740 /**
3741 * The Constant Not.
3742 */
3743 public static final String Not = "Not";
3744
3745 /**
3746 * The Constant Bitmask.
3747 */
3748 public static final String Bitmask = "Bitmask";
3749
3750 /**
3751 * The Constant Constant.
3752 */
3753 public static final String Constant = "Constant";
3754
3755 /**
3756 * The Constant Restriction.
3757 */
3758 public static final String Restriction = "Restriction";
3759
3760 /**
3761 * The Constant Contains.
3762 */
3763 public static final String Contains = "Contains";
3764
3765 /**
3766 * The Constant Excludes.
3767 */
3768 public static final String Excludes = "Excludes";
3769
3770 /**
3771 * The Constant Exists.
3772 */
3773 public static final String Exists = "Exists";
3774
3775 /**
3776 * The Constant FieldURIOrConstant.
3777 */
3778 public static final String FieldURIOrConstant = "FieldURIOrConstant";
3779
3780 /**
3781 * The Constant And.
3782 */
3783 public static final String And = "And";
3784
3785 /**
3786 * The Constant Or.
3787 */
3788 public static final String Or = "Or";
3789
3790 /**
3791 * The Constant IsEqualTo.
3792 */
3793 public static final String IsEqualTo = "IsEqualTo";
3794
3795 /**
3796 * The Constant IsNotEqualTo.
3797 */
3798 public static final String IsNotEqualTo = "IsNotEqualTo";
3799
3800 /**
3801 * The Constant IsGreaterThan.
3802 */
3803 public static final String IsGreaterThan = "IsGreaterThan";
3804
3805 /**
3806 * The Constant IsGreaterThanOrEqualTo.
3807 */
3808 public static final String IsGreaterThanOrEqualTo =
3809 "IsGreaterThanOrEqualTo";
3810
3811 /**
3812 * The Constant IsLessThan.
3813 */
3814 public static final String IsLessThan = "IsLessThan";
3815
3816 /**
3817 * The Constant IsLessThanOrEqualTo.
3818 */
3819 public static final String IsLessThanOrEqualTo = "IsLessThanOrEqualTo";
3820
3821 //Directory only contact property
3822 /**
3823 * The Constant PhoneticFullName.
3824 */
3825 public static final String PhoneticFullName = "PhoneticFullName";
3826
3827 /**
3828 * The Constant PhoneticFirstName.
3829 */
3830 public static final String PhoneticFirstName = "PhoneticFirstName";
3831
3832 /**
3833 * The Constant PhoneticLastName.
3834 */
3835 public static final String PhoneticLastName = "PhoneticLastName";
3836
3837 /**
3838 * The Constant Alias.
3839 */
3840 public static final String Alias = "Alias";
3841
3842 /**
3843 * The Constant Notes.
3844 */
3845 public static final String Notes = "Notes";
3846
3847 /**
3848 * The Constant Photo.
3849 */
3850 public static final String Photo = "Photo";
3851
3852 /**
3853 * The Constant UserSMIMECertificate.
3854 */
3855 public static final String UserSMIMECertificate = "UserSMIMECertificate";
3856
3857 /**
3858 * The Constant MSExchangeCertificate.
3859 */
3860 public static final String MSExchangeCertificate = "MSExchangeCertificate";
3861
3862 /**
3863 * The Constant DirectoryId.
3864 */
3865 public static final String DirectoryId = "DirectoryId";
3866
3867 /**
3868 * The Constant ManagerMailbox.
3869 */
3870 public static final String ManagerMailbox = "ManagerMailbox";
3871
3872 /**
3873 * The Constant DirectReports.
3874 */
3875 public static final String DirectReports = "DirectReports";
3876
3877 // Request/response element names
3878 /**
3879 * The Constant ResponseMessage.
3880 */
3881 public static final String ResponseMessage = "ResponseMessage";
3882
3883 /**
3884 * The Constant ResponseMessages.
3885 */
3886 public static final String ResponseMessages = "ResponseMessages";
3887
3888 // FindConversation
3889 /**
3890 * The Constant FindConversation.
3891 */
3892 public static final String FindConversation = "FindConversation";
3893
3894 /**
3895 * The Constant FindConversationResponse.
3896 */
3897 public static final String FindConversationResponse =
3898 "FindConversationResponse";
3899
3900 /**
3901 * The Constant FindConversationResponseMessage.
3902 */
3903 public static final String FindConversationResponseMessage =
3904 "FindConversationResponseMessage";
3905
3906 // FindItem
3907 /**
3908 * The Constant FindItem.
3909 */
3910 public static final String FindItem = "FindItem";
3911
3912 /**
3913 * The Constant FindItemResponse.
3914 */
3915 public static final String FindItemResponse = "FindItemResponse";
3916
3917 /**
3918 * The Constant FindItemResponseMessage.
3919 */
3920 public static final String FindItemResponseMessage =
3921 "FindItemResponseMessage";
3922
3923 // GetItem
3924 /**
3925 * The Constant GetItem.
3926 */
3927 public static final String GetItem = "GetItem";
3928
3929 /**
3930 * The Constant GetItemResponse.
3931 */
3932 public static final String GetItemResponse = "GetItemResponse";
3933
3934 /**
3935 * The Constant GetItemResponseMessage.
3936 */
3937 public static final String GetItemResponseMessage =
3938 "GetItemResponseMessage";
3939
3940 // CreateItem
3941 /**
3942 * The Constant CreateItem.
3943 */
3944 public static final String CreateItem = "CreateItem";
3945
3946 /**
3947 * The Constant CreateItemResponse.
3948 */
3949 public static final String CreateItemResponse = "CreateItemResponse";
3950
3951 /**
3952 * The Constant CreateItemResponseMessage.
3953 */
3954 public static final String CreateItemResponseMessage =
3955 "CreateItemResponseMessage";
3956
3957 // SendItem
3958 /**
3959 * The Constant SendItem.
3960 */
3961 public static final String SendItem = "SendItem";
3962
3963 /**
3964 * The Constant SendItemResponse.
3965 */
3966 public static final String SendItemResponse = "SendItemResponse";
3967
3968 /**
3969 * The Constant SendItemResponseMessage.
3970 */
3971 public static final String SendItemResponseMessage =
3972 "SendItemResponseMessage";
3973
3974 // DeleteItem
3975 /**
3976 * The Constant DeleteItem.
3977 */
3978 public static final String DeleteItem = "DeleteItem";
3979
3980 /**
3981 * The Constant DeleteItemResponse.
3982 */
3983 public static final String DeleteItemResponse = "DeleteItemResponse";
3984
3985 /**
3986 * The Constant DeleteItemResponseMessage.
3987 */
3988 public static final String DeleteItemResponseMessage =
3989 "DeleteItemResponseMessage";
3990
3991 // UpdateItem
3992 /**
3993 * The Constant UpdateItem.
3994 */
3995 public static final String UpdateItem = "UpdateItem";
3996
3997 /**
3998 * The Constant UpdateItemResponse.
3999 */
4000 public static final String UpdateItemResponse = "UpdateItemResponse";
4001
4002 /**
4003 * The Constant UpdateItemResponseMessage.
4004 */
4005 public static final String UpdateItemResponseMessage =
4006 "UpdateItemResponseMessage";
4007
4008 // CopyItem
4009 /**
4010 * The Constant CopyItem.
4011 */
4012 public static final String CopyItem = "CopyItem";
4013
4014 /**
4015 * The Constant CopyItemResponse.
4016 */
4017 public static final String CopyItemResponse = "CopyItemResponse";
4018
4019 /**
4020 * The Constant CopyItemResponseMessage.
4021 */
4022 public static final String CopyItemResponseMessage =
4023 "CopyItemResponseMessage";
4024
4025 // MoveItem
4026 /**
4027 * The Constant MoveItem.
4028 */
4029 public static final String MoveItem = "MoveItem";
4030
4031 /**
4032 * The Constant MoveItemResponse.
4033 */
4034 public static final String MoveItemResponse = "MoveItemResponse";
4035
4036 /**
4037 * The Constant MoveItemResponseMessage.
4038 */
4039 public static final String MoveItemResponseMessage =
4040 "MoveItemResponseMessage";
4041
4042 // FindFolder
4043 /**
4044 * The Constant FindFolder.
4045 */
4046 public static final String FindFolder = "FindFolder";
4047
4048 /**
4049 * The Constant FindFolderResponse.
4050 */
4051 public static final String FindFolderResponse = "FindFolderResponse";
4052
4053 /**
4054 * The Constant FindFolderResponseMessage.
4055 */
4056 public static final String FindFolderResponseMessage =
4057 "FindFolderResponseMessage";
4058
4059 // GetFolder
4060 /**
4061 * The Constant GetFolder.
4062 */
4063 public static final String GetFolder = "GetFolder";
4064
4065 /**
4066 * The Constant GetFolderResponse.
4067 */
4068 public static final String GetFolderResponse = "GetFolderResponse";
4069
4070 /**
4071 * The Constant GetFolderResponseMessage.
4072 */
4073 public static final String GetFolderResponseMessage =
4074 "GetFolderResponseMessage";
4075
4076 // CreateFolder
4077 /**
4078 * The Constant CreateFolder.
4079 */
4080 public static final String CreateFolder = "CreateFolder";
4081
4082 /**
4083 * The Constant CreateFolderResponse.
4084 */
4085 public static final String CreateFolderResponse = "CreateFolderResponse";
4086
4087 /**
4088 * The Constant CreateFolderResponseMessage.
4089 */
4090 public static final String CreateFolderResponseMessage =
4091 "CreateFolderResponseMessage";
4092
4093 // DeleteFolder
4094 /**
4095 * The Constant DeleteFolder.
4096 */
4097 public static final String DeleteFolder = "DeleteFolder";
4098
4099 /**
4100 * The Constant DeleteFolderResponse.
4101 */
4102 public static final String DeleteFolderResponse = "DeleteFolderResponse";
4103
4104 /**
4105 * The Constant DeleteFolderResponseMessage.
4106 */
4107 public static final String DeleteFolderResponseMessage =
4108 "DeleteFolderResponseMessage";
4109
4110 //EmptyFolder
4111 /**
4112 * The Constant EmptyFolder.
4113 */
4114 public static final String EmptyFolder = "EmptyFolder";
4115
4116 /**
4117 * The Constant EmptyFolderResponse.
4118 */
4119 public static final String EmptyFolderResponse = "EmptyFolderResponse";
4120
4121 /**
4122 * The Constant EmptyFolderResponseMessage.
4123 */
4124 public static final String EmptyFolderResponseMessage =
4125 "EmptyFolderResponseMessage";
4126
4127 // UpdateFolder
4128 /**
4129 * The Constant UpdateFolder.
4130 */
4131 public static final String UpdateFolder = "UpdateFolder";
4132
4133 /**
4134 * The Constant UpdateFolderResponse.
4135 */
4136 public static final String UpdateFolderResponse = "UpdateFolderResponse";
4137
4138 /**
4139 * The Constant UpdateFolderResponseMessage.
4140 */
4141 public static final String UpdateFolderResponseMessage =
4142 "UpdateFolderResponseMessage";
4143
4144 // CopyFolder
4145 /**
4146 * The Constant CopyFolder.
4147 */
4148 public static final String CopyFolder = "CopyFolder";
4149
4150 /**
4151 * The Constant CopyFolderResponse.
4152 */
4153 public static final String CopyFolderResponse = "CopyFolderResponse";
4154
4155 /**
4156 * The Constant CopyFolderResponseMessage.
4157 */
4158 public static final String CopyFolderResponseMessage =
4159 "CopyFolderResponseMessage";
4160
4161 // MoveFolder
4162 /**
4163 * The Constant MoveFolder.
4164 */
4165 public static final String MoveFolder = "MoveFolder";
4166
4167 /**
4168 * The Constant MoveFolderResponse.
4169 */
4170 public static final String MoveFolderResponse = "MoveFolderResponse";
4171
4172 /**
4173 * The Constant MoveFolderResponseMessage.
4174 */
4175 public static final String MoveFolderResponseMessage =
4176 "MoveFolderResponseMessage";
4177
4178 // GetAttachment
4179 /**
4180 * The Constant GetAttachment.
4181 */
4182 public static final String GetAttachment = "GetAttachment";
4183
4184 /**
4185 * The Constant GetAttachmentResponse.
4186 */
4187 public static final String GetAttachmentResponse = "GetAttachmentResponse";
4188
4189 /**
4190 * The Constant GetAttachmentResponseMessage.
4191 */
4192 public static final String GetAttachmentResponseMessage =
4193 "GetAttachmentResponseMessage";
4194
4195 // CreateAttachment
4196 /**
4197 * The Constant CreateAttachment.
4198 */
4199 public static final String CreateAttachment = "CreateAttachment";
4200
4201 /**
4202 * The Constant CreateAttachmentResponse.
4203 */
4204 public static final String
4205 CreateAttachmentResponse = "CreateAttachmentResponse";
4206
4207 /**
4208 * The Constant CreateAttachmentResponseMessage.
4209 */
4210 public static final String CreateAttachmentResponseMessage =
4211 "CreateAttachmentResponseMessage";
4212
4213 // DeleteAttachment
4214 /**
4215 * The Constant DeleteAttachment.
4216 */
4217 public static final String DeleteAttachment = "DeleteAttachment";
4218
4219 /**
4220 * The Constant DeleteAttachmentResponse.
4221 */
4222 public static final String DeleteAttachmentResponse =
4223 "DeleteAttachmentResponse";
4224
4225 /**
4226 * The Constant DeleteAttachmentResponseMessage.
4227 */
4228 public static final String DeleteAttachmentResponseMessage =
4229 "DeleteAttachmentResponseMessage";
4230
4231 // ResolveNames
4232 /**
4233 * The Constant ResolveNames.
4234 */
4235 public static final String ResolveNames = "ResolveNames";
4236
4237 /**
4238 * The Constant ResolveNamesResponse.
4239 */
4240 public static final String ResolveNamesResponse = "ResolveNamesResponse";
4241
4242 /**
4243 * The Constant ResolveNamesResponseMessage.
4244 */
4245 public static final String ResolveNamesResponseMessage =
4246 "ResolveNamesResponseMessage";
4247
4248 // ExpandDL
4249 /**
4250 * The Constant ExpandDL.
4251 */
4252 public static final String ExpandDL = "ExpandDL";
4253
4254 /**
4255 * The Constant ExpandDLResponse.
4256 */
4257 public static final String ExpandDLResponse = "ExpandDLResponse";
4258
4259 /**
4260 * The Constant ExpandDLResponseMessage.
4261 */
4262 public static final String ExpandDLResponseMessage =
4263 "ExpandDLResponseMessage";
4264
4265 // Subscribe
4266 /**
4267 * The Constant Subscribe.
4268 */
4269 public static final String Subscribe = "Subscribe";
4270
4271 /**
4272 * The Constant SubscribeResponse.
4273 */
4274 public static final String SubscribeResponse = "SubscribeResponse";
4275
4276 /**
4277 * The Constant SubscribeResponseMessage.
4278 */
4279 public static final String SubscribeResponseMessage =
4280 "SubscribeResponseMessage";
4281
4282 // Unsubscribe
4283 /**
4284 * The Constant Unsubscribe.
4285 */
4286 public static final String Unsubscribe = "Unsubscribe";
4287
4288 /**
4289 * The Constant UnsubscribeResponse.
4290 */
4291 public static final String UnsubscribeResponse = "UnsubscribeResponse";
4292
4293 /**
4294 * The Constant UnsubscribeResponseMessage.
4295 */
4296 public static final String UnsubscribeResponseMessage =
4297 "UnsubscribeResponseMessage";
4298
4299 // GetEvents
4300 /**
4301 * The Constant GetEvents.
4302 */
4303 public static final String GetEvents = "GetEvents";
4304
4305 /**
4306 * The Constant GetEventsResponse.
4307 */
4308 public static final String GetEventsResponse = "GetEventsResponse";
4309
4310 /**
4311 * The Constant GetEventsResponseMessage.
4312 */
4313 public static final String GetEventsResponseMessage =
4314 "GetEventsResponseMessage";
4315
4316 // GetStreamingEvents
4317 /**
4318 * The Constant GetStreamingEvents.
4319 */
4320 public static final String GetStreamingEvents = "GetStreamingEvents";
4321
4322 /**
4323 * The Constant GetStreamingEventsResponse.
4324 */
4325 public static final String GetStreamingEventsResponse =
4326 "GetStreamingEventsResponse";
4327
4328 /**
4329 * The Constant GetStreamingEventsResponseMessage.
4330 */
4331 public static final String GetStreamingEventsResponseMessage =
4332 "GetStreamingEventsResponseMessage";
4333
4334 /**
4335 * The Constant ConnectionStatus.
4336 */
4337 public static final String ConnectionStatus = "ConnectionStatus";
4338
4339 /**
4340 * The Constant ErrorSubscriptionIds.
4341 */
4342 public static final String ErrorSubscriptionIds = "ErrorSubscriptionIds";
4343
4344 /**
4345 * The Constant ConnectionTimeout.
4346 */
4347 public static final String ConnectionTimeout = "ConnectionTimeout";
4348
4349 /**
4350 * The Constant HeartbeatFrequency.
4351 */
4352 public static final String HeartbeatFrequency = "HeartbeatFrequency";
4353
4354
4355 // SyncFolderItems
4356 /**
4357 * The Constant SyncFolderItems.
4358 */
4359 public static final String SyncFolderItems = "SyncFolderItems";
4360
4361 /**
4362 * The Constant SyncFolderItemsResponse.
4363 */
4364 public static final String SyncFolderItemsResponse =
4365 "SyncFolderItemsResponse";
4366
4367 /**
4368 * The Constant SyncFolderItemsResponseMessage.
4369 */
4370 public static final String SyncFolderItemsResponseMessage =
4371 "SyncFolderItemsResponseMessage";
4372
4373 // SyncFolderHierarchy
4374 /**
4375 * The Constant SyncFolderHierarchy.
4376 */
4377 public static final String SyncFolderHierarchy = "SyncFolderHierarchy";
4378
4379 /**
4380 * The Constant SyncFolderHierarchyResponse.
4381 */
4382 public static final String SyncFolderHierarchyResponse =
4383 "SyncFolderHierarchyResponse";
4384
4385 /**
4386 * The Constant SyncFolderHierarchyResponseMessage.
4387 */
4388 public static final String SyncFolderHierarchyResponseMessage =
4389 "SyncFolderHierarchyResponseMessage";
4390
4391 // GetUserOofSettings
4392 /**
4393 * The Constant GetUserOofSettingsRequest.
4394 */
4395 public static final String GetUserOofSettingsRequest =
4396 "GetUserOofSettingsRequest";
4397
4398 /**
4399 * The Constant GetUserOofSettingsResponse.
4400 */
4401 public static final String GetUserOofSettingsResponse =
4402 "GetUserOofSettingsResponse";
4403
4404 // SetUserOofSettings
4405 /**
4406 * The Constant SetUserOofSettingsRequest.
4407 */
4408 public static final String SetUserOofSettingsRequest =
4409 "SetUserOofSettingsRequest";
4410
4411 /**
4412 * The Constant SetUserOofSettingsResponse.
4413 */
4414 public static final String SetUserOofSettingsResponse =
4415 "SetUserOofSettingsResponse";
4416
4417 // GetUserAvailability
4418 /**
4419 * The Constant GetUserAvailabilityRequest.
4420 */
4421 public static final String GetUserAvailabilityRequest =
4422 "GetUserAvailabilityRequest";
4423
4424 /**
4425 * The Constant GetUserAvailabilityResponse.
4426 */
4427 public static final String GetUserAvailabilityResponse =
4428 "GetUserAvailabilityResponse";
4429
4430 /**
4431 * The Constant FreeBusyResponseArray.
4432 */
4433 public static final String FreeBusyResponseArray = "FreeBusyResponseArray";
4434
4435 /**
4436 * The Constant FreeBusyResponse.
4437 */
4438 public static final String FreeBusyResponse = "FreeBusyResponse";
4439
4440 /**
4441 * The Constant SuggestionsResponse.
4442 */
4443 public static final String SuggestionsResponse = "SuggestionsResponse";
4444
4445 // GetRoomLists
4446 /**
4447 * The Constant GetRoomListsRequest.
4448 */
4449 public static final String GetRoomListsRequest = "GetRoomLists";
4450
4451 /**
4452 * The Constant GetRoomListsResponse.
4453 */
4454 public static final String GetRoomListsResponse = "GetRoomListsResponse";
4455
4456 // GetRooms
4457 /**
4458 * The Constant GetRoomsRequest.
4459 */
4460 public static final String GetRoomsRequest = "GetRooms";
4461
4462 /**
4463 * The Constant GetRoomsResponse.
4464 */
4465 public static final String GetRoomsResponse = "GetRoomsResponse";
4466
4467 // ConvertId
4468 /**
4469 * The Constant ConvertId.
4470 */
4471 public static final String ConvertId = "ConvertId";
4472
4473 /**
4474 * The Constant ConvertIdResponse.
4475 */
4476 public static final String ConvertIdResponse = "ConvertIdResponse";
4477
4478 /**
4479 * The Constant ConvertIdResponseMessage.
4480 */
4481 public static final String ConvertIdResponseMessage =
4482 "ConvertIdResponseMessage";
4483
4484 // AddDelegate
4485 /**
4486 * The Constant AddDelegate.
4487 */
4488 public static final String AddDelegate = "AddDelegate";
4489
4490 /**
4491 * The Constant AddDelegateResponse.
4492 */
4493 public static final String AddDelegateResponse = "AddDelegateResponse";
4494
4495 /**
4496 * The Constant DelegateUserResponseMessageType.
4497 */
4498 public static final String DelegateUserResponseMessageType =
4499 "DelegateUserResponseMessageType";
4500
4501 // RemoveDelegte
4502 /**
4503 * The Constant RemoveDelegate.
4504 */
4505 public static final String RemoveDelegate = "RemoveDelegate";
4506
4507 /**
4508 * The Constant RemoveDelegateResponse.
4509 */
4510 public static final String RemoveDelegateResponse =
4511 "RemoveDelegateResponse";
4512
4513 // GetDelegate
4514 /**
4515 * The Constant GetDelegate.
4516 */
4517 public static final String GetDelegate = "GetDelegate";
4518
4519 /**
4520 * The Constant GetDelegateResponse.
4521 */
4522 public static final String GetDelegateResponse = "GetDelegateResponse";
4523
4524 // UpdateDelegate
4525 /**
4526 * The Constant UpdateDelegate.
4527 */
4528 public static final String UpdateDelegate = "UpdateDelegate";
4529
4530 /**
4531 * The Constant UpdateDelegateResponse.
4532 */
4533 public static final String UpdateDelegateResponse =
4534 "UpdateDelegateResponse";
4535
4536 // CreateUserConfiguration
4537 /**
4538 * The Constant CreateUserConfiguration.
4539 */
4540 public static final String CreateUserConfiguration =
4541 "CreateUserConfiguration";
4542
4543 /**
4544 * The Constant CreateUserConfigurationResponse.
4545 */
4546 public static final String CreateUserConfigurationResponse =
4547 "CreateUserConfigurationResponse";
4548
4549 /**
4550 * The Constant CreateUserConfigurationResponseMessage.
4551 */
4552 public static final String CreateUserConfigurationResponseMessage =
4553 "CreateUserConfigurationResponseMessage";
4554
4555 // DeleteUserConfiguration
4556 /**
4557 * The Constant DeleteUserConfiguration.
4558 */
4559 public static final String DeleteUserConfiguration =
4560 "DeleteUserConfiguration";
4561
4562 /**
4563 * The Constant DeleteUserConfigurationResponse.
4564 */
4565 public static final String DeleteUserConfigurationResponse =
4566 "DeleteUserConfigurationResponse";
4567
4568 /**
4569 * The Constant DeleteUserConfigurationResponseMessage.
4570 */
4571 public static final String DeleteUserConfigurationResponseMessage =
4572 "DeleteUserConfigurationResponseMessage";
4573
4574 // GetUserConfiguration
4575 /**
4576 * The Constant GetUserConfiguration.
4577 */
4578 public static final String GetUserConfiguration = "GetUserConfiguration";
4579
4580 /**
4581 * The Constant GetUserConfigurationResponse.
4582 */
4583 public static final String GetUserConfigurationResponse =
4584 "GetUserConfigurationResponse";
4585
4586 /**
4587 * The Constant GetUserConfigurationResponseMessage.
4588 */
4589 public static final String GetUserConfigurationResponseMessage =
4590 "GetUserConfigurationResponseMessage";
4591
4592 // UpdateUserConfiguration
4593 /**
4594 * The Constant UpdateUserConfiguration.
4595 */
4596 public static final String UpdateUserConfiguration =
4597 "UpdateUserConfiguration";
4598
4599 /**
4600 * The Constant UpdateUserConfigurationResponse.
4601 */
4602 public static final String UpdateUserConfigurationResponse =
4603 "UpdateUserConfigurationResponse";
4604
4605 /**
4606 * The Constant UpdateUserConfigurationResponseMessage.
4607 */
4608 public static final String UpdateUserConfigurationResponseMessage =
4609 "UpdateUserConfigurationResponseMessage";
4610
4611 // PlayOnPhone
4612 /**
4613 * The Constant PlayOnPhone.
4614 */
4615 public static final String PlayOnPhone = "PlayOnPhone";
4616
4617 /**
4618 * The Constant PlayOnPhoneResponse.
4619 */
4620 public static final String PlayOnPhoneResponse = "PlayOnPhoneResponse";
4621
4622 // GetPhoneCallInformation
4623 /**
4624 * The Constant GetPhoneCall.
4625 */
4626 public static final String GetPhoneCall = "GetPhoneCallInformation";
4627
4628 /**
4629 * The Constant GetPhoneCallResponse.
4630 */
4631 public static final String GetPhoneCallResponse =
4632 "GetPhoneCallInformationResponse";
4633
4634 // DisconnectCall
4635 /**
4636 * The Constant DisconnectPhoneCall.
4637 */
4638 public static final String DisconnectPhoneCall = "DisconnectPhoneCall";
4639
4640 /**
4641 * The Constant DisconnectPhoneCallResponse.
4642 */
4643 public static final String DisconnectPhoneCallResponse =
4644 "DisconnectPhoneCallResponse";
4645
4646 // GetServerTimeZones
4647 /**
4648 * The Constant GetServerTimeZones.
4649 */
4650 public static final String GetServerTimeZones = "GetServerTimeZones";
4651
4652 /**
4653 * The Constant GetServerTimeZonesResponse.
4654 */
4655 public static final String GetServerTimeZonesResponse =
4656 "GetServerTimeZonesResponse";
4657
4658 /**
4659 * The Constant GetServerTimeZonesResponseMessage.
4660 */
4661 public static final String GetServerTimeZonesResponseMessage =
4662 "GetServerTimeZonesResponseMessage";
4663
4664 // GetInboxRules
4665 /**
4666 * The Constant GetInboxRules.
4667 */
4668 public static final String GetInboxRules = "GetInboxRules";
4669
4670 /**
4671 * The Constant GetInboxRulesResponse.
4672 */
4673 public static final String GetInboxRulesResponse = "GetInboxRulesResponse";
4674
4675 // UpdateInboxRules
4676 /**
4677 * The Constant UpdateInboxRules.
4678 */
4679 public static final String UpdateInboxRules = "UpdateInboxRules";
4680
4681 /**
4682 * The Constant UpdateInboxRulesResponse.
4683 */
4684 public static final String UpdateInboxRulesResponse =
4685 "UpdateInboxRulesResponse";
4686
4687 // ExecuteDiagnosticMethod
4688 /**
4689 * The Constant ExecuteDiagnosticMethod.
4690 */
4691 public static final String ExecuteDiagnosticMethod =
4692 "ExecuteDiagnosticMethod";
4693
4694 /**
4695 * The Constant ExecuteDiagnosticMethodResponse.
4696 */
4697 public static final String ExecuteDiagnosticMethodResponse =
4698 "ExecuteDiagnosticMethodResponse";
4699
4700 /**
4701 * The Constant ExecuteDiagnosticMethodResponseMEssage.
4702 */
4703 public static final String ExecuteDiagnosticMethodResponseMEssage =
4704 "ExecuteDiagnosticMethodResponseMessage";
4705
4706 //GetPasswordExpirationDate
4707 /**
4708 * The Constant GetPasswordExpirationDate.
4709 */
4710 public static final String GetPasswordExpirationDateRequest = "GetPasswordExpirationDate";
4711
4712 /**
4713 * The Constant GetPasswordExpirationDateResponse.
4714 */
4715 public static final String GetPasswordExpirationDateResponse = "GetPasswordExpirationDateResponse";
4716
4717 // SOAP element names
4718
4719 /**
4720 * The Constant SOAPEnvelopeElementName.
4721 */
4722 public static final String SOAPEnvelopeElementName = "Envelope";
4723
4724 /**
4725 * The Constant SOAPHeaderElementName.
4726 */
4727 public static final String SOAPHeaderElementName = "Header";
4728
4729 /**
4730 * The Constant SOAPBodyElementName.
4731 */
4732 public static final String SOAPBodyElementName = "Body";
4733
4734 /**
4735 * The Constant SOAPFaultElementName.
4736 */
4737 public static final String SOAPFaultElementName = "Fault";
4738
4739 /**
4740 * The Constant SOAPFaultCodeElementName.
4741 */
4742 public static final String SOAPFaultCodeElementName = "faultcode";
4743
4744 /**
4745 * The Constant SOAPFaultStringElementName.
4746 */
4747 public static final String SOAPFaultStringElementName = "faultstring";
4748
4749 /**
4750 * The Constant SOAPFaultActorElementName.
4751 */
4752 public static final String SOAPFaultActorElementName = "faultactor";
4753
4754 /**
4755 * The Constant SOAPDetailElementName.
4756 */
4757 public static final String SOAPDetailElementName = "detail";
4758
4759 /**
4760 * The Constant EwsResponseCodeElementName.
4761 */
4762 public static final String EwsResponseCodeElementName = "ResponseCode";
4763
4764 /**
4765 * The Constant EwsMessageElementName.
4766 */
4767 public static final String EwsMessageElementName = "Message";
4768
4769 /**
4770 * The Constant EwsLineElementName.
4771 */
4772 public static final String EwsLineElementName = "Line";
4773
4774 /**
4775 * The Constant EwsPositionElementName.
4776 */
4777 public static final String EwsPositionElementName = "Position";
4778
4779 /**
4780 * The Constant EwsErrorCodeElementName.
4781 */
4782 public static final String EwsErrorCodeElementName =
4783 "ErrorCode"; // Generated
4784
4785
4786 // by
4787 // Availability
4788 /**
4789 * The Constant EwsExceptionTypeElementName.
4790 */
4791 public static final String EwsExceptionTypeElementName =
4792 "ExceptionType"; // Generated
4793
4794 // by
4795 // UM
4796
4797 }