All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codetaco.funnel.provider.CsvSysinReader Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.codetaco.funnel.provider;

import java.io.IOException;
import java.text.ParseException;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.codetaco.funnel.parameters.FunnelContext;

/**
 * 

* CsvSysinReader class. *

* * @author Chris DeGreef [email protected] */ public class CsvSysinReader extends VariableLengthSysinReader { static final private Logger _logger = LoggerFactory.getLogger(CsvSysinReader.class); /** *

* Constructor for CsvSysinReader. *

* * @param _context a {@link com.codetaco.funnel.parameters.FunnelContext} * object. * @throws java.io.IOException if any. * @throws java.text.ParseException if any. */ public CsvSysinReader(final FunnelContext _context) throws IOException, ParseException { super(_context); _logger.debug("csv sysin reader activated"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy