net.ttddyy.dsproxy.transform.NoOpParameterTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datasource-proxy Show documentation
Show all versions of datasource-proxy Show documentation
Provide a datasource proxy that can inject your own logic into all queries.
package net.ttddyy.dsproxy.transform;
/**
* No operation implementation of {@link ParameterTransformer}.
*
* @author Tadaya Tsuyukubo
* @since 1.2
*/
public class NoOpParameterTransformer implements ParameterTransformer {
public void transformParameters(ParameterReplacer replacer, TransformInfo transformInfo) {
// do nothing
}
}