use of org.kuali.kfs.sys.batch.DelimitedFlatFilePropertySpecification in project cu-kfs by CU-CommunityApps.
the class AchIncomeDelimitedFlatFileSpecificationTest method setFlatFileProperty.
protected void setFlatFileProperty(List<FlatFilePropertySpecification> parseProperties, int lineSegmentIndex, String propertyName, Class<? extends Formatter> formatterClass, String dateFormat) {
DelimitedFlatFilePropertySpecification delimitedFlatFilePropertySpecification = new MockDelimitedFlatFilePropertySpecification();
delimitedFlatFilePropertySpecification.setFormatterClass(formatterClass);
delimitedFlatFilePropertySpecification.setLineSegmentIndex(lineSegmentIndex);
delimitedFlatFilePropertySpecification.setPropertyName(propertyName);
delimitedFlatFilePropertySpecification.setDateFormat(dateFormat);
parseProperties.add(delimitedFlatFilePropertySpecification);
}
Aggregations