AclImportOption (DxlImporter - Java)

Read-write. Indicates the handling of the incoming ACL entries: ignore, replace, or update.

Defined in

DxlImporter

Data type

int

Syntax

public int getAclImportOption()
    throws NotesException
public void setAclImportOption(int option)
    throws NotesException

Legal values

  • DxlImporter.DXLIMPORTOPTION_IGNORE (1)

    (Default) Ignores any ACL in the incoming DXL and uses the ACL in the output database as is.

  • DxlImporter.DXLIMPORTOPTION_REPLACE_ELSE_IGNORE (5)

    Replaces the ACL in the output database with the ACL in the incoming DXL.

  • DxlImporter.DXLIMPORTOPTION_UPDATE_ELSE_CREATE (10)

    Replaces ACL entries in the output database with ACL entries in the incoming DXL that match and adds any new ACL entries from the incoming DXL.

  • DxlImporter.DXLIMPORTOPTION_UPDATE_ELSE_IGNORE (9)

    Replaces ACL entries in the output database with ACL entries in the incoming DXL that match and leaves non-matching ACL entries in the output database.