com.autonomy.nonaci.indexing.impl.DreAddDataCommand 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;
/**
* The DREADDDATA command allows you to index data over a socket into an IDOL server. Parameters you
* use with DREADDDATA override any equivalent settings in IDOL server's configuration file.
*
* If you have set DelayedSync to true or you have set a high MaxSyncDelay in the
* configuration file, some time may elapse before a file is indexed.
*
* It is preferred that you use the {@link #setKillDuplicates(String)} method rather than setting the kill mode on the
* POST content.
*
* You must specify dreDbName or databaseFields if the IDOL server configuration file does not contain
* a field process that allows it to read documents' destination databases from fields they contain.
*
* Note: This command requires a POST request method.
*
* @author boba
*/
public class DreAddDataCommand extends AbstractAddCommand {
/** Creates a new instance of DreAddDataCommand. */
public DreAddDataCommand() {
super(CMD_DREADDDATA);
}
} // End of class DreAddDataCommand...