Interface EntryPreprocessor
-
public interface EntryPreprocessorThe preprocessor that intercepts and processes every archive entry before it is extracted to the repository.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.InputStreamgetProcessedStream(java.lang.String entry, java.io.InputStream inputStream, DesignImporterContext designImporterContext)Processes the input stream and returns back its processed version.
-
-
-
Method Detail
-
getProcessedStream
java.io.InputStream getProcessedStream(java.lang.String entry, java.io.InputStream inputStream, DesignImporterContext designImporterContext)Processes the input stream and returns back its processed version.- Parameters:
entry- Name of the design package entry the content of which is getting processed.inputStream- The input stream for accessing the entry contentdesignImporterContext- The design importer context- Returns:
InputStreamfor reading the processed entry content.
-
-