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

org.gecko.search.suggest.api.SuggestionConfiguration Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2012 - 2023 Data In Motion and others.
 * All rights reserved. 
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     Data In Motion - initial API and implementation
 */
package org.gecko.search.suggest.api;

public @interface SuggestionConfiguration {
	
	String suggestionName();
	String base_path() default "";
	int suggestionNumberResults() default 10;
	boolean suggestionAllTermsRequired() default true;
	String suggestion_type() default "AIS";
	String directory_type() default "FS";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy