com.jn.sqlhelper.dialect.instrument.Instrumentation Maven / Gradle / Ivy
package com.jn.sqlhelper.dialect.instrument;
import com.jn.langx.annotation.Singleton;
import com.jn.langx.lifecycle.Initializable;
import com.jn.sqlhelper.dialect.instrument.groupby.GroupByTransformer;
import com.jn.sqlhelper.dialect.instrument.orderby.OrderByTransformer;
import com.jn.sqlhelper.dialect.instrument.where.WhereTransformer;
import com.jn.sqlhelper.dialect.sqlparser.SqlParser;
import com.jn.sqlhelper.dialect.sqlparser.SqlStatementWrapper;
@Singleton
public interface Instrumentation> extends Initializable {
SqlParser getSqlParser();
WhereTransformer getWhereTransformer();
OrderByTransformer getOrderByTransformer();
GroupByTransformer getGroupByTransformer();
boolean isEnabled();
void setEnabled(boolean enabled);
}