Class FlatpackDataFormat
- java.lang.Object
-
- org.apache.camel.support.service.BaseService
-
- org.apache.camel.support.service.ServiceSupport
-
- org.apache.camel.dataformat.flatpack.FlatpackDataFormat
-
- All Implemented Interfaces:
AutoCloseable,org.apache.camel.Service,org.apache.camel.ShutdownableService,org.apache.camel.spi.DataFormat,org.apache.camel.spi.DataFormatName,org.apache.camel.StatefulService,org.apache.camel.SuspendableService
@Dataformat("flatpack") public class FlatpackDataFormat extends org.apache.camel.support.service.ServiceSupport implements org.apache.camel.spi.DataFormat, org.apache.camel.spi.DataFormatNameFlatpack DataFormat. This data format supports two operations:- marshal = from List<Map<String, Object>> to OutputStream (can be converted to String)
- unmarshal = from InputStream (such as a File) to
DataSetList.
-
-
Constructor Summary
Constructors Constructor Description FlatpackDataFormat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected net.sf.flatpack.ParsercreateParser(org.apache.camel.Exchange exchange, Reader bodyReader)protected voiddoStart()protected voiddoStop()StringgetDataFormatName()StringgetDefinition()chargetDelimiter()net.sf.flatpack.ParserFactorygetParserFactory()chargetTextQualifier()booleanisAllowShortLines()booleanisFixed()booleanisIgnoreExtraColumns()booleanisIgnoreFirstRecord()voidmarshal(org.apache.camel.Exchange exchange, Object graph, OutputStream stream)voidsetAllowShortLines(boolean allowShortLines)Allows for lines to be shorter than expected and ignores the extra charactersvoidsetDefinition(String definition)voidsetDelimiter(char delimiter)voidsetFixed(boolean fixed)voidsetIgnoreExtraColumns(boolean ignoreExtraColumns)Allows for lines to be longer than expected and ignores the extra charactersvoidsetIgnoreFirstRecord(boolean ignoreFirstRecord)voidsetParserFactory(net.sf.flatpack.ParserFactory parserFactory)voidsetTextQualifier(char textQualifier)Objectunmarshal(org.apache.camel.Exchange exchange, InputStream stream)-
Methods inherited from class org.apache.camel.support.service.BaseService
build, doBuild, doFail, doInit, doLifecycleChange, doResume, doShutdown, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspend
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
getDataFormatName
public String getDataFormatName()
- Specified by:
getDataFormatNamein interfaceorg.apache.camel.spi.DataFormatName
-
marshal
public void marshal(org.apache.camel.Exchange exchange, Object graph, OutputStream stream) throws Exception- Specified by:
marshalin interfaceorg.apache.camel.spi.DataFormat- Throws:
Exception
-
unmarshal
public Object unmarshal(org.apache.camel.Exchange exchange, InputStream stream) throws Exception
- Specified by:
unmarshalin interfaceorg.apache.camel.spi.DataFormat- Throws:
Exception
-
doStart
protected void doStart() throws Exception- Overrides:
doStartin classorg.apache.camel.support.service.BaseService- Throws:
Exception
-
doStop
protected void doStop() throws Exception- Overrides:
doStopin classorg.apache.camel.support.service.BaseService- Throws:
Exception
-
getDefinition
public String getDefinition()
-
setDefinition
public void setDefinition(String definition)
-
isFixed
public boolean isFixed()
-
setFixed
public void setFixed(boolean fixed)
-
getDelimiter
public char getDelimiter()
-
setDelimiter
public void setDelimiter(char delimiter)
-
isIgnoreFirstRecord
public boolean isIgnoreFirstRecord()
-
setIgnoreFirstRecord
public void setIgnoreFirstRecord(boolean ignoreFirstRecord)
-
getTextQualifier
public char getTextQualifier()
-
setTextQualifier
public void setTextQualifier(char textQualifier)
-
getParserFactory
public net.sf.flatpack.ParserFactory getParserFactory()
-
setParserFactory
public void setParserFactory(net.sf.flatpack.ParserFactory parserFactory)
-
isAllowShortLines
public boolean isAllowShortLines()
-
setAllowShortLines
public void setAllowShortLines(boolean allowShortLines)
Allows for lines to be shorter than expected and ignores the extra characters
-
setIgnoreExtraColumns
public void setIgnoreExtraColumns(boolean ignoreExtraColumns)
Allows for lines to be longer than expected and ignores the extra characters
-
isIgnoreExtraColumns
public boolean isIgnoreExtraColumns()
-
createParser
protected net.sf.flatpack.Parser createParser(org.apache.camel.Exchange exchange, Reader bodyReader) throws IOException- Throws:
IOException
-
-