Moyosoft Products | Services | Download | Contact us    
Java Bridge to Exchange
Products  >  Java Bridge to Exchange  >  API Reference    
API Reference
   
Overview  |  
Classic JavaDoc

All classes

AttachmentInfo class in com.moyosoft.exchange.attachment
Contains information on an attachment.
AttachmentsCollection interface in com.moyosoft.exchange.attachment
A collection of attachments attached to an Exchange item. An attachment can be a file (ExchangeFileAttachment) or an Exchange item (ExchangeItemAttachment). The collection allows to get, iterate over and add new attachments. This class implements the Iterable interface allowing it ... more >
AttachmentsIterator interface in com.moyosoft.exchange.attachment
Iterator over attachments of an Exchange item.
BodyType class in com.moyosoft.exchange.item
CalendarItemType class in com.moyosoft.exchange.calendar
DayOfWeek class in com.moyosoft.exchange.calendar
Exchange class in com.moyosoft.exchange
Provides access to the Exchange server. An Exchange object is the starting point for connecting and accessing the Microsoft Exchange server, its data, folders and items. The Exchange class constructor connects to the server using the specified hostname, credentials and domain. Usage ... more >
Exchange.Settings class in com.moyosoft.exchange
ExchangeAlternateId class in com.moyosoft.exchange.util
ExchangeAlternatePublicFolderId class in com.moyosoft.exchange.util
ExchangeAlternatePublicFolderItemId class in com.moyosoft.exchange.util
ExchangeAttachment interface in com.moyosoft.exchange.attachment
Represents an attachment attached to an Exchange item. An attachment can be a file (ExchangeFileAttachment) or an Exchange item (ExchangeItemAttachment).
ExchangeAttendee interface in com.moyosoft.exchange.calendar
Represents an attendee or a resource for a meeting.
ExchangeCalendarItem interface in com.moyosoft.exchange.calendar
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 ... more >
ExchangeCalendarItemInfo class in com.moyosoft.exchange.calendar
ExchangeCollection interface in com.moyosoft.exchange.util
A base interface for all collections of Exchange elements.
ExchangeContact interface in com.moyosoft.exchange.contact
Represents a contact item stored in an Exchange folder. A new contact can be created with the method ExchangeFolder.createContact(). To save the new contact to the folder, call the method save(). This class provides getter and setter methods to access or modify the contact's prope ... more >
ExchangeFileAttachment interface in com.moyosoft.exchange.attachment
Represents a file attached to an Exchange item.
ExchangeFolder interface in com.moyosoft.exchange.folder
Represents an Exchange folder. Sub-folders of this folder can be accessed with the method getFolders(). Items stored in this folder can be accessed with the method getItems().
ExchangeFolderField class in com.moyosoft.exchange.folder
ExchangeFolderListener interface in com.moyosoft.exchange.folder
ExchangeId class in com.moyosoft.exchange.util
ExchangeIdFormat class in com.moyosoft.exchange.util
ExchangeItem interface in com.moyosoft.exchange.item
Base interface for all Exchange items. Specific sub-interfaces like ExchangeContact, ExchangeMail or ExchangeCalendarItem represents concrete typed Exchange items. The ExchangeFolder object contains methods to create Exchange items in a specific folder: createItem(ItemType), create ... more >
ExchangeItemAttachment interface in com.moyosoft.exchange.attachment
Represents an Exchange item attached to another Exchange item.
ExchangeItemField class in com.moyosoft.exchange.item
ExchangeItemListener interface in com.moyosoft.exchange.item
ExchangeMail interface in com.moyosoft.exchange.mail
Represents an e-mail message stored in an Exchange folder. A new e-mail can be created with the method ExchangeFolder.createMail(). To save the new e-mail to the folder, call the method save(). This class provides getter and setter methods to access or modify the message's propert ... more >
ExchangeMailbox interface in com.moyosoft.exchange.mail
Represents a mailbox that identifies a mail-enabled Active Directory service object.
ExchangeMeeting interface in com.moyosoft.exchange.calendar
Contains information of a meeting either as a calendar item or a received meeting request message.
ExchangeMeetingMessage interface in com.moyosoft.exchange.calendar
Represents a received meeting request or response message.
ExchangeMeetingRequest interface in com.moyosoft.exchange.calendar
Represents a received meeting request message.
ExchangeNewMailListener interface in com.moyosoft.exchange.util
ExchangeNotificationHandler interface in com.moyosoft.exchange.util
ExchangeNotificationWatermark interface in com.moyosoft.exchange.util
ExchangeOccurrence interface in com.moyosoft.exchange.calendar
ExchangeResponseCode class in com.moyosoft.exchange.util
ExchangeResponseMail interface in com.moyosoft.exchange.mail
ExchangeServiceClient interface in com.moyosoft.exchange.util
Represents an HTTP client accessing the Exchange Web Services (EWS). The method sendRequest is used to send a SOAP request over HTTP to the Exchange server and returns the received response. A custom client can be used by implementing this interface. Usage example: public class ... more >
ExchangeServiceClient.ExchangeRequest class in com.moyosoft.exchange.util
ExchangeServiceClient.ExchangeResponse class in com.moyosoft.exchange.util
ExchangeServiceClientFactory interface in com.moyosoft.exchange.util
ExchangeServiceException class in com.moyosoft.exchange
Indicates an error returned by the Exchange server or a communication problem with the server.
ExchangeTask interface in com.moyosoft.exchange.task
Represents a task stored in an Exchange folder. A new task can be created with the method ExchangeFolder.createTask(). To save the new task to the folder, call the method save(). This class provides getter and setter methods to access or modify the task's properties.
ExchangeUtil class in com.moyosoft.exchange.util
ExtendedProperties interface in com.moyosoft.exchange.item
ExtendedPropertyInfo class in com.moyosoft.exchange.item
ExtendedPropertyType class in com.moyosoft.exchange.item
FileAsMapping class in com.moyosoft.exchange.contact
FolderContentType class in com.moyosoft.exchange.folder
FoldersCollection interface in com.moyosoft.exchange.folder
A collection of Exchange folders. The collection allows to get, iterate over and add new folders. This class implements the Iterable interface allowing it to be a target of the foreach statement.
FoldersIterator interface in com.moyosoft.exchange.folder
Iterator over Exchange folders. Although this class implements the Iterator interface, it's preferable to use the method nextFolder() instead of Iterator.next() as the later cannot throw checked exceptions.
FolderType class in com.moyosoft.exchange.folder
FreeBusyStatus class in com.moyosoft.exchange.calendar
FreeBusyView interface in com.moyosoft.exchange.calendar
FreeBusyViewType class in com.moyosoft.exchange.calendar
If class in com.moyosoft.exchange.search
Utility class helping the creation of a restriction object used to search or filter Exchange items. This class contains definitions for all Exchange item's fields. Each field can be used to apply a specific restriction criteria. Example code showing possible usages of this class: ... more >
If.CalendarItem class in com.moyosoft.exchange.search
If.Contact class in com.moyosoft.exchange.search
If.Item class in com.moyosoft.exchange.search
If.Message class in com.moyosoft.exchange.search
If.Task class in com.moyosoft.exchange.search
ImportanceChoices class in com.moyosoft.exchange.item
InternetHeader interface in com.moyosoft.exchange.item
ItemsCollection interface in com.moyosoft.exchange.item
A collection of Exchange items. The collection allows to get, iterate over, search and sort Exchange items. This class implements the Iterable interface allowing it to be a target of the foreach statement.
ItemsIterator interface in com.moyosoft.exchange.item
Iterator over Exchange items.
ItemType class in com.moyosoft.exchange.item
MeetingRequestType class in com.moyosoft.exchange.calendar
NoteColor class in com.moyosoft.exchange.note
OutOfOfficeSettings interface in com.moyosoft.exchange.oof
RecurrencePattern interface in com.moyosoft.exchange.calendar
Represents a recurrence pattern of a calendar item. Based on the type of recurrence, the following methods are used to configure the recurrence: RecurrenceType.RecursDaily: getIntervalsetIntervalIndicates the number of days between occurrences. The value 1 (one) means the appoint ... more >
RecurrenceType class in com.moyosoft.exchange.calendar
ResponseMailType class in com.moyosoft.exchange.mail
ResponseType class in com.moyosoft.exchange.calendar
Restriction interface in com.moyosoft.exchange.search
A restriction used to search or filter Exchange items. To create a restriction object, use the utility class If. This interface cannot be implemented by user-code.
Restriction.BooleanField interface in com.moyosoft.exchange.search
Restriction.DateField interface in com.moyosoft.exchange.search
Restriction.EnumField interface in com.moyosoft.exchange.search
Restriction.Field interface in com.moyosoft.exchange.search
Restriction.IdField interface in com.moyosoft.exchange.search
Restriction.IntegerField interface in com.moyosoft.exchange.search
Restriction.RestrictedBoolean interface in com.moyosoft.exchange.search
Restriction.RestrictedDate interface in com.moyosoft.exchange.search
Restriction.RestrictedEnum interface in com.moyosoft.exchange.search
Restriction.RestrictedId interface in com.moyosoft.exchange.search
Restriction.RestrictedInteger interface in com.moyosoft.exchange.search
Restriction.RestrictedString interface in com.moyosoft.exchange.search
Restriction.RestrictedValue interface in com.moyosoft.exchange.search
Restriction.StringField interface in com.moyosoft.exchange.search
SensitivityChoices class in com.moyosoft.exchange.item
StickyNote interface in com.moyosoft.exchange.note
Represents an Outlook sticky note stored in an Exchange folder.
TaskDelegateState class in com.moyosoft.exchange.task
TaskRecurrencePattern interface in com.moyosoft.exchange.task
Represents a recurrence pattern of a task. Based on the type of recurrence, the following methods are used to configure the recurrence: TaskRecurrenceType.RecursDaily: getIntervalsetIntervalIndicates the number of days between occurrences. The value 1 (one) means the task occurs ... more >
TaskRecurrenceType class in com.moyosoft.exchange.task
TaskStatus class in com.moyosoft.exchange.task
UsersAvailability interface in com.moyosoft.exchange.calendar

Powered by JavaDocPlus