blob: 0f9773461ed77f1f002dec4f5863af030ef5c81e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ace.bnd.registry;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import aQute.bnd.service.Registry;
/**
* BND Registry implementation that can be used when using bnd plugins
* outside a bnd workspace.
*
*/
public class RegistryImpl implements Registry {
private final List<Object> m_plugins;
public RegistryImpl() {
m_plugins = new ArrayList<>();
}
public RegistryImpl(Object... plugins) {
m_plugins = new ArrayList<>(Arrays.asList(plugins));
}
public void addPlugin(Object plugin) {
m_plugins.add(plugin);
}
public void removePlugin(Object plugin) {
m_plugins.remove(plugin);
}
@SuppressWarnings("unchecked")
@Override
public <T> List<T> getPlugins(Class<T> c) {
List<T> plugins = new ArrayList<>();
for (Object plugin: m_plugins) {
if (c.isInstance(plugin)){
plugins.add((T)plugin);
}
}
return plugins;
}
@SuppressWarnings("unchecked")
@Override
public <T> T getPlugin(Class<T> c) {
for (Object plugin: m_plugins) {
if (c.isInstance(plugin)){
return (T)plugin;
}
}
return null;
}
}