Merge "Address @XmlSeeAlso limitation. Provide the ability to inject the JAXB types...
[controller.git] / opendaylight / northbound / bundlescanner / implementation / src / main / java / org / opendaylight / controller / northbound / bundlescanner / internal / BundleScanServiceImpl.java
1 package org.opendaylight.controller.northbound.bundlescanner.internal;
2
3 import java.util.List;
4
5 import org.opendaylight.controller.northbound.bundlescanner.IBundleScanService;
6 import org.osgi.framework.BundleContext;
7
8 public class BundleScanServiceImpl implements IBundleScanService {
9
10     public BundleScanServiceImpl() {}
11
12
13     @Override
14     public List<Class<?>> getAnnotatedClasses(BundleContext context,
15             String[] annotations,
16             boolean includeDependentBundleClasses)
17     {
18         return BundleScanner.getInstance().getAnnotatedClasses(
19                 context, annotations, includeDependentBundleClasses);
20     }
21
22 }