Package de.uplanet.lucy.server.connector
Interface IServerBridgeRequest
- All Known Implementing Classes:
de.uplanet.lucy.server.connector.AbstractGroovyServerBridgeRequest,GroovyServerBridgeRequest
public interface IServerBridgeRequest
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsKey(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.IUploadFilesGet the files that were uploaded with this request.booleanCheck if files were uploaded with this request.voidDeprecated.This method will be removed in future versions of Intrexx.voidDeprecated.This method will be removed in future versions of Intrexx.voidDeprecated.This method will be removed in future versions of Intrexx.voidDeprecated.This method will be removed in future versions of Intrexx.intsize()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, ornullif 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_objFallbackif 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:
trueif the request contains the specified variable.
-
getEntrySet
Get an unmodifiable set that contains all request variables.- Returns:
- A set containing
Map.Entrys 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:
trueif files were uploaded with this request, orfalseotherwise.
-
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.
-