Interface MetaInfPathValidator
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default @Nullable Collection<ValidationMessage>
validateMetaInfPath(@NotNull Path filePath)
Deprecated.UsevalidateMetaInfPath(Path, Path, boolean)
instead.default @Nullable Collection<ValidationMessage>
validateMetaInfPath(@NotNull Path filePath, @NotNull Path basePath, boolean isFolder)
Called for each file/folder below META-INF.
-
-
-
Method Detail
-
validateMetaInfPath
@Deprecated @Nullable default @Nullable Collection<ValidationMessage> validateMetaInfPath(@NotNull @NotNull Path filePath)
Deprecated.UsevalidateMetaInfPath(Path, Path, boolean)
instead.Called for each file/folder below META-INF.- Parameters:
filePath
- the relative file/folder path to the META-INF directory- Returns:
- validation messages or
null
-
validateMetaInfPath
@Nullable default @Nullable Collection<ValidationMessage> validateMetaInfPath(@NotNull @NotNull Path filePath, @NotNull @NotNull Path basePath, boolean isFolder)
Called for each file/folder below META-INF.- Parameters:
filePath
- the relative file/folder path to the META-INF directory (given inbasePath
)basePath
- the absolute path to the META-INF directory to whichfilePath
is relativeisFolder
-true
in case it is a folder, otherwisefalse
- Returns:
- validation messages or
null
-
-