Class URLRewritingModifierWrapper

    • Method Detail

      • getGuiClass

        public java.lang.Class<?> getGuiClass()
        Description copied from interface: JMeterGUIWrapper
        Gui Test Class used by Jmeter TestElement.GUI_CLASS @See TestElement
        Specified by:
        getGuiClass in interface JMeterGUIWrapper<org.apache.jmeter.protocol.http.modifier.gui.URLRewritingModifierGui>
      • getTestClass

        public java.lang.Class<?> getTestClass()
        Description copied from interface: TestElementWrapper
        Test Class used by Jmeter TestElement.TEST_CLASS. @See TestElement.
        Specified by:
        getTestClass in interface TestElementWrapper<org.apache.jmeter.protocol.http.modifier.URLRewritingModifier>
      • getArgumentName

        public java.lang.String getArgumentName()
        The name of the parameter to grab from previous response. This modifier will find the parameter anywhere it exists on the page, and grab the value assigned to it, whether it's in an HREF or a form.
      • setArgumentName

        public void setArgumentName​(java.lang.String argumentName)
        The name of the parameter to grab from previous response. This modifier will find the parameter anywhere it exists on the page, and grab the value assigned to it, whether it's in an HREF or a form.
      • isPathExtension

        public boolean isPathExtension()
        Some web apps rewrite URLs by appending a semi-colon plus the session id parameter. Check this box if that is so.
      • setPathExtension

        public void setPathExtension​(boolean pathExtension)
        Some web apps rewrite URLs by appending a semi-colon plus the session id parameter. Check this box if that is so.
      • isPathExtensionNoEquals

        public boolean isPathExtensionNoEquals()
        Some web apps rewrite URLs without using an "=" sign between the parameter name and value (such as Intershop Enfinity).
      • setPathExtensionNoEquals

        public void setPathExtensionNoEquals​(boolean pathExtensionNoEquals)
        Some web apps rewrite URLs without using an "=" sign between the parameter name and value (such as Intershop Enfinity).
      • isPathExtensionNoQuestionmark

        public boolean isPathExtensionNoQuestionmark()
        Prevents the query string to end up in the path extension (such as Intershop Enfinity).
      • setPathExtensionNoQuestionmark

        public void setPathExtensionNoQuestionmark​(boolean pathExtensionNoQuestionmark)
        Prevents the query string to end up in the path extension (such as Intershop Enfinity).
      • isCache

        public boolean isCache()
        Should the value of the session Id be saved for later use when the session Id is not present.
      • setCache

        public void setCache​(boolean cache)
        Should the value of the session Id be saved for later use when the session Id is not present.
      • isEncode

        public boolean isEncode()
        URL Encode value when writing parameter.
      • setEncode

        public void setEncode​(boolean encode)
        URL Encode value when writing parameter.