Package org.openstack4j.model.manila
Class ShareUpdateOptions
- java.lang.Object
-
- org.openstack4j.model.manila.ShareUpdateOptions
-
public class ShareUpdateOptions extends Object
Options used to update a share.- Author:
- Daniel Gonzalez Nothnagel
-
-
Constructor Summary
Constructors Constructor Description ShareUpdateOptions()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ShareUpdateOptionscreate()ShareUpdateOptionsdisplayDescription(String displayDescription)Update the share description.ShareUpdateOptionsdisplayName(String displayName)Update the share name.StringgetDisplayDescription()StringgetDisplayName()BooleanisPublic()ShareUpdateOptionsisPublic(Boolean isPublic)Update the level of visibility for the share.
-
-
-
Method Detail
-
create
public static ShareUpdateOptions create()
-
displayName
public ShareUpdateOptions displayName(String displayName)
Update the share name.- Parameters:
displayName- the share name- Returns:
- ShareUpdateOptions
-
displayDescription
public ShareUpdateOptions displayDescription(String displayDescription)
Update the share description.- Parameters:
displayDescription- the share description- Returns:
- ShareUpdateOptions
-
isPublic
public ShareUpdateOptions isPublic(Boolean isPublic)
Update the level of visibility for the share.- Parameters:
isPublic- the level of visibility for the share- Returns:
- ShareUpdateOptions
-
getDisplayName
public String getDisplayName()
- Returns:
- the share name
-
getDisplayDescription
public String getDisplayDescription()
- Returns:
- the share description.
-
isPublic
public Boolean isPublic()
- Returns:
- the level of visibility for the share
-
-