Package org.soulwing.prospecto.spi
Interface UrlResolverProvider
-
public interface UrlResolverProviderA provider for aUrlResolver.- Author:
- Carl Harris
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestroy()Prepares this provider to be discarded.UrlResolvergetResolver()Retrieves the resolver instance.voidinit(Map<String,Object> properties)Initializes this provider.
-
-
-
Method Detail
-
init
void init(Map<String,Object> properties)
Initializes this provider.- Parameters:
properties- configuration properties
-
destroy
void destroy()
Prepares this provider to be discarded.
-
getResolver
UrlResolver getResolver()
Retrieves the resolver instance.As specified in the documentation for
UrlResolver, the provided implementation must be thread safe.- Returns:
- URL resolver
-
-