net.chandol.logjdbc.logging.printer.sql.paramconverter.NeedImplementParameterConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logjdbc Show documentation
Show all versions of logjdbc Show documentation
Logging library for SQL and resultSet
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.");
}
}