Added: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java?rev=1443631&view=auto ============================================================================== --- camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java (added) +++ camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java Thu Feb 7 17:59:42 2013 @@ -0,0 +1,272 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.dataformat.bindy.fixed.ordinal; + +import java.math.BigDecimal; +import java.util.Arrays; +import java.util.Calendar; +import java.util.Date; +import java.util.GregorianCalendar; +import org.apache.camel.EndpointInject; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.dataformat.bindy.annotation.DataField; +import org.apache.camel.dataformat.bindy.annotation.FixedLengthRecord; + +import org.apache.camel.model.dataformat.BindyType; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Assert; +import org.junit.Test; + + +/** + * This test validates that fixed length records can be defined and processed using ordinal 'pos' values, and + * lengths declared for each field. Strict position calculations in FixedLength records is not necessary. The + * records will be marshalled using the relative the order of the 'pos' values. + */ +public class BindySimpleFixedLengthOrdinalPosTest extends CamelTestSupport { + + public static final String URI_DIRECT_MARSHALL = "direct:marshall"; + public static final String URI_DIRECT_UNMARSHALL = "direct:unmarshall"; + public static final String URI_MOCK_MARSHALL_RESULT = "mock:marshall-result"; + public static final String URI_MOCK_UNMARSHALL_RESULT = "mock:unmarshall-result"; + + private static final String TEST_RECORD = "10A9 PaulineM ISINXD12345678BUYShare000002500.45USD01-08-2009Hello \r\n"; + + @EndpointInject(uri = URI_MOCK_MARSHALL_RESULT) + private MockEndpoint marshallResult; + + @EndpointInject(uri = URI_MOCK_UNMARSHALL_RESULT) + private MockEndpoint unmarshallResult; + + // ************************************************************************* + // TESTS + // ************************************************************************* + + @Test + public void testUnmarshallMessage() throws Exception { + + unmarshallResult.expectedMessageCount(1); + template.sendBody(URI_DIRECT_UNMARSHALL, TEST_RECORD); + + unmarshallResult.assertIsSatisfied(); + + // check the model + BindySimpleFixedLengthOrdinalPosTest.Order order = + (BindySimpleFixedLengthOrdinalPosTest.Order) unmarshallResult.getReceivedExchanges().get(0).getIn().getBody(); + Assert.assertEquals(10, order.getOrderNr()); + // the field is not trimmed + Assert.assertEquals(" Pauline", order.getFirstName()); + Assert.assertEquals("M ", order.getLastName()); + Assert.assertEquals("Hello ", order.getComment()); + } + + @Test + public void testMarshallMessage() throws Exception { + BindySimpleFixedLengthOrdinalPosTest.Order order = new Order(); + order.setOrderNr(10); + order.setOrderType("BUY"); + order.setClientNr("A9"); + order.setFirstName("Pauline"); + order.setLastName("M"); + order.setAmount(new BigDecimal("2500.45")); + order.setInstrumentCode("ISIN"); + order.setInstrumentNumber("XD12345678"); + order.setInstrumentType("Share"); + order.setCurrency("USD"); + Calendar calendar = new GregorianCalendar(); + calendar.set(2009, 7, 1); + order.setOrderDate(calendar.getTime()); + order.setComment("Hello"); + + marshallResult.expectedMessageCount(1); + marshallResult.expectedBodiesReceived(Arrays.asList(new String[] {TEST_RECORD})); + template.sendBody(URI_DIRECT_MARSHALL, order); + marshallResult.assertIsSatisfied(); + } + + // ************************************************************************* + // ROUTES + // ************************************************************************* + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + RouteBuilder routeBuilder = new RouteBuilder() { + + @Override + public void configure() throws Exception { + from(URI_DIRECT_MARSHALL) + .marshal().bindy(BindyType.Fixed, BindySimpleFixedLengthOrdinalPosTest.Order.class) + .to(URI_MOCK_MARSHALL_RESULT); + + from(URI_DIRECT_UNMARSHALL) + .unmarshal().bindy(BindyType.Fixed, BindySimpleFixedLengthOrdinalPosTest.Order.class) + .to(URI_MOCK_UNMARSHALL_RESULT); + } + }; + + return routeBuilder; + } + + // ************************************************************************* + // DATA MODEL + // ************************************************************************* + @FixedLengthRecord() + public static class Order { + + @DataField(pos = 1, length = 2) + private int orderNr; + + @DataField(pos = 2, length = 2) + private String clientNr; + + @DataField(pos = 3, length = 9) + private String firstName; + + @DataField(pos = 4, length = 5, align = "L") + private String lastName; + + @DataField(pos = 5, length = 4) + private String instrumentCode; + + @DataField(pos = 6, length = 10) + private String instrumentNumber; + + @DataField(pos = 7, length = 3) + private String orderType; + + @DataField(pos = 8, length = 5) + private String instrumentType; + + @DataField(pos = 9, precision = 2, length = 12, paddingChar = '0') + private BigDecimal amount; + + @DataField(pos = 10, length = 3) + private String currency; + + @DataField(pos = 11, length = 10, pattern = "dd-MM-yyyy") + private Date orderDate; + + @DataField(pos = 12, length = 10, align = "L", paddingChar = ' ') + private String comment; + + public int getOrderNr() { + return orderNr; + } + + public void setOrderNr(int orderNr) { + this.orderNr = orderNr; + } + + public String getClientNr() { + return clientNr; + } + + public void setClientNr(String clientNr) { + this.clientNr = clientNr; + } + + public String getFirstName() { + return firstName; + } + + public void setFirstName(String firstName) { + this.firstName = firstName; + } + + public String getLastName() { + return lastName; + } + + public void setLastName(String lastName) { + this.lastName = lastName; + } + + public String getInstrumentCode() { + return instrumentCode; + } + + public void setInstrumentCode(String instrumentCode) { + this.instrumentCode = instrumentCode; + } + + public String getInstrumentNumber() { + return instrumentNumber; + } + + public void setInstrumentNumber(String instrumentNumber) { + this.instrumentNumber = instrumentNumber; + } + + public String getOrderType() { + return orderType; + } + + public void setOrderType(String orderType) { + this.orderType = orderType; + } + + public String getInstrumentType() { + return instrumentType; + } + + public void setInstrumentType(String instrumentType) { + this.instrumentType = instrumentType; + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public String getCurrency() { + return currency; + } + + public void setCurrency(String currency) { + this.currency = currency; + } + + public Date getOrderDate() { + return orderDate; + } + + public void setOrderDate(Date orderDate) { + this.orderDate = orderDate; + } + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + @Override + public String toString() { + return "Model : " + Order.class.getName() + " : " + this.orderNr + ", " + this.orderType + ", " + String.valueOf(this.amount) + ", " + this.instrumentCode + ", " + + this.instrumentNumber + ", " + this.instrumentType + ", " + this.currency + ", " + this.clientNr + ", " + this.firstName + ", " + this.lastName + ", " + + String.valueOf(this.orderDate); + } + } + +}
Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/ordinal/BindySimpleFixedLengthOrdinalPosTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java?rev=1443631&view=auto ============================================================================== --- camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java (added) +++ camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java Thu Feb 7 17:59:42 2013 @@ -0,0 +1,168 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.dataformat.bindy.fixed.skipheader; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Calendar; +import java.util.GregorianCalendar; +import java.util.HashMap; +import java.util.Map; + +import org.apache.camel.EndpointInject; +import org.apache.camel.Exchange; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.dataformat.bindy.fixed.BindyFixedLengthDataFormat; + +import org.apache.camel.model.dataformat.BindyType; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Assert; +import org.junit.Test; + +/** + * This test validates that the header for a fixed length record will be skipped during + * marshalling or unmarshalling if 'skipHeader=true' is set in the FixedLengthRecord annotation + */ +public class BindyFixedLengthHeaderFooterSkipHeaderTest extends CamelTestSupport { + + public static final String URI_DIRECT_MARSHALL = "direct:marshall"; + public static final String URI_DIRECT_UNMARSHALL = "direct:unmarshall"; + public static final String URI_MOCK_MARSHALL_RESULT = "mock:marshall-result"; + public static final String URI_MOCK_UNMARSHALL_RESULT = "mock:unmarshall-result"; + + private static final String TEST_HEADER = "101-08-2009\r\n"; + private static final String TEST_RECORD = "10A9 PaulineM ISINXD12345678BUYShare000002500.45USD01-08-2009\r\n"; + private static final String TEST_FOOTER = "9000000001\r\n"; + + @EndpointInject(uri = URI_MOCK_MARSHALL_RESULT) + private MockEndpoint marshallResult; + + @EndpointInject(uri = URI_MOCK_UNMARSHALL_RESULT) + private MockEndpoint unmarshallResult; + + // ************************************************************************* + // TESTS + // ************************************************************************* + + @SuppressWarnings("unchecked") + @Test + public void testUnmarshallMessage() throws Exception { + + StringBuffer buff = new StringBuffer(); + buff.append(TEST_HEADER).append(TEST_RECORD).append(TEST_FOOTER); + + unmarshallResult.expectedMessageCount(1); + + template.sendBody(URI_DIRECT_UNMARSHALL, buff.toString()); + + unmarshallResult.assertIsSatisfied(); + + // check the model + Exchange exchange = unmarshallResult.getReceivedExchanges().get(0); + Order order = (Order) exchange.getIn().getBody(); + Assert.assertEquals(10, order.getOrderNr()); + // the field is not trimmed + Assert.assertEquals(" Pauline", order.getFirstName()); + Assert.assertEquals("M ", order.getLastName()); + + Map<String, Object> receivedHeaderMap = + (Map<String, Object>) exchange.getIn().getHeader(BindyFixedLengthDataFormat.CAMEL_BINDY_FIXED_LENGTH_HEADER); + + Map<String, Object> receivedFooterMap = + (Map<String, Object>) exchange.getIn().getHeader(BindyFixedLengthDataFormat.CAMEL_BINDY_FIXED_LENGTH_FOOTER); + + assertNull(receivedHeaderMap); + assertNotNull(receivedFooterMap); + } + + @Test + public void testMarshallMessage() throws Exception { + Order order = new Order(); + order.setOrderNr(10); + order.setOrderType("BUY"); + order.setClientNr("A9"); + order.setFirstName("Pauline"); + order.setLastName("M"); + order.setAmount(new BigDecimal("2500.45")); + order.setInstrumentCode("ISIN"); + order.setInstrumentNumber("XD12345678"); + order.setInstrumentType("Share"); + order.setCurrency("USD"); + Calendar calendar = new GregorianCalendar(); + calendar.set(2009, 7, 1); + order.setOrderDate(calendar.getTime()); + + ArrayList<Map<String, Object>> input = new ArrayList<Map<String, Object>>(); + Map<String, Object> bodyRow = new HashMap<String, Object>(); + bodyRow.put(Order.class.getName(), order); + input.add(createHeaderRow()); + input.add(bodyRow); + input.add(createFooterRow()); + + marshallResult.expectedMessageCount(1); + StringBuffer buff = new StringBuffer(); + buff.append(TEST_RECORD).append(TEST_FOOTER); + marshallResult.expectedBodiesReceived(Arrays.asList(new String[] {buff.toString()})); + template.sendBody(URI_DIRECT_MARSHALL, input); + marshallResult.assertIsSatisfied(); + } + + private Map<String, Object> createHeaderRow() { + Map<String, Object> headerMap = new HashMap<String, Object>(); + OrderHeader header = new OrderHeader(); + Calendar calendar = new GregorianCalendar(); + calendar.set(2009, 7, 1); + header.setRecordDate(calendar.getTime()); + headerMap.put(OrderHeader.class.getName(), header); + return headerMap; + } + + private Map<String, Object> createFooterRow() { + Map<String, Object> footerMap = new HashMap<String, Object>(); + OrderFooter footer = new OrderFooter(); + footer.setNumberOfRecordsInTheFile(1); + footerMap.put(OrderFooter.class.getName(), footer); + return footerMap; + } + + + // ************************************************************************* + // ROUTES + // ************************************************************************* + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + RouteBuilder routeBuilder = new RouteBuilder() { + + @Override + public void configure() throws Exception { + from(URI_DIRECT_MARSHALL) + .marshal().bindy(BindyType.Fixed, Order.class) + .to(URI_MOCK_MARSHALL_RESULT); + + from(URI_DIRECT_UNMARSHALL) + .unmarshal().bindy(BindyType.Fixed, Order.class) + .to(URI_MOCK_UNMARSHALL_RESULT); + } + }; + + return routeBuilder; + } +} Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/BindyFixedLengthHeaderFooterSkipHeaderTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java?rev=1443631&view=auto ============================================================================== --- camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java (added) +++ camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java Thu Feb 7 17:59:42 2013 @@ -0,0 +1,156 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.dataformat.bindy.fixed.skipheader; + +import java.math.BigDecimal; +import java.util.Date; + +import org.apache.camel.dataformat.bindy.annotation.DataField; +import org.apache.camel.dataformat.bindy.annotation.FixedLengthRecord; + +@FixedLengthRecord(hasHeader = true, hasFooter = true, skipHeader = true) +public class Order { + + @DataField(pos = 1, length = 2) + private int orderNr; + + @DataField(pos = 2, length = 2) + private String clientNr; + + @DataField(pos = 3, length = 9) + private String firstName; + + @DataField(pos = 4, length = 5, align = "L") + private String lastName; + + @DataField(pos = 5, length = 4) + private String instrumentCode; + + @DataField(pos = 6, length = 10) + private String instrumentNumber; + + @DataField(pos = 7, length = 3) + private String orderType; + + @DataField(pos = 8, length = 5) + private String instrumentType; + + @DataField(pos = 9, precision = 2, length = 12, paddingChar = '0') + private BigDecimal amount; + + @DataField(pos = 10, length = 3) + private String currency; + + @DataField(pos = 11, length = 10, pattern = "dd-MM-yyyy") + private Date orderDate; + + public int getOrderNr() { + return orderNr; + } + + public void setOrderNr(int orderNr) { + this.orderNr = orderNr; + } + + public String getClientNr() { + return clientNr; + } + + public void setClientNr(String clientNr) { + this.clientNr = clientNr; + } + + public String getFirstName() { + return firstName; + } + + public void setFirstName(String firstName) { + this.firstName = firstName; + } + + public String getLastName() { + return lastName; + } + + public void setLastName(String lastName) { + this.lastName = lastName; + } + + public String getInstrumentCode() { + return instrumentCode; + } + + public void setInstrumentCode(String instrumentCode) { + this.instrumentCode = instrumentCode; + } + + public String getInstrumentNumber() { + return instrumentNumber; + } + + public void setInstrumentNumber(String instrumentNumber) { + this.instrumentNumber = instrumentNumber; + } + + public String getOrderType() { + return orderType; + } + + public void setOrderType(String orderType) { + this.orderType = orderType; + } + + public String getInstrumentType() { + return instrumentType; + } + + public void setInstrumentType(String instrumentType) { + this.instrumentType = instrumentType; + } + + public BigDecimal getAmount() { + return amount; + } + + public void setAmount(BigDecimal amount) { + this.amount = amount; + } + + public String getCurrency() { + return currency; + } + + public void setCurrency(String currency) { + this.currency = currency; + } + + public Date getOrderDate() { + return orderDate; + } + + public void setOrderDate(Date orderDate) { + this.orderDate = orderDate; + } + + @Override + public String toString() { + return "Model : " + Order.class.getName() + " : " + this.orderNr + ", " + this.orderType + ", " + String.valueOf(this.amount) + ", " + this.instrumentCode + ", " + + this.instrumentNumber + ", " + this.instrumentType + ", " + this.currency + ", " + this.clientNr + ", " + this.firstName + ", " + this.lastName + ", " + + String.valueOf(this.orderDate); + } +} + Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/Order.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java?rev=1443631&view=auto ============================================================================== --- camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java (added) +++ camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java Thu Feb 7 17:59:42 2013 @@ -0,0 +1,46 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.dataformat.bindy.fixed.skipheader; + +import org.apache.camel.dataformat.bindy.annotation.DataField; +import org.apache.camel.dataformat.bindy.annotation.FixedLengthRecord; + +@FixedLengthRecord(isFooter = true) +public class OrderFooter { + + @DataField(pos = 1, length = 1) + private int recordType = 9; + + @DataField(pos = 2, length = 9, align = "R", paddingChar = '0') + private int numberOfRecordsInTheFile; + + public int getRecordType() { + return recordType; + } + + public void setRecordType(int recordType) { + this.recordType = recordType; + } + + public int getNumberOfRecordsInTheFile() { + return numberOfRecordsInTheFile; + } + + public void setNumberOfRecordsInTheFile(int numberOfRecordsInTheFile) { + this.numberOfRecordsInTheFile = numberOfRecordsInTheFile; + } +} Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderFooter.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java?rev=1443631&view=auto ============================================================================== --- camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java (added) +++ camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java Thu Feb 7 17:59:42 2013 @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.dataformat.bindy.fixed.skipheader; + +import java.util.Date; + +import org.apache.camel.dataformat.bindy.annotation.DataField; +import org.apache.camel.dataformat.bindy.annotation.FixedLengthRecord; + +@FixedLengthRecord(isHeader = true) +public class OrderHeader { + @DataField(pos = 1, length = 1) + private int recordType = 1; + + @DataField(pos = 2, length = 10, pattern = "dd-MM-yyyy") + private Date recordDate; + + public int getRecordType() { + return recordType; + } + + public void setRecordType(int recordType) { + this.recordType = recordType; + } + + public void setRecordDate(Date recordDate) { + this.recordDate = recordDate; + } + + public Date getRecordDate() { + return recordDate; + } +} Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/fixed/skipheader/OrderHeader.java ------------------------------------------------------------------------------ svn:keywords = Rev Date