public interface SubnetService
| Modifier and Type | Method and Description |
|---|---|
boolean |
createSubnets(Iterable<Subnet> subnets)
Creates new subnets.
|
boolean |
exists(SubnetId subnetId)
Returns the subnet with the specified identifier.
|
Subnet |
getSubnet(SubnetId subnetId)
Returns the subnet with the specified identifier.
|
Iterable<Subnet> |
getSubnets()
Returns a collection of the currently known subnets.
|
boolean |
removeSubnets(Iterable<SubnetId> subnetIds)
Administratively removes the specified subnets from the store.
|
boolean |
updateSubnets(Iterable<Subnet> subnets)
Updates existing subnets.
|
boolean exists(SubnetId subnetId)
subnetId - subnet identifierIterable<Subnet> getSubnets()
Subnet getSubnet(SubnetId subnetId)
subnetId - subnet identifierboolean createSubnets(Iterable<Subnet> subnets)
subnets - the iterable collection of subnetsboolean updateSubnets(Iterable<Subnet> subnets)
subnets - the iterable collection of subnets