Class SqlQuerySettings
- java.lang.Object
-
- com.jalios.jcms.taglib.settings.BasicSettings<SqlQuerySettings>
-
- com.jalios.jcms.taglib.settings.impl.SqlQuerySettings
-
- All Implemented Interfaces:
ControlSettings<SqlQuerySettings>,java.lang.Cloneable
public class SqlQuerySettings extends BasicSettings<SqlQuerySettings>
SQL Query Settings- Author:
- Nicolas Dos Santos
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDATA_SOURCEstatic java.lang.StringMAX_ROWS-
Fields inherited from class com.jalios.jcms.taglib.settings.BasicSettings
APPEND, ARIA_ATTR_PREFIX, ARIA_ATTRIBUTES, AUTOFOCUS, CLEAR_BUTTON, CSS, DATA_ATTR_PREFIX, DATA_ATTRIBUTES, DISABLED, HIDE_CLEAR_BUTTON, HTML_ATTRIBUTES, ID, LANGUAGE_CHOOSER, MAX_LENGTH, NAME, PLACEHOLDER, PREPEND, READONLY, REQUIRED, TITLE, TRIGGER_ACTION, TRIGGER_EVENT, VALUE
-
-
Constructor Summary
Constructors Constructor Description SqlQuerySettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqlQuerySettingsdataSource(java.lang.String dataSource)Set the DataSource.protected SqlQuerySettingsgetThis()Returns the exact type of the this reference.
It's a way to recover the type of thethisobject in a class hierarchy (cf.ControlTypegetType()Returns theControlTyperelated to the currentControlSettingsimplementation.SqlQuerySettingsmaxRows(int maxRow)Specify the maximum rows to retrieve.voidresolveOptions(TypeFieldEntry tfe)Set options from the specifiedTypeFieldEntry.-
Methods inherited from class com.jalios.jcms.taglib.settings.BasicSettings
addOption, append, aria, aria, autofocus, clearOption, clone, css, dataAttribute, dataAttribute, dataAttributes, disable, getOption, getOptionNames, htmlAttributes, htmlAttributes, id, isChannelReady, maxLength, merge, name, onChange, onFocusOut, placeholder, prepend, readonly, removeOption, require, showLanguageChooser, sortSet, title, toStringArray, toStringArray, toStringArray, toStringArray, toStringArray, trigger, value
-
-
-
-
Field Detail
-
DATA_SOURCE
public static final java.lang.String DATA_SOURCE
- See Also:
- Constant Field Values
-
MAX_ROWS
public static final java.lang.String MAX_ROWS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public ControlType getType()
Description copied from interface:ControlSettingsReturns theControlTyperelated to the currentControlSettingsimplementation.- Returns:
ControlType
-
getThis
protected SqlQuerySettings getThis()
Description copied from class:BasicSettingsReturns the exact type of the this reference.
It's a way to recover the type of thethisobject in a class hierarchy (cf. getThis "trick").- Specified by:
getThisin classBasicSettings<SqlQuerySettings>- Returns:
- The exact type of the this reference
-
resolveOptions
public void resolveOptions(TypeFieldEntry tfe)
Description copied from interface:ControlSettingsSet options from the specifiedTypeFieldEntry.- Specified by:
resolveOptionsin interfaceControlSettings<SqlQuerySettings>- Overrides:
resolveOptionsin classBasicSettings<SqlQuerySettings>- Parameters:
tfe-TypeFieldEntry
-
dataSource
public SqlQuerySettings dataSource(java.lang.String dataSource)
Set the DataSource.- Parameters:
dataSource- the name of the data source (eg. "jdbc/TestDB")- Returns:
- a reference to this object - used to chain calls
-
maxRows
public SqlQuerySettings maxRows(int maxRow)
Specify the maximum rows to retrieve.- Parameters:
maxRow- Number of maximum rows- Returns:
- a reference to this object - used to chain calls
-
-