Package org.htmlunit

Class StringWebResponse

  • All Implemented Interfaces:
    java.io.Serializable

    public class StringWebResponse
    extends WebResponse
    A simple WebResponse created from a string. Content is assumed to be of type text/html.
    See Also:
    Serialized Form
    • Constructor Detail

      • StringWebResponse

        public StringWebResponse​(java.lang.String content,
                                 java.net.URL originatingURL)
        Creates an instance associated with the specified originating URL.
        Parameters:
        content - the content to return
        originatingURL - the URL that this should be associated with
      • StringWebResponse

        public StringWebResponse​(java.lang.String content,
                                 java.nio.charset.Charset charset,
                                 java.net.URL originatingURL)
        Creates an instance associated with the specified originating URL.
        Parameters:
        content - the content to return
        charset - the charset used to convert the content
        originatingURL - the URL that this should be associated with
    • Method Detail

      • isFromJavascript

        public boolean isFromJavascript()
        Returns the fromJavascript property. This is true, if the response was created from javascript (usually document.write).
        Returns:
        the from fromJavascript_
      • setFromJavascript

        public void setFromJavascript​(boolean fromJavascript)
        Sets the fromJavascript_ property. Set this to true, if the response was created from javascript (usually document.write).
        Parameters:
        fromJavascript - the new fromJavascript