Package com.morpheusdata.model
Class StorageAggregateType
java.lang.Object
com.morpheusdata.model.MorpheusModel
com.morpheusdata.model.StorageAggregateType
- All Implemented Interfaces:
Serializable
Representation of a Morpheus StorageAggregateType database object within the Morpheus platform.
This defines the type of storage aggregation mechanism (e.g., RAID, ZFS, LVM, etc.)
- Since:
- 1.3.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected StringA unique code identifying this type (e.g., "raid5", "zfs-mirror", "lvm-vg")protected StringDescription of the storage aggregate typeprotected StringThe name of the storage aggregate type (e.g., "RAID 5", "ZFS Mirror", "LVM Volume Group")Fields inherited from class com.morpheusdata.model.MorpheusModel
config, id -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCode()Gets the unique code for this typeGets the description of the storage aggregate typegetName()Gets the name of the storage aggregate typevoidSets the unique code for this typevoidsetDescription(String description) Sets the description of the storage aggregate typevoidSets the name of the storage aggregate typeMethods inherited from class com.morpheusdata.model.MorpheusModel
getConfig, getConfigMap, getConfigProperty, getDirtyProperties, getDirtyPropertyValues, getId, getProperties, isDirty, markClean, markDirty, markDirty, setConfig, setConfigMap, setConfigProperty, setId
-
Field Details
-
name
The name of the storage aggregate type (e.g., "RAID 5", "ZFS Mirror", "LVM Volume Group") -
code
A unique code identifying this type (e.g., "raid5", "zfs-mirror", "lvm-vg") -
description
Description of the storage aggregate type
-
-
Constructor Details
-
StorageAggregateType
public StorageAggregateType()
-
-
Method Details
-
getName
Gets the name of the storage aggregate type- Returns:
- name
-
setName
Sets the name of the storage aggregate type- Parameters:
name- the type name
-
getCode
Gets the unique code for this type- Returns:
- code
-
setCode
Sets the unique code for this type- Parameters:
code- the type code
-
getDescription
Gets the description of the storage aggregate type- Returns:
- description
-
setDescription
Sets the description of the storage aggregate type- Parameters:
description- the type description
-