Class ASN1DataFormat
- java.lang.Object
-
- org.apache.camel.model.IdentifiedType
-
- org.apache.camel.model.DataFormatDefinition
-
- org.apache.camel.model.dataformat.ASN1DataFormat
-
@Metadata(firstVersion="2.20.0", label="dataformat,transformation,file", title="ASN.1 File") public class ASN1DataFormat extends DataFormatDefinition
Encode and decode data structures using Abstract Syntax Notation One (ASN.1).
-
-
Constructor Summary
Constructors Constructor Description ASN1DataFormat()
ASN1DataFormat(Boolean usingIterator)
ASN1DataFormat(String clazzName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClazzName()
String
getUsingIterator()
void
setClazzName(String clazzName)
Name of class to use when unmarshallingvoid
setUsingIterator(String usingIterator)
If the asn1 file has more then one entry, the setting this option to true, allows to work with the splitter EIP, to split the data using an iterator in a streaming mode.-
Methods inherited from class org.apache.camel.model.DataFormatDefinition
getDataFormat, getDataFormatName, getShortName, setDataFormat, setDataFormatName
-
Methods inherited from class org.apache.camel.model.IdentifiedType
getId, setId
-
-
-
-
Method Detail
-
getUsingIterator
public String getUsingIterator()
-
setUsingIterator
public void setUsingIterator(String usingIterator)
If the asn1 file has more then one entry, the setting this option to true, allows to work with the splitter EIP, to split the data using an iterator in a streaming mode.
-
getClazzName
public String getClazzName()
-
setClazzName
public void setClazzName(String clazzName)
Name of class to use when unmarshalling
-
-