Package com.woorea.openstack.nova.model
Class Server.Addresses.Address
- java.lang.Object
-
- com.woorea.openstack.nova.model.Server.Addresses.Address
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Server.Addresses
public static final class Server.Addresses.Address extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Address()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddr()StringgetMacAddr()StringgetType()StringgetVersion()voidsetAddr(String addr)voidsetMacAddr(String macAddr)voidsetType(String type)voidsetVersion(String version)
-
-
-
Method Detail
-
getMacAddr
public String getMacAddr()
- Returns:
- the macAddr
-
getVersion
public String getVersion()
- Returns:
- the version
-
getAddr
public String getAddr()
- Returns:
- the addr
-
getType
public String getType()
- Returns:
- the type
-
setVersion
public void setVersion(String version)
- Parameters:
version- the version to set
-
setAddr
public void setAddr(String addr)
- Parameters:
addr- the addr to set
-
setType
public void setType(String type)
- Parameters:
type- the type to set
-
setMacAddr
public void setMacAddr(String macAddr)
- Parameters:
macAddr- the mac addr to set
-
-