Class AccessControlChangeFailure
java.lang.Object
com.azure.storage.file.datalake.models.AccessControlChangeFailure
Represents an entry that failed to update Access Control List.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns error message that is the reason why entry failed to update.getName()
Returns the name of an entry.boolean
Returns whether entry is a directory.setDirectory
(boolean directory) Sets whether entry is a directory.setErrorMessage
(String errorMessage) Sets the error message that is the reason why entry failed to update.Sets the name of an entry.
-
Constructor Details
-
AccessControlChangeFailure
public AccessControlChangeFailure()
-
-
Method Details
-
getName
Returns the name of an entry.- Returns:
- The name of an entry.
-
setName
Sets the name of an entry.- Parameters:
name
- The name of an entry.- Returns:
- The updated object.
-
isDirectory
public boolean isDirectory()Returns whether entry is a directory.- Returns:
- Whether the entry is a directory.
-
setDirectory
Sets whether entry is a directory.- Parameters:
directory
- Whether entry is a directory.- Returns:
- The updated object.
-
getErrorMessage
Returns error message that is the reason why entry failed to update.- Returns:
- The error message that is the reason why entry failed to update.
-
setErrorMessage
Sets the error message that is the reason why entry failed to update.- Parameters:
errorMessage
- The error message that is the reason why entry failed to update.- Returns:
- The updated object.
-