Interface ProductionZipEntriesErrorsCollector
-
- All Known Implementing Classes:
DirectoriesErrorsCollector,ProductionExtensionErrorsCollector
public interface ProductionZipEntriesErrorsCollectorDedicated Collector for fetching zip entries errors (e.g. from production packages)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcollect(SafeZipEntry entry)collects informtion from given zip entryvoidfinish()Allows to react on finishing the collecting process, e.g.java.util.List<java.lang.String>getErrors()returns collected errors
-
-
-
Method Detail
-
collect
void collect(SafeZipEntry entry)
collects informtion from given zip entry- Parameters:
entry- the zip entry, can be a file or directory
-
finish
void finish()
Allows to react on finishing the collecting process, e.g. some post processing, etc...
-
getErrors
java.util.List<java.lang.String> getErrors()
returns collected errors- Returns:
- all collected errors
-
-