Package io.undertow.servlet.util
Class ImmediateInstanceFactory<T>
- java.lang.Object
-
- io.undertow.servlet.util.ImmediateInstanceFactory<T>
-
- All Implemented Interfaces:
InstanceFactory<T>
public class ImmediateInstanceFactory<T> extends Object implements InstanceFactory<T>
- Author:
- Stuart Douglas
-
-
Constructor Summary
Constructors Constructor Description ImmediateInstanceFactory(T instance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InstanceHandle<T>createInstance()Factory that creates a fully injected instance.
-
-
-
Constructor Detail
-
ImmediateInstanceFactory
public ImmediateInstanceFactory(T instance)
-
-
Method Detail
-
createInstance
public InstanceHandle<T> createInstance() throws InstantiationException
Description copied from interface:InstanceFactoryFactory that creates a fully injected instance.- Specified by:
createInstancein interfaceInstanceFactory<T>- Returns:
- The fully injected instance
- Throws:
InstantiationException
-
-