Package de.uplanet.lucy.server.connector
Interface IServerBridgeRequest
public interface IServerBridgeRequest
-
Method Summary
Modifier and TypeMethodDescriptionboolean
containsKey
(String p_strKey) Test if the request contains the specified variable.Deprecated.This method will be removed in future versions of Intrexx.Get a request variable.Get a request variable.Get an unmodifiable set that contains all request variables.de.uplanet.lucy.server.connector.IUploadFiles
Get the files that were uploaded with this request.boolean
Check if files were uploaded with this request.void
Deprecated.This method will be removed in future versions of Intrexx.void
Deprecated.This method will be removed in future versions of Intrexx.void
Deprecated.This method will be removed in future versions of Intrexx.void
Deprecated.This method will be removed in future versions of Intrexx.int
size()
Deprecated.This method will be removed.
-
Method Details
-
get
Get a request variable.- Parameters:
p_strKey
- The key.- Returns:
- The value that is referenced by
p_strKey
, ornull
if there is no such request variable.
-
get
Get a request variable.- Parameters:
p_strKey
- The key.p_strFallback
- The fallback value.- Returns:
- The value that is referenced by
p_strKey
, orp_objFallback
if there is no such request variable.
-
put
Deprecated.This method will be removed in future versions of Intrexx.Set a request variable.- Parameters:
p_strKey
- The name of the request variable.p_strValue
- The value of the request variable.
-
remove
Deprecated.This method will be removed in future versions of Intrexx.Remove the specified variable from the request.- Parameters:
p_strKey
- The name of the variable to remove.
-
containsKey
Test if the request contains the specified variable.- Parameters:
p_strKey
- The name of the variable.- Returns:
true
if the request contains the specified variable.
-
getEntrySet
Get an unmodifiable set that contains all request variables.- Returns:
- A set containing
Map.Entry
s that contain requests variable name-value-pairs.
-
pushVariables
Deprecated.This method will be removed in future versions of Intrexx.Push request variables on the stack. -
popVariables
Deprecated.This method will be removed in future versions of Intrexx.Pop request variables from the stack. -
createCopy
Deprecated.This method will be removed in future versions of Intrexx.Create a copy of the topmost state of this request.The request created will have an empty stack.
- Returns:
- The copy.
-
size
Deprecated.This method will be removed.- Returns:
- Returns the number of request parameters in this request.
-
hasUploadFiles
boolean hasUploadFiles()Check if files were uploaded with this request.- Returns:
true
if files were uploaded with this request, orfalse
otherwise.
-
getUploadFiles
de.uplanet.lucy.server.connector.IUploadFiles getUploadFiles()Get the files that were uploaded with this request.- Returns:
- The files that were uploaded with this request, or
null
.
-