All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.autonomy.nonaci.indexing.impl.DreAddDataCommand Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * (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...





© 2015 - 2024 Weber Informatics LLC | Privacy Policy