|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SqlPluginFactory | |
|---|---|
| org.sqlproc.engine | The public part of the SQL Processor implementation. |
| org.sqlproc.engine.impl | The private part of the SQL Processor implementation. |
| org.sqlproc.engine.plugin | The plugins are used to alter the behavior of the SQL Processor. |
| Uses of SqlPluginFactory in org.sqlproc.engine |
|---|
| Fields in org.sqlproc.engine declared as SqlPluginFactory | |
|---|---|
protected SqlPluginFactory |
SqlSimpleFactory.pluginFactory
The factory for the SQL Processor plugins. |
protected SqlPluginFactory |
SqlEngine.pluginFactory
The factory for the SQL Processor plugins. |
private SqlPluginFactory |
SqlProcessorLoader.pluginFactory
The factory for the SQL Processor plugins. |
| Methods in org.sqlproc.engine that return SqlPluginFactory | |
|---|---|
SqlPluginFactory |
SqlSimpleFactory.getPluginFactory()
Returns the factory for the SQL Processor plugins. |
| Methods in org.sqlproc.engine with parameters of type SqlPluginFactory | |
|---|---|
void |
SqlSimpleFactory.setPluginFactory(SqlPluginFactory pluginFactory)
Sets the factory for the SQL Processor plugins. |
| Constructors in org.sqlproc.engine with parameters of type SqlPluginFactory | |
|---|---|
SqlCrudEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlCrudEngine from one META SQL statement instance. |
|
SqlCrudEngine(String name,
SqlMetaStatement statement,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlCrudEngine from one META SQL statement instance. |
|
SqlCrudEngine(String name,
SqlMetaStatement statement,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlCrudEngine from one META SQL statement instance. |
|
SqlCrudEngine(String name,
String statement,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlCrudEngine from one META SQL statement string. |
|
SqlCrudEngine(String name,
String statement,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlCrudEngine from one META SQL statement string. |
|
SqlEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlEngine from one META SQL statement and one SQL Mapping rule instance. |
|
SqlProcedureEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule instances. |
|
SqlProcedureEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule instances. |
|
SqlProcedureEngine(String name,
String statement,
String mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement string and one SQL Mapping rule string. |
|
SqlProcedureEngine(String name,
String statement,
String mapping,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlProcedureEngine from one stored procedure execution META SQL statement and one SQL mapping rule string. |
|
SqlProcessorLoader(StringBuilder sbStatements,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlProcessorLoader from the String content repository (which is in fact a collection of the META SQL statements, mapping rules and optional features. |
|
SqlProcessorLoader(StringBuilder sbStatements,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory,
String filter)
Creates a new instance of the SqlProcessorLoader from the String content repository (which is in fact a collection of the META SQL statements, mapping rules and optional features. |
|
SqlProcessorLoader(StringBuilder sbStatements,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory,
String filter,
SqlMonitorFactory monitorFactory)
Creates a new instance of the SqlProcessorLoader from the String content repository (which is in fact a collection of the META SQL statements, mapping rules and optional features. |
|
SqlProcessorLoader(StringBuilder sbStatements,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory,
String filter,
SqlMonitorFactory monitorFactory,
List<SqlInternalType> customTypes,
String... onlyStatements)
Creates a new instance of the SqlProcessorLoader from the String content repository (which is in fact a collection of the META SQL statements, mapping rules and optional features. |
|
SqlProcessorLoader(StringBuilder sbStatements,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory,
String filter,
SqlMonitorFactory monitorFactory,
String... onlyStatements)
Creates a new instance of the SqlProcessorLoader from the String content repository (which is in fact a collection of the META SQL statements, mapping rules and optional features. |
|
SqlQueryEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlQueryEngine from one META SQL statement and one SQL mapping rule instances. |
|
SqlQueryEngine(String name,
SqlMetaStatement statement,
SqlMappingRule mapping,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlQueryEngine from one META SQL statement and one SQL mapping rule instances. |
|
SqlQueryEngine(String name,
String statement,
String mapping,
SqlMonitor monitor,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlQueryEngine from one META SQL statement string and one SQL Mapping rule string. |
|
SqlQueryEngine(String name,
String statement,
String mapping,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance of the SqlQueryEngine from one META SQL query string and one SQL mapping rule string. |
|
| Uses of SqlPluginFactory in org.sqlproc.engine.impl |
|---|
| Fields in org.sqlproc.engine.impl with type parameters of type SqlPluginFactory | |
|---|---|
private static ThreadLocal<SqlPluginFactory> |
SqlProcessContext.currentPluginFactory
The thread local holder for the factory for the SQL Processor plugins. |
| Methods in org.sqlproc.engine.impl that return SqlPluginFactory | |
|---|---|
static SqlPluginFactory |
SqlProcessContext.getPluginFactory()
Returns the factory for the current thread responsible for the SQL Processor plugins. |
| Methods in org.sqlproc.engine.impl with parameters of type SqlPluginFactory | |
|---|---|
SqlProcessResult |
SqlMetaStatement.process(SqlMetaStatement.Type sqlStatementType,
Object dynamicInputValues,
Object staticInputValues,
List<SqlOrder> order,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
The main contract for a dynamic ANSI SQL Query generation. |
(package private) static void |
SqlProcessContext.setPluginFactory(SqlPluginFactory pluginFactory)
THIS METHOD IS NOT PART OF THE SQL PROCESSOR PUBLIC API. |
| Constructors in org.sqlproc.engine.impl with parameters of type SqlPluginFactory | |
|---|---|
SqlProcessContext(SqlMetaStatement.Type sqlStatementType,
Object dynamicInputValues,
Object staticInputValues,
List<SqlOrder> order,
Map<String,Object> features,
SqlTypeFactory typeFactory,
SqlPluginFactory pluginFactory)
Creates a new instance. |
|
| Uses of SqlPluginFactory in org.sqlproc.engine.plugin |
|---|
| Classes in org.sqlproc.engine.plugin that implement SqlPluginFactory | |
|---|---|
class |
SimpleSqlPluginFactory
The simple implementation of the SqlPluginFactory. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||