You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (Jira)" <ji...@apache.org> on 2022/09/02 08:36:00 UTC

[jira] [Resolved] (CAMEL-4108) camel-bindy - Add more flexibility to DataField

     [ https://issues.apache.org/jira/browse/CAMEL-4108?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-4108.
--------------------------------
    Resolution: Abandoned

> camel-bindy - Add more flexibility to DataField
> -----------------------------------------------
>
>                 Key: CAMEL-4108
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4108
>             Project: Camel
>          Issue Type: New Feature
>          Components: camel-bindy
>            Reporter: Niels Peter Strandberg
>            Priority: Minor
>             Fix For: Future
>
>
> 1) Add a "toEnd" to the DateField:
> CSV file:
> {code}
> w,RegionH,1234,4567,5565
> w,KIT,233,233
> d,Rigshospitalet
> {code}
> The model:
> {code}
> @CsvRecord(separator = ",")
> public class Org {
>    @DataField(pos = 1)
>    private String type;
> 	
>    @DataField(pos = 2)
>    private String name;
>    @DataField(pos = 3, toEnd = true)
>    private List<Integer> ids;
> }
> {code}
> The "ids" list will then contain the result for pos 3 to the end of the line. 
> 2) Add a "endPos" to the DateField:
> CSV file:
> {code}
> w,RegionH,1234,4567,5565,m
> w,KIT,233,233,4545,m
> d,Rigshospitalet,343434,3434,3434,r
> {code}
> The model:
> {code}
> @CsvRecord(separator = ",")
> public class Org {
>    @DataField(pos = 1)
>    private String type;
>    @DataField(pos = 2)
>    private String name;
>    @DataField(pos = 3, endPos = 5)
>     private List<Integer> ids;
>    @DataField(pos = 6)
>    private String action;
> }
> {code}
> The "ids" list will then contain the result for pos 3 to 5. 
> I have a prototype for the unmarshalling.
> /Niels Peter Strandberg



--
This message was sent by Atlassian Jira
(v8.20.10#820010)