Package io.quarkus.qute
Interface Resolver
-
- All Known Subinterfaces:
NamespaceResolver,ValueResolver
- All Known Implementing Classes:
NamespaceResolver.NamespaceResolverImpl,ReflectionValueResolver
public interface Resolver- See Also:
ValueResolver,NamespaceResolver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<Object>resolve(EvalContext context)This method should return an instance ofResults#NotFoundif it's not possible to resolve the context.
-
-
-
Method Detail
-
resolve
CompletionStage<Object> resolve(EvalContext context)
This method should return an instance ofResults#NotFoundif it's not possible to resolve the context. Any other value is considered a valid result, includingnull.- Parameters:
context-- Returns:
- the result
-
-