Interface PojoPathsDefinition
-
@Deprecated public interface PojoPathsDefinition
Deprecated.ImplementPojoPathDefinitionProvider
instead.A static definition of POJO paths for a given entity type, allowing the creation of path filters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
interpretPaths(Set<String> target, Set<PojoModelPathValueNode> source)
Deprecated.List<String>
preDefinedOrdinals()
Deprecated.
-
-
-
Method Detail
-
preDefinedOrdinals
List<String> preDefinedOrdinals()
Deprecated.- Returns:
- The string representations of pre-defined paths, with their index matching their intended ordinal.
-
interpretPaths
void interpretPaths(Set<String> target, Set<PojoModelPathValueNode> source)
Deprecated.- Parameters:
target
- A set to which the string representations of paths should be appended.source
- A set of paths to check for correctness (can it be ever marked as dirty?) and to turn into their string representation. The set must be non-null and non-empty, and the elements must be non-null. Container value extractor paths must be completely resolved:ContainerExtractorPath.defaultExtractors()
is an invalid value that must never appear in the given paths.
-
-