|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ExchangeCalendarItem
Represents an Exchange calendar item like an appointment or a meeting.
A new appointment can be created with the methods Exchange.createCalendarItem() or ExchangeFolder.createCalendarItem(). To save the new appointment to the calendar, call the method save().
This class provides getter and setter methods to access or modify the appointment's properties.
Example code that displays appointments for a specific date span:
Exchange exchange = new Exchange("hostname", "username", "password");
ExchangeFolder calendar = exchange.getCalendarFolder();
Date now = new Date();
Date oneDayAgo = new Date(now.getTime() - 86400000);
Iterable<ExchangeItem> items = calendar.getItems().iterableForCalendar(oneDayAgo, now);
for(ExchangeItem item : items)
{
ExchangeCalendarItem appointment = (ExchangeCalendarItem) item;
System.out.println(appointment.getSubject());
}
Exchange.createCalendarItem()
,
ExchangeFolder.createCalendarItem()
,
ExchangeItem.save()
Method Summary | |
---|---|
void |
addOptionalAttendee(java.lang.String optionalAttendeeEmailAddress)
Adds a new optional attendee to the current optional attendees list. |
void |
addRequiredAttendee(java.lang.String requiredAttendeeEmailAddress)
Adds a new required attendee to the current required attendees list. |
void |
addResource(java.lang.String resourceEmailAddress)
Adds a new resource to the current resources list. |
void |
clearOptionalAttendees()
|
void |
clearRecurrencePattern()
Clears the recurrence pattern of this item making it non-recurring. |
void |
clearRequiredAttendees()
|
void |
clearResources()
|
void |
delete(boolean moveToDeletedItems)
Deletes this item. |
void |
delete(boolean moveToDeletedItems,
boolean doNotSaveSentMeetingRequestCopy)
Deletes this item. |
void |
deleteOnly(boolean moveToDeletedItems)
Deletes this item. |
int |
getAdjacentMeetingCount()
Returns the total number of calendar items that are adjacent to this meeting's time. |
java.util.List<ExchangeItem> |
getAdjacentMeetings()
Returns all calendar items that are adjacent to this meeting's time. |
boolean |
getAllowNewTimeProposal()
Returns true if a new meeting time can be proposed for this meeting by an attendee, false otherwise. |
java.util.Date |
getAppointmentReplyTime()
Returns the date and time when an attendee replied to a meeting request. |
int |
getAppointmentSequenceNumber()
Returns the sequence number of a version of an appointment. |
CalendarItemType |
getCalendarItemType()
Returns the occurrence type of this calendar item. |
int |
getConferenceType()
Returns the type of conferencing that is performed. |
int |
getConflictingMeetingCount()
Returns the number of meetings that conflict with this calendar item. |
java.util.List<ExchangeItem> |
getConflictingMeetings()
Returns all items that conflict with this meeting's time. |
java.util.Date |
getDateTimeStamp()
Indicates the date and time that an instance of a iCalendar object was created. |
java.lang.String |
getDuration()
Returns the duration of this calendar item. |
java.util.Date |
getEnd()
Returns the end date and time of this calendar item. |
FreeBusyStatus |
getFreeBusyStatus()
Returns the free/busy status of this calendar item. |
java.lang.String |
getLocation()
Returns the location of this meeting or appointment. |
boolean |
getMeetingRequestWasSent()
Returns true if a meeting request has been sent to requested attendees, false otherwise. |
java.lang.String |
getMeetingWorkspaceUrl()
Returns the URL for the meeting workspace. |
ResponseType |
getMyResponseType()
Returns the status of the response for this calendar item. |
java.lang.String |
getNetShowUrl()
Returns the URL for a Microsoft NetShow online meeting. |
java.util.List<ExchangeAttendee> |
getOptionalAttendees()
Returns a list of the optional attendees for this meeting. |
java.lang.String |
getOrganizerEmailAddress()
Returns the e-mail address of the organizer of this meeting. |
ExchangeMailbox |
getOrganizerMailbox()
Returns the mailbox of the organizer of this meeting. |
java.lang.String |
getOrganizerName()
Returns the name of the organizer of this meeting. |
java.util.Date |
getOriginalStart()
Returns the original start date and time of this calendar item. |
java.util.Date |
getRecurrenceId()
The recurrence ID is used to identify a specific instance of a recurring calendar item. |
ExchangeCalendarItem |
getRecurrenceMaster()
Returns the master of this occurrence of a recurring appointment. |
ExchangeCalendarItem |
getRecurrenceOccurrence(int occurrenceIndex)
Returns the occurrence at the specified index of a recurring appointment. |
RecurrencePattern |
getRecurrencePattern()
Returns the recurrence pattern of this item. |
java.util.List<ExchangeAttendee> |
getRequiredAttendees()
Returns a list of the required attendees for this meeting. |
java.util.List<ExchangeAttendee> |
getResources()
Returns a list of the resources for this meeting. |
java.util.Date |
getStart()
Returns the start date and time of this calendar item. |
java.lang.String |
getTimeZone()
Returns a textual description of a time zone. |
java.lang.String |
getUid()
Returns an UID uniquely identifying a calendar item. |
java.lang.String |
getWhen()
Returns textual information about when this appointment or meeting occurs. |
boolean |
isAllDayEvent()
Returns true if this item is an all-day event; false otherwise. |
boolean |
isCancelled()
Returns true if this meeting or appointment has been canceled, false otherwise. |
boolean |
isMeeting()
Returns true if this calendar item is a meeting, false if it's an appointment. |
boolean |
isOnlineMeeting()
Returns true if this meeting is online, false otherwise. |
boolean |
isRecurring()
Returns true if this calendar item is part of a recurring item, false otherwise. |
boolean |
isResponseRequested()
Indicates whether a response is required. |
void |
save()
Saves all the changes made to this item in the Exchange store. |
void |
save(boolean overwriteIfConflict)
Saves all the changes made to this item in the Exchange store. |
void |
save(boolean overwriteIfConflict,
boolean notifyOnlyChangedAttendees)
Saves all the changes made to this item in the Exchange store. |
void |
save(boolean overwriteIfConflict,
boolean notifyOnlyChangedAttendees,
boolean doNotSaveSentMeetingRequestCopy)
Saves all the changes made to this item in the Exchange store. |
void |
saveOnly()
Saves changes made to this item in the Exchange store without sending meeting invitations, cancellations or updates to attendees. |
void |
saveOnly(boolean overwriteIfConflict)
Saves changes made to this item in the Exchange store without sending meeting invitations, cancellations or updates to attendees. |
void |
setAllowNewTimeProposal(boolean allowNewTimeProposal)
Sets whether a new meeting time can be proposed for this meeting by an attendee. |
void |
setConferenceType(int conferenceType)
Sets the type of conferencing that is performed. |
void |
setDateTimeStamp(java.util.Date dateTimeStamp)
|
void |
setEnd(java.util.Date end)
Sets the end date and time of this calendar item. |
void |
setFreeBusyStatus(FreeBusyStatus freeBusyStatus)
Sets the free/busy status of this calendar item. |
void |
setIsAllDayEvent(boolean isAllDayEvent)
Sets whether this item is an all-day event or not. |
void |
setIsCancelled(boolean isCancelled)
Sets whether this calendar item is canceled or not. |
void |
setIsOnlineMeeting(boolean isOnlineMeeting)
Sets whether this meeting is online. |
void |
setIsResponseRequested(boolean isResponseRequested)
Sets whether a response is required. |
void |
setLocation(java.lang.String location)
Sets the location of this calendar item. |
void |
setMeetingTimeZoneName(java.lang.String name)
Deprecated. Use the method setStartTimeZone instead. |
void |
setMeetingWorkspaceUrl(java.lang.String meetingWorkspaceUrl)
Sets the URL for the meeting workspace. |
void |
setMyResponseType(ResponseType myResponseType)
Sets the status of the response for this calendar item. |
void |
setNetShowUrl(java.lang.String netShowUrl)
Sets the URL for a Microsoft NetShow online meeting. |
void |
setOptionalAttendee(java.lang.String optionalAttendeeEmailAddress)
Sets a single optional attendee for this meeting. |
void |
setOptionalAttendees(java.util.List<java.lang.String> optionalAttendeesEmailAddresses)
Sets the list of optional attendees for this meeting. |
void |
setRecurrenceId(java.util.Date recurrenceId)
The recurrence ID is used to identify a specific instance of a recurring calendar item. |
void |
setRequiredAttendee(java.lang.String requiredAttendeeEmailAddress)
Sets a single required attendee for this meeting. |
void |
setRequiredAttendees(java.util.List<java.lang.String> requiredAttendeesEmailAddresses)
Sets the list of required attendees for this meeting. |
void |
setResource(java.lang.String resourceEmailAddress)
Sets a single resource scheduled for this meeting. |
void |
setResources(java.util.List<java.lang.String> resourcesEmailAddresses)
Sets the list of resources for this meeting. |
void |
setStart(java.util.Date start)
Sets the start date and time of this calendar item. |
void |
setStartTimeZone(java.util.TimeZone timeZone)
|
void |
setWhen(java.lang.String when)
Sets information about when this calendar item occurs. |
Methods inherited from interface com.moyosoft.exchange.calendar.ExchangeMeeting |
---|
respond |
Method Detail |
---|
java.lang.String getUid() throws ExchangeServiceException
getUid
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.Date getRecurrenceId() throws ExchangeServiceException
getRecurrenceId
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setRecurrenceId(java.util.Date recurrenceId) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.Date getDateTimeStamp() throws ExchangeServiceException
getDateTimeStamp
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setDateTimeStamp(java.util.Date dateTimeStamp) throws ExchangeServiceException
ExchangeServiceException
java.util.Date getStart() throws ExchangeServiceException
getStart
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setMeetingTimeZoneName(java.lang.String name) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setStartTimeZone(java.util.TimeZone timeZone) throws ExchangeServiceException
ExchangeServiceException
void setStart(java.util.Date start) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.Date getEnd() throws ExchangeServiceException
getEnd
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setEnd(java.util.Date end) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.Date getOriginalStart() throws ExchangeServiceException
getOriginalStart
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isAllDayEvent() throws ExchangeServiceException
isAllDayEvent
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setIsAllDayEvent(boolean isAllDayEvent) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.FreeBusyStatus getFreeBusyStatus() throws ExchangeServiceException
getFreeBusyStatus
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setFreeBusyStatus(FreeBusyStatus freeBusyStatus) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getLocation() throws ExchangeServiceException
getLocation
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setLocation(java.lang.String location) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getWhen() throws ExchangeServiceException
getWhen
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setWhen(java.lang.String when) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isMeeting() throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isCancelled() throws ExchangeServiceException
isCancelled
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setIsCancelled(boolean isCancelled) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isRecurring() throws ExchangeServiceException
isRecurring
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean getMeetingRequestWasSent() throws ExchangeServiceException
getMeetingRequestWasSent
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isResponseRequested() throws ExchangeServiceException
isResponseRequested
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setIsResponseRequested(boolean isResponseRequested) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.CalendarItemType getCalendarItemType() throws ExchangeServiceException
CalendarItemType.Single: This item is not associated with a recurring calendar item.
CalendarItemType.Occurrence: This item is an occurrence of a recurring calendar item.
CalendarItemType.Exception: This item is an exception to a recurring calendar item.
CalendarItemType.RecurringMaster: This item is master for a set of recurring calendar items.
getCalendarItemType
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.ResponseType getMyResponseType() throws ExchangeServiceException
getMyResponseType
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setMyResponseType(ResponseType myResponseType) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getOrganizerName() throws ExchangeServiceException
getOrganizerName
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getOrganizerEmailAddress() throws ExchangeServiceException
getOrganizerEmailAddress
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.ExchangeMailbox getOrganizerMailbox() throws ExchangeServiceException
getOrganizerMailbox
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.List<ExchangeAttendee> getRequiredAttendees() throws ExchangeServiceException
getRequiredAttendees
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setRequiredAttendees(java.util.List<java.lang.String> requiredAttendeesEmailAddresses) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setRequiredAttendee(java.lang.String requiredAttendeeEmailAddress) throws ExchangeServiceException
To set multiple required attendees use
the method setRequiredAttendees(List)
. To add an attendee to the current required list,
use the method addRequiredAttendee(String)
.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void addRequiredAttendee(java.lang.String requiredAttendeeEmailAddress) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.List<ExchangeAttendee> getOptionalAttendees() throws ExchangeServiceException
getOptionalAttendees
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setOptionalAttendees(java.util.List<java.lang.String> optionalAttendeesEmailAddresses) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setOptionalAttendee(java.lang.String optionalAttendeeEmailAddress) throws ExchangeServiceException
To set multiple optional attendees use
the method setOptionalAttendees(List)
. To add an attendee to the current optional list,
use the method addOptionalAttendee(String)
.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void addOptionalAttendee(java.lang.String optionalAttendeeEmailAddress) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.List<ExchangeAttendee> getResources() throws ExchangeServiceException
getResources
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setResources(java.util.List<java.lang.String> resourcesEmailAddresses) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setResource(java.lang.String resourceEmailAddress) throws ExchangeServiceException
To set multiple resources use
the method setResources(List)
. To add a resource to the current list,
use the method addResource(String)
.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void addResource(java.lang.String resourceEmailAddress) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void clearResources() throws ExchangeServiceException
ExchangeServiceException
void clearRequiredAttendees() throws ExchangeServiceException
ExchangeServiceException
void clearOptionalAttendees() throws ExchangeServiceException
ExchangeServiceException
int getConflictingMeetingCount() throws ExchangeServiceException
getConflictingMeetingCount
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.int getAdjacentMeetingCount() throws ExchangeServiceException
getAdjacentMeetingCount
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.List<ExchangeItem> getConflictingMeetings() throws ExchangeServiceException
getConflictingMeetings
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.List<ExchangeItem> getAdjacentMeetings() throws ExchangeServiceException
getAdjacentMeetings
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getDuration() throws ExchangeServiceException
getDuration
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getTimeZone() throws ExchangeServiceException
getTimeZone
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.util.Date getAppointmentReplyTime() throws ExchangeServiceException
getAppointmentReplyTime
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.int getAppointmentSequenceNumber() throws ExchangeServiceException
getAppointmentSequenceNumber
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void clearRecurrencePattern() throws ExchangeServiceException
CalendarItemType.RecurringMaster
).
The changes are effective after this item is saved.
ExchangeServiceException
- if any errors occur during the communication with Exchange.RecurrencePattern getRecurrencePattern() throws ExchangeServiceException
CalendarItemType.RecurringMaster
).
ExchangeServiceException
- if any errors occur during the communication with Exchange.ExchangeCalendarItem getRecurrenceMaster() throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.ExchangeCalendarItem getRecurrenceOccurrence(int occurrenceIndex) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.int getConferenceType() throws ExchangeServiceException
0: NetMeeting
1: NetShow
2: Chat
getConferenceType
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setConferenceType(int conferenceType) throws ExchangeServiceException
0: NetMeeting
1: NetShow
2: Chat
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean getAllowNewTimeProposal() throws ExchangeServiceException
getAllowNewTimeProposal
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setAllowNewTimeProposal(boolean allowNewTimeProposal) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.boolean isOnlineMeeting() throws ExchangeServiceException
isOnlineMeeting
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setIsOnlineMeeting(boolean isOnlineMeeting) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getMeetingWorkspaceUrl() throws ExchangeServiceException
getMeetingWorkspaceUrl
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setMeetingWorkspaceUrl(java.lang.String meetingWorkspaceUrl) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.java.lang.String getNetShowUrl() throws ExchangeServiceException
getNetShowUrl
in interface ExchangeMeeting
ExchangeServiceException
- if any errors occur during the communication with Exchange.void setNetShowUrl(java.lang.String netShowUrl) throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void saveOnly() throws ExchangeServiceException
ExchangeServiceException
- if any errors occur during the communication with Exchange.void saveOnly(boolean overwriteIfConflict) throws ExchangeServiceException
overwriteIfConflict
- if true and a conflict occurs the item will be always overwritten, otherwise an exception will be thrown in case of a conflict.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void save() throws ExchangeServiceException
In case of a meeting, invitation or update requests will be sent to all attendees. The sent request will be saved locally in the Sent Items folder.
If a conflict occurs, the item won't be saved and an exception will be thrown by this method.
save
in interface ExchangeItem
ExchangeServiceException
- if any errors occur during the communication with Exchange.void save(boolean overwriteIfConflict) throws ExchangeServiceException
In case of a meeting, invitation or update requests will be sent to all attendees. The sent request will be saved locally in the Sent Items folder.
save
in interface ExchangeItem
overwriteIfConflict
- if true and a conflict occurs the item will be always overwritten, otherwise an exception will be thrown in case of a conflict.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void save(boolean overwriteIfConflict, boolean notifyOnlyChangedAttendees) throws ExchangeServiceException
overwriteIfConflict
- if true and a conflict occurs the item will be always overwritten, otherwise an exception will be thrown in case of a conflict.notifyOnlyChangedAttendees
- if true only changed attendees will receive a meeting invitation or update request, otherwise all attendees will receive the request.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void save(boolean overwriteIfConflict, boolean notifyOnlyChangedAttendees, boolean doNotSaveSentMeetingRequestCopy) throws ExchangeServiceException
overwriteIfConflict
- if true and a conflict occurs the item will be always overwritten, otherwise an exception will be thrown in case of a conflict.notifyOnlyChangedAttendees
- if true only changed attendees will receive a meeting invitation or update request, otherwise all attendees will receive the request.doNotSaveSentMeetingRequestCopy
- if true a copy of the sent request won't be saved in the Sent Items folder, otherwise a copy will be saved.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void deleteOnly(boolean moveToDeletedItems) throws ExchangeServiceException
In case of a meeting, cancellation updates won't be sent to attendees.
moveToDeletedItems
- specifies whether the item is simply moved to the Deleted Items folder or definitely deleted.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void delete(boolean moveToDeletedItems) throws ExchangeServiceException
In case of a meeting, cancellation updates will be sent to attendees. The sent request will be saved locally in the Sent Items folder.
delete
in interface ExchangeItem
moveToDeletedItems
- specifies whether the item is simply moved to the Deleted Items folder or definitely deleted.
ExchangeServiceException
- if any errors occur during the communication with Exchange.void delete(boolean moveToDeletedItems, boolean doNotSaveSentMeetingRequestCopy) throws ExchangeServiceException
In case of a meeting, cancellation updates will be sent to attendees.
moveToDeletedItems
- specifies whether the item is simply moved to the Deleted Items folder or definitely deleted.doNotSaveSentMeetingRequestCopy
- if true a copy of the sent request won't be saved in the Sent Items folder, otherwise a copy will be saved.
ExchangeServiceException
- if any errors occur during the communication with Exchange.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |