org.jboss.guice.plugins.KernelInstanceBinder Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.guice.plugins;
import java.util.Map;
import com.google.inject.Binder;
import com.google.inject.spi.SourceProviders;
import org.jboss.beans.metadata.api.annotations.EntryValue;
import org.jboss.beans.metadata.api.annotations.Inject;
import org.jboss.beans.metadata.api.annotations.MapValue;
import org.jboss.beans.metadata.api.annotations.StringValue;
import org.jboss.beans.metadata.api.annotations.Value;
import org.jboss.kernel.plugins.bootstrap.basic.KernelConstants;
/**
* Kernel instance binder.
*
* @author Ales Justin
*/
public class KernelInstanceBinder extends InstanceBinder
{
static
{
SourceProviders.skip(KernelInstanceBinder.class);
}
public KernelInstanceBinder(Binder binder)
{
super(binder);
}
@MapValue(
value = {
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.dependency.spi.Controller", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_CONTROLLER_NAME))
),
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.kernel.Kernel", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_NAME))
),
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.kernel.spi.dependency.KernelController", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_CONTROLLER_NAME))
),
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.kernel.spi.registry.KernelBus", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_BUS_NAME))
),
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.kernel.spi.registry.KernelRegistry", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_REGISTRY_NAME))
),
@EntryValue(
key = @Value(type = "java.lang.Class", string = @StringValue(value="org.jboss.kernel.spi.config.KernelConfigurator", type = "java.lang.Class")),
value = @Value(inject = @Inject(bean = KernelConstants.KERNEL_CONFIGURATOR_NAME))
)
}
)
public void setBindings(Map bindings)
{
super.setBindings(bindings);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy