Class ExternalGatewayInfo
- java.lang.Object
-
- org.jclouds.openstack.neutron.v2.domain.ExternalGatewayInfo
-
public class ExternalGatewayInfo extends Object
Information on the external gateway for the router
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ExternalGatewayInfo.Builder
-
Field Summary
Fields Modifier and Type Field Description protected Boolean
enableSnat
protected String
networkId
-
Constructor Summary
Constructors Modifier Constructor Description protected
ExternalGatewayInfo(String networkId, Boolean enableSnat)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExternalGatewayInfo.Builder
builder()
boolean
equals(Object o)
Boolean
getEnableSnat()
String
getNetworkId()
int
hashCode()
ExternalGatewayInfo.Builder
toBuilder()
Gets a Builder configured as this object.String
toString()
-
-
-
Constructor Detail
-
ExternalGatewayInfo
@ConstructorProperties({"network_id","enable_snat"}) protected ExternalGatewayInfo(String networkId, Boolean enableSnat)
-
-
Method Detail
-
getNetworkId
@Nullable public String getNetworkId()
- Returns:
- the networkId of the ExternalGatewayInfo
-
getEnableSnat
@Nullable public Boolean getEnableSnat()
- Returns:
- the enableSnat status of the ExternalGatewayInfo
-
builder
public static ExternalGatewayInfo.Builder builder()
- Returns:
- the Builder for ExternalGatewayInfo
-
toBuilder
public ExternalGatewayInfo.Builder toBuilder()
Gets a Builder configured as this object.
-
-