Package org.htmlunit.attachment
Class Attachment
- java.lang.Object
-
- org.htmlunit.attachment.Attachment
-
public class Attachment extends java.lang.ObjectAn attachment represents a page received from the server which contains aContent-Disposition=attachmentheader.
-
-
Constructor Summary
Constructors Constructor Description Attachment(Page page)Creates a new attachment for the specified page.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PagegetPage()Returns the attached page.java.lang.StringgetSuggestedFilename()Returns the attachment's filename, as suggested by theContent-Dispositionheader, ornullif no filename was suggested.
-
-
-
Constructor Detail
-
Attachment
public Attachment(Page page)
Creates a new attachment for the specified page.- Parameters:
page- the attached page
-
-
Method Detail
-
getPage
public Page getPage()
Returns the attached page.- Returns:
- the attached page
-
getSuggestedFilename
public java.lang.String getSuggestedFilename()
Returns the attachment's filename, as suggested by theContent-Dispositionheader, ornullif no filename was suggested.- Returns:
- the attachment's suggested filename, or
nullif none was suggested
-
-