public final class ClasspathParameterResolverFactory extends Object
ServiceLoader
mechanism to locate and initialize them.
This means for this class to find implementations, their fully qualified class name has to be put into a file called
META-INF/services/org.axonframework.messaging.annotation.ParameterResolverFactory
. For more details, see
ServiceLoader
.ServiceLoader
Modifier and Type | Method and Description |
---|---|
static ParameterResolverFactory |
forClass(Class<?> clazz)
Creates an instance for the given
clazz . |
static ParameterResolverFactory |
forClassLoader(ClassLoader classLoader)
Creates an instance using the given
classLoader . |
public static ParameterResolverFactory forClass(Class<?> clazz)
clazz
. Effectively, the class loader of the given class is used
to locate implementations.clazz
- The class for which the parameter resolver must be returnedpublic static ParameterResolverFactory forClassLoader(ClassLoader classLoader)
classLoader
. Implementations are located using this class
loader.classLoader
- The class loader to locate the implementations withCopyright © 2010–2019. All rights reserved.