@Validated
public interface DnsZoneRepository
| Modifier and Type | Method and Description |
|---|---|
boolean |
delete(@NotNull String zoneName)
Delete dns zone.
|
boolean |
exists(@NotNull String zoneName)
Check whether dns zone exists or not.
|
Stream<org.bremersee.dccon.model.DnsZone> |
findAll()
Find all dns zones.
|
default Stream<org.bremersee.dccon.model.DnsZone> |
findDnsReverseZones()
Find dns reverse zones stream.
|
default Stream<org.bremersee.dccon.model.DnsZone> |
findNonDnsReverseZones()
Find non dns reverse zones stream.
|
Optional<org.bremersee.dccon.model.DnsZone> |
findOne(@NotNull String zoneName)
Find dns zone.
|
boolean |
isDnsReverseZone(String dnsZoneName)
Determines whether the given zone is a reverse zone.
|
org.bremersee.dccon.model.DnsZone |
save(@NotNull String zoneName)
Save dns zone.
|
boolean isDnsReverseZone(String dnsZoneName)
dnsZoneName - the dns zone nameStream<org.bremersee.dccon.model.DnsZone> findAll()
default Stream<org.bremersee.dccon.model.DnsZone> findDnsReverseZones()
default Stream<org.bremersee.dccon.model.DnsZone> findNonDnsReverseZones()
boolean exists(@NotNull
@NotNull String zoneName)
zoneName - the zone nametrue if the dns zone exists, otherwise falseOptional<org.bremersee.dccon.model.DnsZone> findOne(@NotNull @NotNull String zoneName)
zoneName - the zone nameorg.bremersee.dccon.model.DnsZone save(@NotNull
@NotNull String zoneName)
zoneName - the zone nameboolean delete(@NotNull
@NotNull String zoneName)
zoneName - the zone nametrue is the repository was deleted, otherwise falseCopyright © 2020 bremersee.org. All rights reserved.