Package com.evopdf
Class AuthenticationOptions
java.lang.Object
com.evopdf.AuthenticationOptions
Authentication options for accessing a URL in HTML to PDF converter like
 Integrated Windows Authentication in IIS.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionpassword()Gets the password of the user used for authenticationvoidsetPassword(String password) Sets the password of the user used for authenticationvoidsetUseDefaultCredentials(boolean useDefaultCredentials) Sets the flag indicating if the HTML to PDF server user account credentials are used when the HTML page being converted is requested.voidsetUsername(String username) Sets the username of the user used for authenticationbooleanGets the flag indicating if the HTML to PDF server user account credentials are used when the HTML page being converted is requested.username()Gets the username of the user used for authentication
- 
Constructor Details- 
AuthenticationOptionspublic AuthenticationOptions()
 
- 
- 
Method Details- 
usernameGets the username of the user used for authentication- Returns:
- the username used for authentication
 
- 
setUsernameSets the username of the user used for authentication- Parameters:
- username- the username used for authentication
 
- 
passwordGets the password of the user used for authentication- Returns:
- the password of the user used for authentication
 
- 
setPasswordSets the password of the user used for authentication- Parameters:
- password- the password to set
 
- 
useDefaultCredentialspublic boolean useDefaultCredentials()Gets the flag indicating if the HTML to PDF server user account credentials are used when the HTML page being converted is requested.- Returns:
- the flag value
 
- 
setUseDefaultCredentialspublic void setUseDefaultCredentials(boolean useDefaultCredentials) Sets the flag indicating if the HTML to PDF server user account credentials are used when the HTML page being converted is requested. If theusername()property is set this property will not have any effect. The default value is true.- Parameters:
- useDefaultCredentials- the flag value to set
 
 
-