Class EzsPluginRequest

java.lang.Object
com.axemble.vdoc.sdk.impl.EzsPluginRequest
All Implemented Interfaces:
IPluginRequest, Serializable

public class EzsPluginRequest extends Object implements IPluginRequest
Author:
vlygeros
See Also:
  • Constructor Details

    • EzsPluginRequest

      public EzsPluginRequest(IModule module, IPlugin plugin, com.axemble.easysite.plugins.mvc.URI uri)
  • Method Details

    • getQueryString

      public String getQueryString()
      Description copied from interface: IPluginRequest
      Gets the requested string.
      Specified by:
      getQueryString in interface IPluginRequest
      Returns:
      The requested string as a java.lang.String object.
    • getRequestURI

      public String getRequestURI()
      Description copied from interface: IPluginRequest
      Gets the requested URI
      Specified by:
      getRequestURI in interface IPluginRequest
      Returns:
      A java.lang.String value.
    • getRequestURL

      public String getRequestURL()
      Description copied from interface: IPluginRequest
      Gets the requested URL
      Specified by:
      getRequestURL in interface IPluginRequest
      Returns:
      A java.lang.String value.
    • getURI

      public com.axemble.easysite.plugins.mvc.URI getURI()
    • getParameterValue

      public String getParameterValue(String key)
      Description copied from interface: IPluginRequest
      Gets a parameter by its key.
      Specified by:
      getParameterValue in interface IPluginRequest
      Parameters:
      key - The key of the parameter.
      Returns:
      The parameter associated with the key.
    • getParameterValues

      public String[] getParameterValues(String key)
      Description copied from interface: IPluginRequest
      Gets all the values associated with a key.
      Specified by:
      getParameterValues in interface IPluginRequest
      Parameters:
      key - The key of the parameters.
      Returns:
      All the values associated with the key.
    • setParameterValue

      public void setParameterValue(String key, String value)
      Description copied from interface: IPluginRequest
      Sets the value for the specified parameter.
      Specified by:
      setParameterValue in interface IPluginRequest
      Parameters:
      key - The key of the parameter.
      value - The value of the parameter.
    • setParameterValues

      public void setParameterValues(String key, String[] values)
      Description copied from interface: IPluginRequest
      Sets the values associated with a key.
      Specified by:
      setParameterValues in interface IPluginRequest
      Parameters:
      key - The key of the parameter.
      values - The values to set.
    • convertToString

      public String convertToString()
      Description copied from interface: IPluginRequest
      Converts the inner value to a string.
      Specified by:
      convertToString in interface IPluginRequest
      Returns:
      a java.lang.String value.