Package org.frankframework.pipes
Class CompressPipe
java.lang.Object
org.frankframework.core.TransactionAttributes
org.frankframework.pipes.AbstractPipe
org.frankframework.pipes.FixedForwardPipe
org.frankframework.pipes.CompressPipe
- All Implemented Interfaces:
FrankElement,HasApplicationContext,HasName,HasTransactionAttribute,IConfigurable,IForwardTarget,IPipe,IScopeProvider,IWithParameters,NameAware,EventThrowing,org.springframework.beans.factory.Aware,org.springframework.context.ApplicationContextAware,org.springframework.context.Lifecycle
Pipe to zip or unzip a message or file.
- Author:
- John Dekker, Jaco de Groot
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.frankframework.pipes.AbstractPipe
parameterNamesMustBeUniqueFields inherited from class org.frankframework.core.TransactionAttributes
logFields inherited from interface org.frankframework.core.IPipe
LONG_DURATION_MONITORING_EVENT, MESSAGE_SIZE_MONITORING_EVENT, PIPE_EXCEPTION_MONITORING_EVENT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks for correct configuration of forward.doPipe(Message message, PipeLineSession session) This is where the action takes place.booleanvoidsetCompress(boolean b) Iftrue, the pipe compresses; otherwise, it decompresses.voidsetFileFormat(CompressPipe.FileFormat format) voidsetFilenamePattern(String string) Deprecated, for removal: This API element is subject to removal in a future version.voidsetMessageIsContent(boolean b) A flag that indicates whether the message is the content or the path to a file with the contents.voidsetOutputDirectory(String string) Deprecated, for removal: This API element is subject to removal in a future version.voidsetResultIsContent(boolean b) A flag that indicates whether the result must be written to the message or to a file (filename = message).voidsetZipEntryPattern(String string) Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.frankframework.pipes.FixedForwardPipe
getParameterValue, setIfParam, setIfValue, setOnlyIfSessionKey, setOnlyIfValue, setSkipOnEmptyInput, setUnlessSessionKey, setUnlessValue, skipPipeMethods inherited from class org.frankframework.pipes.AbstractPipe
addForward, addParameter, consumesSessionVariable, createBean, findForward, getAdapter, getEventSourceName, getForwards, getParameterList, hasRegisteredForward, isRunning, registerEvent, setApplicationContext, setChompCharSize, setDurationThreshold, setElementToMove, setElementToMoveChain, setElementToMoveSessionKey, setEmptyInputReplacement, setGetInputFromFixedValue, setGetInputFromSessionKey, setHideRegex, setLocker, setLogIntermediaryResults, setMaxThreads, setName, setPreserveInput, setRemoveCompactMsgNamespaces, setRestoreMovedElements, setSecLogSessionKeys, setSizeStatistics, setStoreResultInSessionKey, setWriteToSecLog, sizeStatisticsEnabled, start, stop, throwEventMethods inherited from class org.frankframework.core.TransactionAttributes
configureTransactionAttributes, isTransacted, isTransacted, setTransacted, setTransactionTimeoutMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.frankframework.core.FrankElement
addConfigWarningMethods inherited from interface org.frankframework.core.HasApplicationContext
getApplicationContext, getConfigurationClassLoaderMethods inherited from interface org.frankframework.core.HasTransactionAttribute
getTransactionAttribute, getTransactionTimeout, getTxDef, setTransactionAttributeMethods inherited from interface org.frankframework.core.IForwardTarget
getNameMethods inherited from interface org.frankframework.core.IPipe
getChompCharSize, getDurationThreshold, getElementToMove, getElementToMoveChain, getElementToMoveSessionKey, getEmptyInputReplacement, getGetInputFromFixedValue, getGetInputFromSessionKey, getHideRegex, getLocker, getLogIntermediaryResults, getMaxThreads, getSecLogSessionKeys, getStoreResultInSessionKey, isPreserveInput, isRemoveCompactMsgNamespaces, isRestoreMovedElements, isWriteToSecLog, setPipeLine, throwEvent
-
Constructor Details
-
CompressPipe
public CompressPipe()
-
-
Method Details
-
configure
Description copied from class:FixedForwardPipeChecks for correct configuration of forward.- Specified by:
configurein interfaceIConfigurable- Overrides:
configurein classFixedForwardPipe- Throws:
ConfigurationException- in case it was not able to configure the component.
-
doPipe
Description copied from interface:IPipeThis is where the action takes place. Pipes may only throw a PipeRunException, to be handled by the caller of this object. Implementations must either consume the message, or pass it on to the next Pipe in the PipeRunResult.- Throws:
PipeRunException
-
setCompress
public void setCompress(boolean b) Iftrue, the pipe compresses; otherwise, it decompresses.- Default value
- false
-
setFilenamePattern
@Deprecated(forRemoval=true, since="8.1") @ConfigurationWarning("Please use a LocalFileSystemPipe with filename parameter (and optionally a pattern)") public void setFilenamePattern(String string) Deprecated, for removal: This API element is subject to removal in a future version.required if result is a file, the pattern for the result filename. Can be set with variables e.g. {file}.{ext}.zip in this example the {file} and {ext} variables are resolved with sessionKeys with the same name -
setMessageIsContent
public void setMessageIsContent(boolean b) A flag that indicates whether the message is the content or the path to a file with the contents. For multiple files, use ';' as a delimiter.- Default value
- false
-
setOutputDirectory
@Deprecated(forRemoval=true, since="8.1") @ConfigurationWarning("Please use resultIsContent=true in combination with a LocalFileSystemPipe") public void setOutputDirectory(String string) Deprecated, for removal: This API element is subject to removal in a future version.Required if the result is a file. The directory in which to store the result file. -
setResultIsContent
public void setResultIsContent(boolean b) A flag that indicates whether the result must be written to the message or to a file (filename = message).- Default value
- true when outputDirectory is not set.
-
isResultIsContent
public boolean isResultIsContent() -
setZipEntryPattern
@Deprecated(forRemoval=true, since="8.1") @ConfigurationWarning("Please use parameter zipEntryPattern (in combination with the pattern attribute)") public void setZipEntryPattern(String string) Deprecated, for removal: This API element is subject to removal in a future version.The pattern for the zip entry name in case a zip file is read or written. -
setFileFormat
-