X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fadsal%2Fnorthbound%2Fbundlescanner%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnorthbound%2Fbundlescanner%2FIBundleScanService.java;fp=opendaylight%2Fadsal%2Fnorthbound%2Fbundlescanner%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnorthbound%2Fbundlescanner%2FIBundleScanService.java;h=0000000000000000000000000000000000000000;hb=50f88249a65c52ba56a48852b71ce432fed2bbeb;hp=dde205acd629148a8ce4beda31a1b73e0711211f;hpb=abfa9a03550cbe9fccc4420684dced175dd6d119;p=controller.git diff --git a/opendaylight/adsal/northbound/bundlescanner/api/src/main/java/org/opendaylight/controller/northbound/bundlescanner/IBundleScanService.java b/opendaylight/adsal/northbound/bundlescanner/api/src/main/java/org/opendaylight/controller/northbound/bundlescanner/IBundleScanService.java deleted file mode 100644 index dde205acd6..0000000000 --- a/opendaylight/adsal/northbound/bundlescanner/api/src/main/java/org/opendaylight/controller/northbound/bundlescanner/IBundleScanService.java +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Copyright (c) 2013 Cisco Systems, Inc. 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 - */ - -package org.opendaylight.controller.northbound.bundlescanner; - -import java.util.List; -import java.util.Set; - -import org.osgi.framework.BundleContext; - -/** - * The bundle scan service provides services which allow introspection of - * bundle classes for detecting annotated classes. The scanning is performed - * when a bundle is RESOLVED. - */ -public interface IBundleScanService { - /** - * The list of annotations to be scanned - */ - public final String[] ANNOTATIONS_TO_SCAN = { - "javax.xml.bind.annotation.*", // JAXB annotatinos - "javax.ws.rs.*" // JAX-RS annotatinos - }; - - - public List> getAnnotatedClasses( - BundleContext context, - String[] annotations, - Set excludes, - boolean includeDependentBundleClasses); -}