Package net.officefloor.test
Interface TestDependencyServiceContext
-
public interface TestDependencyServiceContext
Context for theTestDependencyService
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getLoadTimeout()
Obtains the load timeout for theAutoWireStateManager
.java.lang.Class<?>
getObjectType()
Obtains the type of required dependency.java.lang.String
getQualifier()
Obtains the qualifier of required dependency.AutoWireStateManager
getStateManager()
Obtains theAutoWireStateManager
.
-
-
-
Method Detail
-
getQualifier
java.lang.String getQualifier()
Obtains the qualifier of required dependency.- Returns:
- Qualifier of required dependency. May be
null
.
-
getObjectType
java.lang.Class<?> getObjectType()
Obtains the type of required dependency.- Returns:
- Type of required dependency. May be
null
.
-
getStateManager
AutoWireStateManager getStateManager()
Obtains theAutoWireStateManager
.- Returns:
AutoWireStateManager
.
-
getLoadTimeout
long getLoadTimeout()
Obtains the load timeout for theAutoWireStateManager
.- Returns:
- Load timeout for the
AutoWireStateManager
.
-
-