Package org.jboss.msc.value
Class SetValue<T>
- java.lang.Object
-
- org.jboss.msc.value.SetValue<T>
-
- Type Parameters:
T
- the set member type
@Deprecated public final class SetValue<T> extends Object implements Value<Set<T>>
Deprecated.UseServiceBuilder.requires(org.jboss.msc.service.ServiceName)
method instead. This class will be removed in a future release.A set value.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Set<T>
getValue()
Deprecated.Get the actual dependency value.
-
-
-
Method Detail
-
getValue
public Set<T> getValue() throws IllegalStateException
Deprecated.Get the actual dependency value.- Specified by:
getValue
in interfaceValue<T>
- Returns:
- the actual dependency value
- Throws:
IllegalStateException
- if the value is time-sensitive and the current state does not allow retrieval.
-
-