lucee.Componentcontentbox.modules.contentbox-deps.modules.cbstorages.models.RequestStorage
Request Storage plugin. It provides the user with a mechanism for request cycle data storage using the request scope.
Constructor Summary | |
---|---|
init()
|
Method Summary | |
---|---|
void
|
clearAll()
Clear the entire coldbox request storage. |
private void
|
createStorage()
Create the request storage scope. |
boolean
|
deleteVar(string name)
Tries to delete a request cycle var. |
boolean
|
exists(string name)
Checks wether the request cycle variable exists. |
any
|
getStorage()
Get the entire storage scope. |
any
|
getVar(string name, [any default=''])
Get a new request cycle variable. |
void
|
removeStorage()
remove the entire storage scope. |
void
|
setVar(string name, any value)
Set a new request cycle variable. |
Methods inherited from class lucee.Component |
---|
None |
Constructor Detail |
---|
Method Detail |
---|
Clear the entire coldbox request storage
Create the request storage scope
Tries to delete a request cycle var.
name
- The variable name to retrieve.Checks wether the request cycle variable exists.
name
- The variable name to retrieve.Get the entire storage scope
Get a new request cycle variable. If the variable does not exist. The method returns blank.
name
- The variable name to retrieve.default
- The default value to set. If not used, a blank is returned.remove the entire storage scope
Set a new request cycle variable.
name
- The name of the variable.value
- The value to set in the variable.