Uses of Class
in.co.akshitbansal.springwebquery.resolver.field.ResolutionResult
Packages that use ResolutionResult
Package
Description
Field-resolution strategies and factories used to translate request-facing
selectors into entity-backed property paths for filtering and sorting.
Cache infrastructure for memoizing DTO-aware field-resolution outcomes.
-
Uses of ResolutionResult in in.co.akshitbansal.springwebquery.resolver.field
Methods in in.co.akshitbansal.springwebquery.resolver.field that return ResolutionResultModifier and TypeMethodDescriptionDTOAwareFieldResolver.resolvePath(@NonNull String dtoPath) Resolves a DTO selector path and maps the selector to the corresponding entity path.EntityAwareFieldResolver.resolvePath(@NonNull String reqFieldPath) Resolves an entity-facing selector path.FieldResolver.resolvePath(@NonNull String path) Resolves the supplied selector path. -
Uses of ResolutionResult in in.co.akshitbansal.springwebquery.resolver.field.cache
Methods in in.co.akshitbansal.springwebquery.resolver.field.cache that return ResolutionResultModifier and TypeMethodDescription@Nullable ResolutionResultDTOAwareFieldResolutionCache.resolveFromCache(@NonNull CacheKey cacheKey) Returns a cached successful resolution result when present or rethrows a cached failure for the same key.CachedDTOAwareFieldResolver.resolvePath(@NonNull String dtoPath) Resolves the supplied DTO selector path, consulting and populating the shared cache around the superclass's reflective resolution logic.Methods in in.co.akshitbansal.springwebquery.resolver.field.cache with parameters of type ResolutionResultModifier and TypeMethodDescriptionvoidDTOAwareFieldResolutionCache.putSuccessfulResolution(@NonNull CacheKey cacheKey, @NonNull ResolutionResult result) Stores a successful DTO-aware path-resolution result.