Package org.openstack4j.model.network
Interface FloatingIP
-
- All Superinterfaces:
ModelEntity,Serializable
public interface FloatingIP extends ModelEntity
The Interface FloatingIP.Copyright (c) 2014 by Dorado Software, Inc. All Rights Reserved.
- Author:
- nanderson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFixedIpAddress()Gets the fixed ip address.StringgetFloatingIpAddress()Gets the floating ip address.StringgetFloatingNetworkId()Gets the floating network id.StringgetId()Gets the id.StringgetPortId()Gets the port id.StringgetRouterId()Gets the router id.StringgetTenantId()Gets the tenant id.voidsetFixedIpAddress(String fixedIpAddress)Sets the fixed ip address.voidsetFloatingIpAddress(String floatingIpAddress)Sets the floating ip address.voidsetFloatingNetworkId(String floatingNetworkId)Sets the floating network id.voidsetId(String id)Sets the id.voidsetPortId(String portId)Sets the port id.voidsetRouterId(String routerId)Sets the router id.voidsetTenantId(String tenantId)Sets the tenant id.
-
-
-
Method Detail
-
getId
String getId()
Gets the id.- Returns:
- the id
-
setId
void setId(String id)
Sets the id.- Parameters:
id- the new id
-
getRouterId
String getRouterId()
Gets the router id.- Returns:
- the router id
-
setRouterId
void setRouterId(String routerId)
Sets the router id.- Parameters:
routerId- the new router id
-
getTenantId
String getTenantId()
Gets the tenant id.- Returns:
- the tenant id
-
setTenantId
void setTenantId(String tenantId)
Sets the tenant id.- Parameters:
tenantId- the new tenant id
-
getFloatingNetworkId
String getFloatingNetworkId()
Gets the floating network id.- Returns:
- the floating network id
-
setFloatingNetworkId
void setFloatingNetworkId(String floatingNetworkId)
Sets the floating network id.- Parameters:
floatingNetworkId- the new floating network id
-
getFloatingIpAddress
String getFloatingIpAddress()
Gets the floating ip address.- Returns:
- the floating ip address
-
setFloatingIpAddress
void setFloatingIpAddress(String floatingIpAddress)
Sets the floating ip address.- Parameters:
floatingIpAddress- the new floating ip address
-
getFixedIpAddress
String getFixedIpAddress()
Gets the fixed ip address.- Returns:
- the fixed ip address
-
setFixedIpAddress
void setFixedIpAddress(String fixedIpAddress)
Sets the fixed ip address.- Parameters:
fixedIpAddress- the new fixed ip address
-
getPortId
String getPortId()
Gets the port id.- Returns:
- the port id
-
setPortId
void setPortId(String portId)
Sets the port id.- Parameters:
portId- the new port id
-
-