|
ColdBox Platform Version 2.6.3 | ||||
FRAMES |
WEB-INF.cftags.componentcoldbox.system.frameworkSupertype
coldbox.system.plugin
coldbox.system.plugins.clientstorage
public class clientstorage
Client Storage plugin. It provides the user with a mechanism for permanent data storage using the client scope and WDDX.
Constructor Summary | |
---|---|
init(any controller)
Constructor. |
Method Summary | |
---|---|
boolean |
deleteVar(string name)
Tries to delete a permanent client var. |
boolean |
exists(string name)
Checks wether the permanent variable exists. |
any |
getVar(string name, [any default=''])
Get a new permanent variable. If the variable does not exist. The method returns blank. |
void |
setVar(string name, any value)
Set a new permanent variable. |
Methods inherited from class coldbox.system.plugin |
---|
getPluginDescription, getPluginName, getPluginVersion, getpluginPath, setPluginDescription, setPluginName, setPluginVersion
|
Methods inherited from class WEB-INF.cftags.component |
---|
|
Constructor Detail |
---|
public init(any controller)
Method Detail |
---|
public boolean deleteVar(string name)
name
- The variable name to retrieve.public boolean exists(string name)
name
- The variable name to retrieve.public any getVar(string name, [any default=''])
name
- The variable name to retrieve.default
- The default value to set. If not used, a blank is returned.public void setVar(string name, any value)
name
- The name of the variable.value
- The value to set in the variable.
|
ColdBox Platform Version 2.6.3 | ||||
FRAMES |