org.xbib.elx.api.IndexPruneResult Maven / Gradle / Ivy
package org.xbib.elx.api;
import java.util.List;
public interface IndexPruneResult {
enum State { NOTHING_TO_DO, SUCCESS, NONE };
State getState();
List getCandidateIndices();
List getDeletedIndices();
boolean isAcknowledged();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy