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

org.gecko.search.suggest.annotation.RequireSearchSuggestion 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.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.gecko.search.suggest.api.SuggestionConstants;
import org.osgi.annotation.bundle.Requirement;

/**
 * Annotation to define a require capability for the gecko search suggestion
 * @author Mark Hoffmann
 * @since 08.12.2018
 */
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({
		ElementType.TYPE, ElementType.PACKAGE
})
@Requirement(namespace = SuggestionConstants.CAPABILITY_NS, //
		name = SuggestionConstants.CAPABILITY_NAME, //
		version = SuggestionConstants.CAPABILITY_VERSION)
public @interface RequireSearchSuggestion {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy