Interface IServerBridgeRequest

All Known Implementing Classes:
de.uplanet.lucy.server.connector.AbstractGroovyServerBridgeRequest, GroovyServerBridgeRequest

public interface IServerBridgeRequest
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    containsKey(String p_strKey)
    Test if the request contains the specified variable.
    Deprecated.
    This method will be removed in future versions of Intrexx.
    get(String p_strKey)
    Get a request variable.
    get(String p_strKey, String p_strFallback)
    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
    put(String p_strKey, String p_strValue)
    Deprecated.
    This method will be removed in future versions of Intrexx.
    void
    remove(String p_strKey)
    Deprecated.
    This method will be removed in future versions of Intrexx.
    int
    Deprecated.
    This method will be removed.
  • Method Details

    • get

      String get(String p_strKey)
      Get a request variable.
      Parameters:
      p_strKey - The key.
      Returns:
      The value that is referenced by p_strKey, or null if there is no such request variable.
    • get

      String get(String p_strKey, String p_strFallback)
      Get a request variable.
      Parameters:
      p_strKey - The key.
      p_strFallback - The fallback value.
      Returns:
      The value that is referenced by p_strKey, or p_objFallback if there is no such request variable.
    • put

      @Deprecated void put(String p_strKey, String p_strValue)
      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 void remove(String p_strKey)
      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

      boolean containsKey(String p_strKey)
      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

      Set<Map.Entry<String,String>> 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 void pushVariables()
      Deprecated.
      This method will be removed in future versions of Intrexx.
      Push request variables on the stack.
    • popVariables

      @Deprecated void 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 int 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, or false 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.