Package com.io7m.certusine.api
Interface CSDNSConfiguratorType
- All Known Implementing Classes:
CSVultrDNSConfigurator
public interface CSDNSConfiguratorType
The type of DNS configurators that know how to create DNS records.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcreateTXTRecord(String name, String text) Create a TXT record with the given text.voiddeleteTXTRecord(String name, String text) Delete a TXT record with the given text.
-
Method Details
-
createTXTRecord
Create a TXT record with the given text.- Parameters:
name- The record nametext- The text- Throws:
IOException- On errorsInterruptedException- On thread interruption
-
deleteTXTRecord
Delete a TXT record with the given text.- Parameters:
name- The record nametext- The text- Throws:
IOException- On errorsInterruptedException- On thread interruption
-