Moyosoft Products | Services | Download | Contact us    
Java Outlook Connector
Products  >  Java Outlook Connector  >  API Reference    
API Reference
   
Overview  |  
Classic JavaDoc

Overview

The Outlook class provides methods to access the Outlook application, folders and items. A typical starting point to work with Outlook is to create a new instance of this class:

Outlook outlook = new Outlook();

try
{
    // Call methods on the outlook object
}
finally
{
    outlook.dispose();
}

For more information, have a look at the Getting started guide.

See Also:

Top classes

OutlookContact class in com.moyosoft.connector.ms.outlook.contact
Represents an Outlook contact item. To access contacts stored in Outlook, please have a look at this sample application. A new contact item can be created by instantiating this class. To save the new contact in Outlook, call the method save(). This class provides getter and ... more >
OutlookMail class in com.moyosoft.connector.ms.outlook.mail
Represents an Outlook e-mail item. For an example on how to send an e-mail, please have a look at this sample application. This class provides getter and setter methods to access or modify the mail's properties.
OutlookAppointment class in com.moyosoft.connector.ms.outlook.appointment
Represents an appointment or meeting item stored in the Outlook calendar. A new appointment can be created by instantiating this class. To save the new appointment to the calendar, call the method save(). This class provides getter and setter methods to access or modify the appoin ... more >
OutlookTask class in com.moyosoft.connector.ms.outlook.task
OutlookMeeting class in com.moyosoft.connector.ms.outlook.meeting
Represents a meeting request/response sent by e-mail. An OutlookMeeting is usually received in the Inbox folder when an OutlookAppointment object is sent from another user. The OutlookMeeting object can't be directly created. It's automatically created by Outlook when an appointment ... more >
Outlook class in com.moyosoft.connector.ms.outlook
Provides access to the Outlook application. An Outlook object is the starting point for accessing Outlook, its folders and items. The code using the Outlook class has to run on the computer where the Outlook application is installed. The default constructor connects to that Outlook a ... more >
OutlookFolder class in com.moyosoft.connector.ms.outlook.folder
OutlookItem class in com.moyosoft.connector.ms.outlook.item
Base class for any Outlook item, like a mail, contact or appointment.
OutlookJournal class in com.moyosoft.connector.ms.outlook.journal
OutlookPost class in com.moyosoft.connector.ms.outlook.post
AttachmentsCollection class in com.moyosoft.connector.ms.outlook.attachment
OutlookDistributionList class in com.moyosoft.connector.ms.outlook.distlist
AddressEntry class in com.moyosoft.connector.ms.outlook.addressentry
OutlookRemoteItem class in com.moyosoft.connector.ms.outlook.remote
OutlookTaskRequest class in com.moyosoft.connector.ms.outlook.task
OutlookDocument class in com.moyosoft.connector.ms.outlook.document

Show all classes >

Community comments


Outlook Object Model API documentation
Vote up  |  Vote down
Java Outlook Connector is mainly a Java wrapper of the Microsoft's Outlook Object Model API. More documentation of the underlying Outlook API is available on Microsoft's web site.

Please have a look here for specific details about the Outlook methods and properties:

http://msdn.microsoft.com/en-us/library/aa221870.aspx


Powered by JavaDocPlus