Package org.htmlunit
Class StringWebResponse
- java.lang.Object
-
- org.htmlunit.WebResponse
-
- org.htmlunit.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 typetext/html.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.htmlunit.WebResponse
FORBIDDEN, INTERNAL_SERVER_ERROR, NO_CONTENT, NOT_FOUND, OK
-
-
Constructor Summary
Constructors Constructor Description StringWebResponse(java.lang.String content, java.net.URL originatingURL)Creates an instance associated with the specified originating URL.StringWebResponse(java.lang.String content, java.nio.charset.Charset charset, java.net.URL originatingURL)Creates an instance associated with the specified originating URL.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisFromJavascript()Returns the fromJavascript property.voidsetFromJavascript(boolean fromJavascript)Sets the fromJavascript_ property.-
Methods inherited from class org.htmlunit.WebResponse
cleanUp, defaultCharsetUtf8, getContentAsStream, getContentAsStreamWithBomIfApplicable, getContentAsString, getContentAsString, getContentAsString, getContentCharset, getContentCharsetOrNull, getContentLength, getContentType, getLoadTime, getProtocolVersion, getRawSize, getResponseHeaders, getResponseHeaderValue, getStatusCode, getStatusMessage, getWebRequest, isSuccess, isSuccessOrUseProxy, isSuccessOrUseProxyOrNotModified, setProtocolVersion, setRawSize
-
-
-
-
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 returnoriginatingURL- 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 returncharset- the charset used to convert the contentoriginatingURL- 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
-
-