@Section is a Key/Value pair annotation and should not be used to generate csv
------------------------------------------------------------------------------
Key: CAMEL-4916
URL: https://issues.apache.org/jira/browse/CAMEL-4916
Project: Camel
Issue Type: Bug
Components: camel-bindy
Reporter: Charles Moulliard
This model is not correct - @Section should not be used and not being mandatory
as now
{code}
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import org.apache.camel.dataformat.bindy.annotation.CsvRecord;
import org.apache.camel.dataformat.bindy.annotation.DataField;
import org.apache.camel.dataformat.bindy.annotation.Section;
@Section(number = 1)
@CsvRecord(separator = ",", isOrdered = true)
public class Order implements Serializable {
private static final long serialVersionUID = -3798205974172544528L;
// Positions of the fields start from 1 and not from 0
@DataField(pos = 1, position = 2)
private int orderNr;
@DataField(pos = 2, position = 1)
private String clientNr;
@DataField(pos = 3, position = 4)
private String firstName;
@DataField(pos = 4, position = 3)
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira