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

net.ttddyy.dsproxy.transform.QueryTransformer Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package net.ttddyy.dsproxy.transform;

/**
 * Interceptor that can transform the query statement.
 *
 * @author Tadaya Tsuyukubo
 * @since 1.2
 */
public interface QueryTransformer {

    static QueryTransformer DEFAULT = new NoOpQueryTransformer();

    String transformQuery(TransformInfo transformInfo);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy