Package com.azure.storage.blob.models
Class StaticWebsite
java.lang.Object
com.azure.storage.blob.models.StaticWebsite
The properties that enable an account to host a static website.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the defaultIndexDocumentPath property: Absolute path of the default index page.Get the errorDocument404Path property: The absolute path of the custom 404 page.Get the indexDocument property: The default name of the index page under each directory.boolean
Get the enabled property: Indicates whether this account is hosting a static website.setDefaultIndexDocumentPath
(String defaultIndexDocumentPath) Set the defaultIndexDocumentPath property: Absolute path of the default index page.setEnabled
(boolean enabled) Set the enabled property: Indicates whether this account is hosting a static website.setErrorDocument404Path
(String errorDocument404Path) Set the errorDocument404Path property: The absolute path of the custom 404 page.setIndexDocument
(String indexDocument) Set the indexDocument property: The default name of the index page under each directory.
-
Constructor Details
-
StaticWebsite
public StaticWebsite()Creates an instance of StaticWebsite class.
-
-
Method Details
-
isEnabled
public boolean isEnabled()Get the enabled property: Indicates whether this account is hosting a static website.- Returns:
- the enabled value.
-
setEnabled
Set the enabled property: Indicates whether this account is hosting a static website.- Parameters:
enabled
- the enabled value to set.- Returns:
- the StaticWebsite object itself.
-
getIndexDocument
Get the indexDocument property: The default name of the index page under each directory.- Returns:
- the indexDocument value.
-
setIndexDocument
Set the indexDocument property: The default name of the index page under each directory.- Parameters:
indexDocument
- the indexDocument value to set.- Returns:
- the StaticWebsite object itself.
-
getErrorDocument404Path
Get the errorDocument404Path property: The absolute path of the custom 404 page.- Returns:
- the errorDocument404Path value.
-
setErrorDocument404Path
Set the errorDocument404Path property: The absolute path of the custom 404 page.- Parameters:
errorDocument404Path
- the errorDocument404Path value to set.- Returns:
- the StaticWebsite object itself.
-
getDefaultIndexDocumentPath
Get the defaultIndexDocumentPath property: Absolute path of the default index page.- Returns:
- the defaultIndexDocumentPath value.
-
setDefaultIndexDocumentPath
Set the defaultIndexDocumentPath property: Absolute path of the default index page.- Parameters:
defaultIndexDocumentPath
- the defaultIndexDocumentPath value to set.- Returns:
- the StaticWebsite object itself.
-