Interface ICalendarActionProvider
-
- All Known Implementing Classes:
Appointment,MeetingRequest
public interface ICalendarActionProvider
Interface defintion of a group of methods that are common to item that return CalendarActionResults.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CalendarActionResultsaccept(boolean sendResponse)Implements the Accept method.CalendarActionResultsacceptTentatively(boolean sendResponse)Implements the AcceptTentatively method.AcceptMeetingInvitationMessagecreateAcceptMessage(boolean tentative)Implements the CreateAcceptMessage method.DeclineMeetingInvitationMessagecreateDeclineMessage()Implements the DeclineMeetingInvitationMessage method.CalendarActionResultsdecline(boolean sendResponse)Implements the Decline method.
-
-
-
Method Detail
-
accept
CalendarActionResults accept(boolean sendResponse) throws Exception
Implements the Accept method.- Parameters:
sendResponse- Indicates whether to send a response to the organizer.- Returns:
- A CalendarActionResults object containing the various item that were created or modified as a result of this operation.
- Throws:
Exception- the exception
-
acceptTentatively
CalendarActionResults acceptTentatively(boolean sendResponse) throws Exception
Implements the AcceptTentatively method.- Parameters:
sendResponse- Indicates whether to send a response to the organizer.- Returns:
- A CalendarActionResults object containing the various item that were created or modified as a result of this operation.
- Throws:
Exception- the exception
-
decline
CalendarActionResults decline(boolean sendResponse) throws Exception
Implements the Decline method.- Parameters:
sendResponse- Indicates whether to send a response to the organizer.- Returns:
- A CalendarActionResults object containing the various item that were created or modified as a result of this operation.
- Throws:
Exception- the exception
-
createAcceptMessage
AcceptMeetingInvitationMessage createAcceptMessage(boolean tentative) throws Exception
Implements the CreateAcceptMessage method.- Parameters:
tentative- Indicates whether the new AcceptMeetingInvitationMessage should represent a Tentative accept response (as opposed to an Accept response).- Returns:
- A new AcceptMeetingInvitationMessage.
- Throws:
Exception- the exception
-
createDeclineMessage
DeclineMeetingInvitationMessage createDeclineMessage() throws Exception
Implements the DeclineMeetingInvitationMessage method.- Returns:
- A new DeclineMeetingInvitationMessage.
- Throws:
Exception- the exception
-
-