de.bea.domingo
Interface DDxlExporter

All Superinterfaces:
DBase, java.io.Serializable
All Known Implementing Classes:
DxlExporterProxy

public interface DDxlExporter
extends DBase

Represents a Notes database.

Author:
Kurt Riede

Method Summary
 java.lang.String exportDxl(DDatabase database)
          Converts Domino data to DXL data.
 java.lang.String exportDxl(DDocument document)
          Converts Domino data to DXL data.
 java.lang.String exportDxl(DDocumentCollection documentCollection)
          Converts Domino data to DXL data.
 boolean getConvertNotesBitmapsToGIF()
          Indicates whether bit maps pasted in rich text items should be converted to GIF format.
 java.lang.String getDoctypeSYSTEM()
          The value of SYSTEM in the exported !
 boolean getOutputDOCTYPE()
          Indicates whether a !
 void setConvertNotesBitmapsToGIF(boolean flag)
           
 void setDoctypeSYSTEM(java.lang.String systemId)
          The value of SYSTEM in the exported !
 void setOutputDoctype(boolean flag)
          Indicates whether a !
 
Methods inherited from interface de.bea.domingo.DBase
equals, hashCode, toString
 

Method Detail

exportDxl

java.lang.String exportDxl(DDatabase database)
                           throws DNotesException
Converts Domino data to DXL data.

Parameters:
database - The Domino data to be converted, in this case the entire database.
Returns:
The exported DXL.
Throws:
DNotesException - if the Domino data cannot be exported

exportDxl

java.lang.String exportDxl(DDocument document)
                           throws DNotesException
Converts Domino data to DXL data.

Parameters:
document - The Domino data to be converted, in this case one document.
Returns:
The exported DXL.
Throws:
DNotesException - if the Domino data cannot be exported

exportDxl

java.lang.String exportDxl(DDocumentCollection documentCollection)
                           throws DNotesException
Converts Domino data to DXL data.

Parameters:
documentCollection - document The Domino data to be converted, in this case the documents in a document collection.
Returns:
The exported DXL.
Throws:
DNotesException - if the Domino data cannot be exported

getOutputDOCTYPE

boolean getOutputDOCTYPE()
Indicates whether a !DOCTYPE statement is exported or not.

Returns:
true (default) to export a !DOCTYPE statement

setOutputDoctype

void setOutputDoctype(boolean flag)
Indicates whether a !DOCTYPE statement is exported or not.

Parameters:
flag - true (default) to export a !DOCTYPE statement

getDoctypeSYSTEM

java.lang.String getDoctypeSYSTEM()
The value of SYSTEM in the exported !DOCTYPE statement.

Returns:
system doctype

setDoctypeSYSTEM

void setDoctypeSYSTEM(java.lang.String systemId)
The value of SYSTEM in the exported !DOCTYPE statement.

Parameters:
systemId - system doctype

setConvertNotesBitmapsToGIF

void setConvertNotesBitmapsToGIF(boolean flag)
Parameters:
flag - true to convert bit maps false (default) to leave bit maps in Notes format

getConvertNotesBitmapsToGIF

boolean getConvertNotesBitmapsToGIF()
Indicates whether bit maps pasted in rich text items should be converted to GIF format.

Returns:
true to convert bit maps false (default) to leave bit maps in Notes format


Domingo Java-API