See: Description
| Interface | Description |
|---|---|
| DAgent |
Represents notes agents.
|
| DAgentContext |
Represents the agent environment of the current program, if an agent is running it.
|
| DBase |
Base interface for all concrete notes interfaces.
|
| DBaseDocument |
Base interface for all concrete document interfaces.
|
| DBaseItem |
Base interface for all concrete item interfaces.
|
| DDatabase |
Represents a Notes database.
|
| DDateRange |
A date range, can be a range of date-only calendars or a range of time-only calendars.
|
| DDocument |
Represents a document in a database.
|
| DDocumentCollection |
Represents a collection of documents and provides access to documents
within it.
|
| DDxlExporter |
Represents a Notes database.
|
| DEmbeddedObject |
Represents an embedded object.
|
| DForm |
Represents a form in a database.
|
| DItem |
Represents a discrete value or set of values in a document.
|
| DLog |
Enables you to record actions and errors that take place during
a program's execution.
|
| DNotesIterator |
Base interface for iterating notes objects.
|
| DNotesMonitor |
Interface to monitor notes threads.
|
| DProfileDocument |
Represents a profile document in a database.
|
| DRichTextItem |
Represents an item of type rich text.
|
| DRichTextStyle |
Represents a Notes database.
|
| DSession |
Is the root of the Notes Objects containment hierarchy, providing access to
the other Domino objects, and represents the Domino environment of the
current program.
|
| DView |
Represents a view or folder of a database and provides access to documents
within it.
|
| DViewColumn |
Represents a column in a view or folder.
|
| DViewEntry |
Represents a view entry.
|
| Class | Description |
|---|---|
| DACL |
Represents the access control list (ACL) of a database.
|
| DAgentBase | Deprecated
use new class
DAgentBase instead |
| DNotesError |
Enumeration of notes errors.
|
| DNotesFactory |
Main entry point for applications to the domingo-API.
|
| Exception | Description |
|---|---|
| DNotesException |
Exception thrown from the domingo API.
|
| DNotesRuntimeException |
Runtime exception thrown from the domingo API.
|
You can call the Domino Objects from a Java program by importing the de.jakop.lotus.domingo package. The program can be coded as an application, a Domino agent or a servlet. Local calls access run-time code on the local computer, which must have Domino installed. CORBA-based remote (IIOP) calls access run-time code from a remote Domino server; in this case, the local computer need not have Domino installed.
import de.jakop.lotus.domingo.DNotesFactory;
import de.jakop.lotus.domingo.DSession;
import de.jakop.lotus.domingo.DDatabase;
factory = DNotesFactory.getInstance();
session = factory.getSession();
database = session.getDatabase("", "log.nsf");
You don't have to recycle these objects as in the Notes API. Instead Domingo about recycling all objects properly.
The following strategy is used to find the implementation of the API:
de.jakop.lotus.domingo.factory is checked.
If the property is available and contains non-empty string, it is interpreted
as the name of the factory class of the implementation of the API.de/bea/domingo/domingo.properties exists and contains a non-empty
property named de.jakop.lotus.domingo.factory to be used as the name of
the factory classde.jakop.lotus.domingo.proxy.NotesProxyFactory.Copyright © 2005–2020. All rights reserved.