Interface SubstitutableFactory
- All Known Implementing Classes:
SubstituableFactoryImpl
public interface SubstitutableFactory
Factory to retrieve all the
Substitutable entries from a FileEntry or an Archive.
NOTE: Client can provide the their own implementation to customize the retrieval of substitutable entries from a file entry or an archive.
-
Method Summary
Modifier and TypeMethodDescriptionList<? extends Substitutable> getArchiveEntrySubstitutable(Archive archive) Get's all theSubstitutableentries from anArchive.List<? extends Substitutable> getFileEntrySubstituables(FileEntry fileEntry) Get's all theSubstitutableentries from aFileEntry.
-
Method Details
-
getFileEntrySubstituables
Get's all theSubstitutableentries from aFileEntry. A file entry can point to a file/directory or can contain pattern or wild card characters.- Parameters:
fileEntry- A file entry.- Returns:
- All the eligible
Substitutableentries from a file entry.
-
getArchiveEntrySubstitutable
Get's all theSubstitutableentries from anArchive. An archive entry can contain one or multiple member entries or can point the entries from nested archives.- Parameters:
archive- An archive.- Returns:
- All the eligible
Substitutableentries from an archive.
-