Package org.openstack4j.model.network
Interface NetworkUpdate
-
- All Superinterfaces:
Buildable<NetworkUpdateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
NeutronNetworkUpdate
public interface NetworkUpdate extends ModelEntity, Buildable<NetworkUpdateBuilder>
An entity used to update a network- Author:
- Jeremy Unruh
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The name of the networkbooleanisAdminStateUp()The administrative state of the network, which is up (true) or down (false).booleanisDefault()The network is default pool or not.booleanisShared()Admin-only.
-
-
-
Method Detail
-
getName
String getName()
The name of the network- Returns:
- the network name
-
isAdminStateUp
boolean isAdminStateUp()
The administrative state of the network, which is up (true) or down (false).- Returns:
- the admin state up state
-
isShared
boolean isShared()
Admin-only. Indicates whether this network is shared across all tenants.- Returns:
- true if this network is shared
-
isDefault
boolean isDefault()
The network is default pool or not.- Returns:
- true if is a default network
-
-