blob: 70b07298c0a9a9cc7ff4f58fb79f0f68c2c3d25c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.core.di.extensions;
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 javax.inject.Qualifier;
/**
* Annotation to use with DI to support dynamics and multiple services
*/
@Qualifier
@Documented
@Target({ ElementType.FIELD, ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
public @interface Service {
/**
* @return <code>true</code> to track dynamics e.g. in OSGi where services
* can come and go
*/
boolean dynamic() default true;
/**
* @return ldap filter expression
*/
String filterExpression() default "";
}