Package org.jboss.msc.inject
Class MapInjector<K,T>
- java.lang.Object
-
- org.jboss.msc.inject.MapInjector<K,T>
-
- Type Parameters:
K
- the key typeT
- the value type
- All Implemented Interfaces:
Injector<T>
@Deprecated public final class MapInjector<K,T> extends Object implements Injector<T>
Deprecated.UseServiceBuilder.provides(org.jboss.msc.service.ServiceName...)
method instead. This class will be removed in a future release.An injector which applies a value to a map entry.- Author:
- David M. Lloyd
-
-
Constructor Summary
Constructors Constructor Description MapInjector(Map<K,T> map, K key)
Deprecated.Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
inject(T value)
Deprecated.Inject the given value.void
uninject()
Deprecated.Uninject the given value (in other words, cancel or undo a previous injection).
-
-
-
Method Detail
-
inject
public void inject(T value) throws InjectionException
Deprecated.Inject the given value.- Specified by:
inject
in interfaceInjector<K>
- Parameters:
value
- the value- Throws:
InjectionException
- if the injection failed
-
-