com.autonomy.nonaci.indexing.impl.DreExportXmlCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of indexing-api Show documentation
Show all versions of indexing-api Show documentation
API for indexing into IDOL using Java
/*
* (c) Copyright 2008-2015 Micro Focus or one of its affiliates.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Micro Focus and its affiliates
* and licensors ("Micro Focus") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Micro Focus shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.autonomy.nonaci.indexing.impl;
/**
* Allows you to export XML documents from one or more IDOL databases (use DREEXPORTIDX to export IDX
* documents).
*
* Note:
*
* - Multisection documents are not split across chunks, so the BatchSize specified in the
* configuration file is not used exactly if this would require a document section to be split.
* - You do not need to uncompress compressed XML files before indexing them. For example, the command
* DREADD?output-0.xml.gz indexes the output-0.xml.gz file correctly without you
* uncompressing the file first.
*
*
* @author boba
*/
public class DreExportXmlCommand extends AbstractExportCommand {
/** Creates a new instance of DreExportXmlCommand */
public DreExportXmlCommand() {
super(CMD_DREEXPORTXML);
}
} // End of class DreExportXmlCommand...