Package com.morpheusdata.model
Class NetworkSubnetType
- java.lang.Object
-
- com.morpheusdata.model.MorpheusModel
-
- com.morpheusdata.model.NetworkSubnetType
-
public class NetworkSubnetType extends MorpheusModel
Some clouds have various subnet types as well as network types. The information contained with this NetworkSubnetType inform the UI and the system as to how to handle subnets. For example, if they can be created by users, have cidrs, etc.- Since:
- 0.11.0
-
-
Field Summary
-
Fields inherited from class com.morpheusdata.model.MorpheusModel
config, id
-
-
Constructor Summary
Constructors Constructor Description NetworkSubnetType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
getCanAssignPool()
java.lang.Boolean
getCidrEditable()
java.lang.Boolean
getCidrRequired()
java.lang.String
getCode()
java.lang.Boolean
getCreatable()
java.lang.Boolean
getDeletable()
java.lang.String
getDescription()
java.lang.Boolean
getDhcpServerEditable()
java.lang.String
getName()
java.util.List<OptionType>
getOptionTypes()
java.lang.Boolean
getVlanIdEditable()
void
setCanAssignPool(java.lang.Boolean canAssignPool)
void
setCidrEditable(java.lang.Boolean cidrEditable)
void
setCidrRequired(java.lang.Boolean cidrRequired)
void
setCode(java.lang.String code)
void
setCreatable(java.lang.Boolean creatable)
void
setDeletable(java.lang.Boolean deletable)
void
setDescription(java.lang.String description)
void
setDhcpServerEditable(java.lang.Boolean dhcpServerEditable)
void
setName(java.lang.String name)
void
setOptionTypes(java.util.List<OptionType> optionTypes)
void
setVlanIdEditable(java.lang.Boolean vlanIdEditable)
-
Methods inherited from class com.morpheusdata.model.MorpheusModel
getConfig, getConfigMap, getConfigProperty, getDirtyProperties, getDirtyPropertyValues, getId, getProperties, isDirty, markClean, markDirty, markDirty, setConfig, setConfigMap, setConfigProperty, setId
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
getCode
public java.lang.String getCode()
-
setCode
public void setCode(java.lang.String code)
-
getDescription
public java.lang.String getDescription()
-
setDescription
public void setDescription(java.lang.String description)
-
getCreatable
public java.lang.Boolean getCreatable()
-
setCreatable
public void setCreatable(java.lang.Boolean creatable)
-
getDeletable
public java.lang.Boolean getDeletable()
-
setDeletable
public void setDeletable(java.lang.Boolean deletable)
-
getDhcpServerEditable
public java.lang.Boolean getDhcpServerEditable()
-
setDhcpServerEditable
public void setDhcpServerEditable(java.lang.Boolean dhcpServerEditable)
-
getCanAssignPool
public java.lang.Boolean getCanAssignPool()
-
setCanAssignPool
public void setCanAssignPool(java.lang.Boolean canAssignPool)
-
getVlanIdEditable
public java.lang.Boolean getVlanIdEditable()
-
setVlanIdEditable
public void setVlanIdEditable(java.lang.Boolean vlanIdEditable)
-
getCidrEditable
public java.lang.Boolean getCidrEditable()
-
setCidrEditable
public void setCidrEditable(java.lang.Boolean cidrEditable)
-
getCidrRequired
public java.lang.Boolean getCidrRequired()
-
setCidrRequired
public void setCidrRequired(java.lang.Boolean cidrRequired)
-
getOptionTypes
public java.util.List<OptionType> getOptionTypes()
-
setOptionTypes
public void setOptionTypes(java.util.List<OptionType> optionTypes)
-
-