Package com.woorea.openstack.nova.model
Class FlavorForCreate
- java.lang.Object
-
- com.woorea.openstack.nova.model.FlavorForCreate
-
- All Implemented Interfaces:
Serializable
public class FlavorForCreate extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FlavorForCreate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisk()IntegergetEphemeral()StringgetId()StringgetName()IntegergetRam()FloatgetRxtxFactor()StringgetSwap()StringgetVcpus()voidsetDisk(String disk)voidsetEphemeral(Integer ephemeral)voidsetId(String id)voidsetName(String name)voidsetRam(Integer ram)voidsetRxtxFactor(Float rxtxFactor)voidsetSwap(String swap)voidsetVcpus(String vcpus)
-
-
-
Method Detail
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id- the id to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getVcpus
public String getVcpus()
- Returns:
- the vcpus
-
setVcpus
public void setVcpus(String vcpus)
- Parameters:
vcpus- the vcpus to set
-
getRam
public Integer getRam()
- Returns:
- the ram
-
setRam
public void setRam(Integer ram)
- Parameters:
ram- the ram to set
-
getDisk
public String getDisk()
- Returns:
- the disk
-
setDisk
public void setDisk(String disk)
- Parameters:
disk- the disk to set
-
getEphemeral
public Integer getEphemeral()
- Returns:
- the ephemeral
-
setEphemeral
public void setEphemeral(Integer ephemeral)
- Parameters:
ephemeral- the ephemeral to set
-
getSwap
public String getSwap()
- Returns:
- the swap
-
setSwap
public void setSwap(String swap)
- Parameters:
swap- the swap to set
-
getRxtxFactor
public Float getRxtxFactor()
- Returns:
- the rxtxFactor
-
setRxtxFactor
public void setRxtxFactor(Float rxtxFactor)
- Parameters:
rxtxFactor- the rxtxFactor to set
-
-