/** * Copyright (c) 2012 - 2019 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 v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Data In Motion - initial API and implementation */ package org.gecko.rsa.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.osgi.annotation.bundle.Requirement; /** * A Convenient Annotation to require the Gecko Message Adapter based RSA Provider * @author Juergen Albert * @since 15 Jul 2019 */ @Documented @Retention(RetentionPolicy.CLASS) @Target({ ElementType.TYPE, ElementType.PACKAGE }) @Requirement(namespace = "osgi.remoteserviceadmin.distribution", // version = "1.1.0", filter = "(configs=gecko.rsa.ma)") public @interface RequireGeckoMessageAdapterRSAProvider { }