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

net.chandol.logjdbc.logging.printer.sql.paramconverter.NeedImplementParameterConverter Maven / Gradle / Ivy

The newest version!
package net.chandol.logjdbc.logging.printer.sql.paramconverter;

import net.chandol.logjdbc.except.LoggableDataSourceException;
import net.chandol.logjdbc.logging.collector.parameter.Parameter;

import java.util.List;

/**
 * 작업필요 컨버터
 */
public class NeedImplementParameterConverter implements ParameterConverter{
    @Override
    public String convert(Parameter parameter) {
        throw new LoggableDataSourceException("Not yet Implemented method.");
    }

    @Override
    public List convert(List parameters) {
        throw new LoggableDataSourceException("Not yet Implemented method.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy