CfDnsClient is a client interface to interact with Cloudflare DNS service. It allows managing DNS
- records and zones within the Cloudflare system, including creating, updating, retrieving, and
- deleting DNS records.
-
-
Example with API token authentication (recommended):
-
- // Create a new CfDnsClient instance with API token
- CfDnsClient cfDnsClient = new CfDnsClientBuilder()
- .withApiTokenAuth("your-api-token")
- .build();
-
- // Retrieve a zone
- ZoneEntity zone = cfDnsClient.zoneGet("example.com");
- System.out.println("Zone ID: " + zone.getId());
-
- // Retrieve records of a subdomain
- List<RecordEntity> records = cfDnsClient.recordList(zone, "sld");
- records.forEach(record ->
- System.out.println("Record Type: " + record.getType() + ", Value: " + record.getContent())
- );
-
- // Create a record for the subdomain "api"
- RecordEntity created = cfDnsClient.recordCreateSld(zone, "api", 60, RecordType.A, "192.168.1.10");
- System.out.println("Created Record ID: " + created.getId());
-
Provides fluent API access to operations in a specific zone.
- This method returns a ZoneOperations interface that allows chaining operations
- on DNS records within the specified zone.
-
-
Deletes DNS records of a specific type within a given zone if they exist. If no getRecord of the
- specified type exists, it logs this occurrence without throwing an exception.
-
-
Parameters:
-
zone - The DNS zone entity in which the getRecord exists.
-
sld - The second-level domain for which the getRecord is being checked.
-
recordTypes - The types of DNS records that should be deleted if they exist.
Processes a batch of DNS getRecord operations (POST, PUT, PATCH, DELETE) for a specified zone.
- This method builds and cleans the input records, sends the batch request to the Cloudflare API,
- and returns a result containing processed batch entries.
-
-
Parameters:
-
zone - The zone entity to which the records belong.
-
postRecords - A list of DNS records to be created (POST). This parameter is nullable.
-
putRecords - A list of DNS records to be fully replaced (PUT). This parameter is nullable.
-
patchRecords - A list of DNS records to be partially updated (PATCH). This parameter is nullable.
-
deleteRecords - A list of DNS records to be deleted (DELETE). This parameter is nullable.
-
Returns:
-
The resulting BatchEntry containing the processed records after the batch operation.
-
Throws:
-
CloudflareApiException - If an error occurs while communicating with the Cloudflare API.
Builder class for configuring and creating instances of CfDnsClient.
- This class provides a fluent API for customizing the client settings,
- such as the base URL and authentication mechanism.
Configures whether an exception should be thrown when an empty result is encountered
- during operations performed by the `CfDnsClient`.
-
-
Parameters:
-
emptyResultThrowsException - a boolean flag indicating if an exception should be thrown
- when an empty result is returned. If set to `true`, operations
- that result in an empty response will throw an exception;
- otherwise, they will not.
-
Returns:
-
the current instance of CfDnsClientBuilder, allowing for method chaining
- to further configure the builder.
Configures the authentication method for the CfDnsClient to use an API token.
- This is the recommended way to authenticate with the Cloudflare API, as it provides
- enhanced security and ease of use compared to other authentication mechanisms.
-
-
Parameters:
-
apiToken - the Cloudflare API token. This token is required for authenticating
- API requests and must not be null or blank.
-
Returns:
-
the current instance of CfDnsClientBuilder, allowing for method chaining
- to further configure the builder.
Configures the authentication method for the CfDnsClient to use an email and API key.
- This approach uses the legacy authentication mechanism provided by Cloudflare, where requests
- are authenticated with a combination of an account's email address and API key.
-
-
Parameters:
-
authEmail - the email address associated with the Cloudflare account. This must not be null or blank.
-
authKey - the API key of the Cloudflare account. This must not be null or blank.
-
Returns:
-
the current instance of CfDnsClientBuilder, allowing for method chaining
- to further configure the builder.
Builds and returns a configured instance of CfDnsClient.
-
-
The method constructs a new CfDnsClient object based on the
- options set in the CfDnsClientBuilder. If no base URL has been
- explicitly configured, a default base URL will be used.
-
-
Returns:
-
a new instance of CfDnsClient configured with the
- specified options such as base URL, authentication details,
- and the exception-handling policy for empty results.
Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a
- cohesive and reusable manner. Each enum constant represents a specific API request path.
-
-
-
-
-
-
-
Nested Class Summary
-
-
Nested classes/interfaces inherited from class java.lang.Enum
Represents the API endpoint path for retrieving information about a specific DNS zone by its
- name. The endpoint path supports a placeholder for the zone name, which needs to be provided to
- construct the complete path.
Represents the API endpoint path for retrieving information about DNS records within a
- specific DNS zone. The endpoint path includes a placeholder for the zone identifier, which
- needs to be provided to construct the complete path.
Represents the API endpoint path for retrieving information about a DNS getRecord within a
- specific DNS zone by its name. The endpoint path includes placeholders for the zone identifier
- and the getRecord name, which need to be provided to construct the complete path.
Represents the API endpoint path for creating a new DNS getRecord within a specific DNS zone. The
- endpoint path includes a placeholder for the zone identifier, which needs to be provided to
- construct the complete path.
Represents the API endpoint path for updating an existing DNS getRecord within a specific DNS
- zone. The endpoint path includes placeholders for the zone identifier and the getRecord
- identifier, which need to be provided to construct the complete path.
Represents the API endpoint path for performing batch operations on DNS records within a specific zone.
- The placeholder "%s" in the path is intended to be replaced by a zone identifier.
- This constant is used to construct the URL for interacting with the batch DNS records API.
Represents the API endpoint path for deleting an existing DNS getRecord within a specific DNS
- zone. The endpoint path includes placeholders for the zone identifier and the getRecord
- identifier, which need to be provided to construct the complete path.
Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-
Parameters:
-
name - the name of the enum constant to be returned.
Represents a base abstract entity class for modeling domain objects with a unique identifier.
-
-
This class provides a fundamental contract for entities by implementing the ResponseEntity interface. The primary attribute of this class is the `id` field, which serves as
- a unique identifier for all derived entities.
-
-
Commonly extended by other entity classes to maintain a consistent entity structure across the
- domain models. This encourages code reusability and consistency within the system.
Abstract base class for response models that contain multiple result entries.
-
-
This class is designed to handle API responses where multiple entities are part of the result
- set, such as paginated or batched data. It extends AbstractResponse to include additional
- attributes specific to multi-entity responses.
-
-
Attributes:
-
-
-
`resultInfo`: Provides metadata about the result set, such as pagination details like page
- number, total count, number of results per page, etc.
-
`result`: A list of entities representing the main body of the response. The type of
- entities in the result list is determined by the generic parameter T, which must
- extend ResponseEntity.
-
-
-
Subclasses can be created by specifying the entity type that the response should handle.
public abstract class AbstractResponse
-extends Object
-
Abstract base class for API response models.
-
-
This class encapsulates common attributes used to represent the result of an API request. It
- can be extended to define more specific response structures.
-
-
Attributes:
-
-
-
success: Indicates whether the API request was successful.
-
errors: A list of error messages, if any, returned by the API.
-
messages: A list of informational or status messages accompanying the response.
-
-
-
This structure is designed for consistency and ease of extending response models in
- applications that require uniform response structures.
Represents a base abstract response model for handling single response entities within an API
- response.
-
-
This class extends AbstractResponse, inheriting common response attributes such as
- success status, error messages, and informational messages. It introduces a single generic type
- parameter <T> which extends ResponseEntity, enforcing type consistency for the
- result attribute.
-
-
Primary Attribute: result: Represents the single entity result of the response. This
- is a generic type that ensures flexibility and adaptability for different entity models.
Represents a batch entry containing different types of operations on getRecord entities.
-
-
A BatchEntry groups together collections of operations (patches, posts, puts, and deletes)
- intended to be performed as part of a single batch process. Each operation corresponds to a specific
- type of action on DNS getRecord entities.
-
-
-
patches: A list of RecordEntity objects representing partial updates to existing records.
-
posts: A list of RecordEntity objects to be created as new DNS records.
-
puts: A list of RecordEntity objects representing updates or replacements for existing records.
-
deletes: A list of RecordEntity objects with name, type, and content to be removed.
-
-
-
This class is used as both a request body for batch operations and to represent the batch response.
Represents a response that contains a single BatchEntry as the result.
-
-
This class is used for API responses where the primary result is a batch entry,
- which includes collections of operations such as patches, posts, puts, and deletes
- performed on DNS getRecord entities.
-
-
Extends AbstractSingleResponse with BatchEntry as the generic type,
- ensuring that the response result is a batch of operations.
Represents a request model for paginated data.
-
-
This class encapsulates the page number and the number of items per page for a paginated
- request, along with utility methods for constructing and retrieving pagination parameters.
-
-
Key functionalities:
-
-
-
Creating a PagingRequest instance with specific pagination values using the
- of method.
-
Creating a default PagingRequest with predefined pagination values.
-
Retrieving pagination parameters as a key-value map.
-
Generating a query string representation for the pagination parameters.
-
Creates a default PagingRequest instance with a page number set to 1 and a high number
- of items per page to accommodate large dataset requests and effectively retrieve all records.
Creates a default PagingRequest instance with a page number set to 1 and a high number
- of items per page to accommodate large dataset requests and effectively retrieve all records.
-
-
Returns:
-
a default PagingRequest instance with predefined pagination parameters
Retrieves the pagination parameters in a key-value map format.
-
-
Returns:
-
a map containing the pagination parameters, where the key "page" indicates the current
- page number and the key "perPage" indicates the number of items per page.
Initializes a new instance of the RecordEntity class and invokes the parent constructor from
- the AbstractEntity class. The RecordEntity class represents a DNS getRecord entity within a
- specific zone, encapsulating attributes such as type, name, content, TTL, and other related
- metadata.
Retrieves the short name (subdomain) of the DNS getRecord.
- If the name contains a dot ('.'), only the substring before the first dot is returned.
- This is useful for getting the subdomain part of a fully qualified domain name.
-
-
Returns:
-
the short name of the DNS getRecord (substring before the first dot),
- or the full name if no dot is present
Constructs an instance of RecordMultipleResponse.
-
-
This class represents a response containing multiple DNS getRecord entities from the
- Cloudflare API. It inherits functionality from AbstractMultipleResponse to handle multiple
- records of type RecordEntity.
Constructs a new instance of the RecordSingleResponse class.
-
-
This constructor initializes the RecordSingleResponse object by invoking the superclass
- constructor. The RecordSingleResponse represents a specific API response structure that
- encapsulates a single DNS getRecord entity, providing mechanisms to interact with such data in the
- context of the Cloudflare API.
Enum representing various DNS getRecord types.
-
-
Each constant in this enum corresponds to a specific DNS getRecord type, such as "A", "AAAA",
- "CNAME", or "TXT". This enum provides a means to standardize the representation of these getRecord
- types throughout the application while allowing easy retrieval of their string representation.
-
-
-
-
-
-
-
Nested Class Summary
-
-
Nested classes/interfaces inherited from class java.lang.Enum
The "DNSKEY" getRecord type is used for storing public keys in DNS, as part of the DNS Security
- Extensions (DNSSEC). It helps in verifying the authenticity of DNS responses through digital
- signatures.
Represents the DNS DS (Delegation Signer) getRecord type.
-
-
The "DS" getRecord type is used in the DNSSEC (Domain Name System Security Extensions)
- protocol. It contains a hash of a DNSKEY getRecord which is utilized in establishing a chain of
- trust from a parent zone to a child zone.
Represents the DNS LOC (Location) getRecord type.
-
-
The "LOC" getRecord type is used to store geographical location information for a domain,
- including latitude, longitude, altitude, and other details. It enables associating domains with
- physical locations.
Represents the NAPTR getRecord type for DNS configurations.
-
-
This constant is used to specify NAPTR (Naming Authority Pointer) DNS records, which allow
- for service discovery through flexible DNS-based mechanisms. NAPTR records are commonly used in
- applications such as VoIP and ENUM (Telephone Number Mapping) for resolving information about
- available services.
Represents the namespace or identifier `"NS"` within the domain model.
-
-
This variable typically designates elements related to name server operations or
- configurations in the context of the Cloudflare DNS system. It may be used as an identifier or
- constant throughout the application for operations involving name servers.
Represents the "OPENPGPKEY" DNS getRecord type.
-
-
This constant is primarily used to identify DNS records of the type "OPENPGPKEY". It may be
- utilized within the system for operations such as creating, retrieving, updating, or managing
- DNS records specific to the "OPENPGPKEY" type.
The SMIMEA resource getRecord is used to associate a user's certificate information for email
- message signing or encryption. This type of DNS getRecord is part of the DNS-based Authentication
- of Named Entities (DANE) protocol.
-
-
SMIMEA records provide a mechanism for utilizing certificates in email communication
- securely by publishing their information in DNS. They ensure integrity and authenticity of
- encrypted or signed email exchanges.
-
-
Key features include:
-
-
-
Use in Secure/Multipurpose Internet Mail Extensions (S/MIME)-based messaging.
-
Facilitating secure email communications by publishing certificates in DNS.
-
Enhancing security by eliminating dependency on third-party certificate authorities.
-
Represents the DNS getRecord type "SSHFP" (SSH Fingerprint), used in DNS to store cryptographic
- fingerprints associated with SSH host keys.
-
-
This DNS getRecord type provides a mechanism for verifying the authenticity of an SSH server
- before initiating a connection, enhancing the security of SSH communications.
Represents the Service Binding (SVCB) DNS getRecord type.
-
-
The SVCB getRecord is a DNS resource getRecord used to indicate alternative endpoints or specific
- configuration details for services. It is commonly applied in service discovery and
- protocol-specific configurations.
Represents a constant for the DNS-based Authentication of Named Entities (DANE) TLSA getRecord
- type.
-
-
The TLSA getRecord is used to associate a TLS server certificate or public key with the domain
- name (e.g., via DNSSEC). It enables cryptographically secured connections by attaching
- certificate and key constraints to the specific domain.
The TXT DNS getRecord type is commonly used to store text-based information for various
- verification and configuration purposes, such as domain ownership verification or email
- authentication protocols (e.g., SPF, DKIM).
Represents a Uniform Resource Identifier (URI).
-
-
This variable is used to define and manage URIs, which are string identifiers commonly
- utilized to specify the location of resources in various network-based systems.
-
-
Features and usage:
-
-
-
Provides a standard way of identifying resources via URI syntax.
-
Can encapsulate support for schemes such as HTTP, HTTPS, FTP, etc.
-
-
-
This variable serves as a critical component for resource identification and communication
- operations within the application.
Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-
Parameters:
-
name - the name of the enum constant to be returned.
Represents a contract for entities that have a unique identifier.
-
-
This interface is primarily used as a common abstraction for domain objects that require a
- unique identifier, enabling type consistency and code reusability.
public static class ResponseResultInfo.Error
-extends Object
-
Represents an error with a specific code and message.
-
-
This class is used to encapsulate error information, including a numerical error code
- and a corresponding descriptive message. It is often used as part of a collection of errors
- to provide detailed diagnostics for failed operations or processes.
Constructs a new instance of the Error class with default values for its properties.
-
-
This no-argument constructor initializes an Error object without setting
- specific values for the error code or message. It is primarily used when an error needs to
- be created and set up later, or when default values are acceptable.
count - The number of results on the current page.
-
totalCount - The total number of results across all pages.
-
-
-
public record ResultInfo(int page, int perPage, int totalPages, int count, int totalCount)
-extends Record
-
Represents metadata for paginated results.
-
-
This class contains information about the current page, page size, total pages, and result
- counts, which can be utilized in managing and navigating through paginated data.
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='.
Default no-argument constructor for the ZoneEntity class.
-
-
This constructor initializes a new instance of the ZoneEntity class and invokes the parent
- constructor from the AbstractEntity class. The ZoneEntity class represents a domain model for a
- DNS zone within the Cloudflare DNS system.
Creates a default PagingRequest instance with a page number set to 1 and a high number
- of items per page to accommodate large dataset requests and effectively retrieve all records.
-Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces
-
-
Search
-
You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camelCase" abbreviations. For example:
-
-
j.l.obj will match "java.lang.Object"
-
InpStr will match "java.io.InputStream"
-
HM.cK will match "java.util.HashMap.containsKey(Object)"
-The following sections describe the different kinds of pages in this collection.
-
-
Overview
-
The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-
Package
-
Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:
-
-
Interfaces
-
Classes
-
Enum Classes
-
Exceptions
-
Errors
-
Annotation Interfaces
-
-
-
-
Class or Interface
-
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.
-
-
Class Inheritance Diagram
-
Direct Subclasses
-
All Known Subinterfaces
-
All Known Implementing Classes
-
Class or Interface Declaration
-
Class or Interface Description
-
-
-
-
Nested Class Summary
-
Enum Constant Summary
-
Field Summary
-
Property Summary
-
Constructor Summary
-
Method Summary
-
Required Element Summary
-
Optional Element Summary
-
-
-
-
Enum Constant Details
-
Field Details
-
Property Details
-
Constructor Details
-
Method Details
-
Element Details
-
-
Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.
-
The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-
Other Files
-
Packages and modules may contain pages with additional information related to the declarations nearby.
-
-
-
Use
-
Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.
-
-
-
Tree (Class Hierarchy)
-
There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.
-
-
When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
-
When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.
-
-
-
All Packages
-
The All Packages page contains an alphabetic index of all packages contained in the documentation.
-
-
-
All Classes and Interfaces
-
The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.
-
-
-
Index
-
The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.
-
-
-
-This help file applies to API documentation generated by the standard doclet.
-
-
Creates a default PagingRequest instance with a page number set to 1 and a high number
- of items per page to accommodate large dataset requests and effectively retrieve all records.
-
-
diff --git a/docs/apidocs/jquery-ui.overrides.css b/docs/apidocs/jquery-ui.overrides.css
deleted file mode 100644
index facf852..0000000
--- a/docs/apidocs/jquery-ui.overrides.css
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-.ui-state-active,
-.ui-widget-content .ui-state-active,
-.ui-widget-header .ui-state-active,
-a.ui-button:active,
-.ui-button:active,
-.ui-button.ui-state-active:hover {
- /* Overrides the color of selection used in jQuery UI */
- background: #F8981D;
- border: 1px solid #F8981D;
-}
diff --git a/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO b/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO
deleted file mode 100644
index ff700cd..0000000
--- a/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO
+++ /dev/null
@@ -1,37 +0,0 @@
- ADDITIONAL INFORMATION ABOUT LICENSING
-
-Certain files distributed by Oracle America, Inc. and/or its affiliates are
-subject to the following clarification and special exception to the GPLv2,
-based on the GNU Project exception for its Classpath libraries, known as the
-GNU Classpath Exception.
-
-Note that Oracle includes multiple, independent programs in this software
-package. Some of those programs are provided under licenses deemed
-incompatible with the GPLv2 by the Free Software Foundation and others.
-For example, the package includes programs licensed under the Apache
-License, Version 2.0 and may include FreeType. Such programs are licensed
-to you under their original licenses.
-
-Oracle facilitates your further distribution of this package by adding the
-Classpath Exception to the necessary parts of its GPLv2 code, which permits
-you to use that code in combination with other independent modules not
-licensed under the GPLv2. However, note that this would not permit you to
-commingle code under an incompatible license with Oracle's GPLv2 licensed
-code by, for example, cutting and pasting such code into a file also
-containing Oracle's GPLv2 licensed code and then distributing the result.
-
-Additionally, if you were to remove the Classpath Exception from any of the
-files to which it applies and distribute the result, you would likely be
-required to license some or all of the other code in that distribution under
-the GPLv2 as well, and since the GPLv2 is incompatible with the license terms
-of some items included in the distribution by Oracle, removing the Classpath
-Exception could therefore effectively compromise your ability to further
-distribute the package.
-
-Failing to distribute notices associated with some files may also create
-unexpected legal consequences.
-
-Proceed with caution and we recommend that you obtain the advice of a lawyer
-skilled in open source matters before removing the Classpath Exception or
-making modifications to this package which may subsequently be redistributed
-and/or involve the use of third party software.
diff --git a/docs/apidocs/legal/ASSEMBLY_EXCEPTION b/docs/apidocs/legal/ASSEMBLY_EXCEPTION
deleted file mode 100644
index 065b8d9..0000000
--- a/docs/apidocs/legal/ASSEMBLY_EXCEPTION
+++ /dev/null
@@ -1,27 +0,0 @@
-
-OPENJDK ASSEMBLY EXCEPTION
-
-The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
-openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU
-General Public License version 2
-only ("GPL2"), with the following clarification and special exception.
-
- Linking this OpenJDK Code statically or dynamically with other code
- is making a combined work based on this library. Thus, the terms
- and conditions of GPL2 cover the whole combination.
-
- As a special exception, Oracle gives you permission to link this
- OpenJDK Code with certain code licensed by Oracle as indicated at
- http://openjdk.java.net/legal/exception-modules-2007-05-08.html
- ("Designated Exception Modules") to produce an executable,
- regardless of the license terms of the Designated Exception Modules,
- and to copy and distribute the resulting executable under GPL2,
- provided that the Designated Exception Modules continue to be
- governed by the licenses under which they were offered by Oracle.
-
-As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
-to build an executable that includes those portions of necessary code that
-Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
-with the Classpath exception). If you modify or add to the OpenJDK code,
-that new GPL2 code may still be combined with Designated Exception Modules
-if the new code is made subject to this exception by its copyright holder.
diff --git a/docs/apidocs/legal/LICENSE b/docs/apidocs/legal/LICENSE
deleted file mode 100644
index 8b400c7..0000000
--- a/docs/apidocs/legal/LICENSE
+++ /dev/null
@@ -1,347 +0,0 @@
-The GNU General Public License (GPL)
-
-Version 2, June 1991
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-Everyone is permitted to copy and distribute verbatim copies of this license
-document, but changing it is not allowed.
-
-Preamble
-
-The licenses for most software are designed to take away your freedom to share
-and change it. By contrast, the GNU General Public License is intended to
-guarantee your freedom to share and change free software--to make sure the
-software is free for all its users. This General Public License applies to
-most of the Free Software Foundation's software and to any other program whose
-authors commit to using it. (Some other Free Software Foundation software is
-covered by the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
-When we speak of free software, we are referring to freedom, not price. Our
-General Public Licenses are designed to make sure that you have the freedom to
-distribute copies of free software (and charge for this service if you wish),
-that you receive source code or can get it if you want it, that you can change
-the software or use pieces of it in new free programs; and that you know you
-can do these things.
-
-To protect your rights, we need to make restrictions that forbid anyone to deny
-you these rights or to ask you to surrender the rights. These restrictions
-translate to certain responsibilities for you if you distribute copies of the
-software, or if you modify it.
-
-For example, if you distribute copies of such a program, whether gratis or for
-a fee, you must give the recipients all the rights that you have. You must
-make sure that they, too, receive or can get the source code. And you must
-show them these terms so they know their rights.
-
-We protect your rights with two steps: (1) copyright the software, and (2)
-offer you this license which gives you legal permission to copy, distribute
-and/or modify the software.
-
-Also, for each author's protection and ours, we want to make certain that
-everyone understands that there is no warranty for this free software. If the
-software is modified by someone else and passed on, we want its recipients to
-know that what they have is not the original, so that any problems introduced
-by others will not reflect on the original authors' reputations.
-
-Finally, any free program is threatened constantly by software patents. We
-wish to avoid the danger that redistributors of a free program will
-individually obtain patent licenses, in effect making the program proprietary.
-To prevent this, we have made it clear that any patent must be licensed for
-everyone's free use or not licensed at all.
-
-The precise terms and conditions for copying, distribution and modification
-follow.
-
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0. This License applies to any program or other work which contains a notice
-placed by the copyright holder saying it may be distributed under the terms of
-this General Public License. The "Program", below, refers to any such program
-or work, and a "work based on the Program" means either the Program or any
-derivative work under copyright law: that is to say, a work containing the
-Program or a portion of it, either verbatim or with modifications and/or
-translated into another language. (Hereinafter, translation is included
-without limitation in the term "modification".) Each licensee is addressed as
-"you".
-
-Activities other than copying, distribution and modification are not covered by
-this License; they are outside its scope. The act of running the Program is
-not restricted, and the output from the Program is covered only if its contents
-constitute a work based on the Program (independent of having been made by
-running the Program). Whether that is true depends on what the Program does.
-
-1. You may copy and distribute verbatim copies of the Program's source code as
-you receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this License
-and to the absence of any warranty; and give any other recipients of the
-Program a copy of this License along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and you may
-at your option offer warranty protection in exchange for a fee.
-
-2. You may modify your copy or copies of the Program or any portion of it, thus
-forming a work based on the Program, and copy and distribute such modifications
-or work under the terms of Section 1 above, provided that you also meet all of
-these conditions:
-
- a) You must cause the modified files to carry prominent notices stating
- that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in whole or
- in part contains or is derived from the Program or any part thereof, to be
- licensed as a whole at no charge to all third parties under the terms of
- this License.
-
- c) If the modified program normally reads commands interactively when run,
- you must cause it, when started running for such interactive use in the
- most ordinary way, to print or display an announcement including an
- appropriate copyright notice and a notice that there is no warranty (or
- else, saying that you provide a warranty) and that users may redistribute
- the program under these conditions, and telling the user how to view a copy
- of this License. (Exception: if the Program itself is interactive but does
- not normally print such an announcement, your work based on the Program is
- not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If identifiable
-sections of that work are not derived from the Program, and can be reasonably
-considered independent and separate works in themselves, then this License, and
-its terms, do not apply to those sections when you distribute them as separate
-works. But when you distribute the same sections as part of a whole which is a
-work based on the Program, the distribution of the whole must be on the terms
-of this License, whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest your
-rights to work written entirely by you; rather, the intent is to exercise the
-right to control the distribution of derivative or collective works based on
-the Program.
-
-In addition, mere aggregation of another work not based on the Program with the
-Program (or with a work based on the Program) on a volume of a storage or
-distribution medium does not bring the other work under the scope of this
-License.
-
-3. You may copy and distribute the Program (or a work based on it, under
-Section 2) in object code or executable form under the terms of Sections 1 and
-2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable source
- code, which must be distributed under the terms of Sections 1 and 2 above
- on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three years, to
- give any third party, for a charge no more than your cost of physically
- performing source distribution, a complete machine-readable copy of the
- corresponding source code, to be distributed under the terms of Sections 1
- and 2 above on a medium customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer to
- distribute corresponding source code. (This alternative is allowed only
- for noncommercial distribution and only if you received the program in
- object code or executable form with such an offer, in accord with
- Subsection b above.)
-
-The source code for a work means the preferred form of the work for making
-modifications to it. For an executable work, complete source code means all
-the source code for all modules it contains, plus any associated interface
-definition files, plus the scripts used to control compilation and installation
-of the executable. However, as a special exception, the source code
-distributed need not include anything that is normally distributed (in either
-source or binary form) with the major components (compiler, kernel, and so on)
-of the operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the source
-code from the same place counts as distribution of the source code, even though
-third parties are not compelled to copy the source along with the object code.
-
-4. You may not copy, modify, sublicense, or distribute the Program except as
-expressly provided under this License. Any attempt otherwise to copy, modify,
-sublicense or distribute the Program is void, and will automatically terminate
-your rights under this License. However, parties who have received copies, or
-rights, from you under this License will not have their licenses terminated so
-long as such parties remain in full compliance.
-
-5. You are not required to accept this License, since you have not signed it.
-However, nothing else grants you permission to modify or distribute the Program
-or its derivative works. These actions are prohibited by law if you do not
-accept this License. Therefore, by modifying or distributing the Program (or
-any work based on the Program), you indicate your acceptance of this License to
-do so, and all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-6. Each time you redistribute the Program (or any work based on the Program),
-the recipient automatically receives a license from the original licensor to
-copy, distribute or modify the Program subject to these terms and conditions.
-You may not impose any further restrictions on the recipients' exercise of the
-rights granted herein. You are not responsible for enforcing compliance by
-third parties to this License.
-
-7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues), conditions
-are imposed on you (whether by court order, agreement or otherwise) that
-contradict the conditions of this License, they do not excuse you from the
-conditions of this License. If you cannot distribute so as to satisfy
-simultaneously your obligations under this License and any other pertinent
-obligations, then as a consequence you may not distribute the Program at all.
-For example, if a patent license would not permit royalty-free redistribution
-of the Program by all those who receive copies directly or indirectly through
-you, then the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply and
-the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any patents or
-other property right claims or to contest validity of any such claims; this
-section has the sole purpose of protecting the integrity of the free software
-distribution system, which is implemented by public license practices. Many
-people have made generous contributions to the wide range of software
-distributed through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing to
-distribute software through any other system and a licensee cannot impose that
-choice.
-
-This section is intended to make thoroughly clear what is believed to be a
-consequence of the rest of this License.
-
-8. If the distribution and/or use of the Program is restricted in certain
-countries either by patents or by copyrighted interfaces, the original
-copyright holder who places the Program under this License may add an explicit
-geographical distribution limitation excluding those countries, so that
-distribution is permitted only in or among countries not thus excluded. In
-such case, this License incorporates the limitation as if written in the body
-of this License.
-
-9. The Free Software Foundation may publish revised and/or new versions of the
-General Public License from time to time. Such new versions will be similar in
-spirit to the present version, but may differ in detail to address new problems
-or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any later
-version", you have the option of following the terms and conditions either of
-that version or of any later version published by the Free Software Foundation.
-If the Program does not specify a version number of this License, you may
-choose any version ever published by the Free Software Foundation.
-
-10. If you wish to incorporate parts of the Program into other free programs
-whose distribution conditions are different, write to the author to ask for
-permission. For software which is copyrighted by the Free Software Foundation,
-write to the Free Software Foundation; we sometimes make exceptions for this.
-Our decision will be guided by the two goals of preserving the free status of
-all derivatives of our free software and of promoting the sharing and reuse of
-software generally.
-
-NO WARRANTY
-
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
-THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
-STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
-PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
-YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
-ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
-PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
-INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
-BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
-OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest possible
-use to the public, the best way to achieve this is to make it free software
-which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program. It is safest to attach
-them to the start of each source file to most effectively convey the exclusion
-of warranty; and each file should have at least the "copyright" line and a
-pointer to where the full notice is found.
-
- One line to give the program's name and a brief idea of what it does.
-
- Copyright (C)
-
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the Free
- Software Foundation; either version 2 of the License, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this when it
-starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
- with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free
- software, and you are welcome to redistribute it under certain conditions;
- type 'show c' for details.
-
-The hypothetical commands 'show w' and 'show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may be
-called something other than 'show w' and 'show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your school,
-if any, to sign a "copyright disclaimer" for the program, if necessary. Here
-is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- 'Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- signature of Ty Coon, 1 April 1989
-
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General Public
-License instead of this License.
-
-
-"CLASSPATH" EXCEPTION TO THE GPL
-
-Certain source files distributed by Oracle America and/or its affiliates are
-subject to the following clarification and special exception to the GPL, but
-only where Oracle has expressly included in the particular source file's header
-the words "Oracle designates this particular file as subject to the "Classpath"
-exception as provided by Oracle in the LICENSE file that accompanied this code."
-
- Linking this library statically or dynamically with other modules is making
- a combined work based on this library. Thus, the terms and conditions of
- the GNU General Public License cover the whole combination.
-
- As a special exception, the copyright holders of this library give you
- permission to link this library with independent modules to produce an
- executable, regardless of the license terms of these independent modules,
- and to copy and distribute the resulting executable under terms of your
- choice, provided that you also meet, for each linked independent module,
- the terms and conditions of the license of that module. An independent
- module is a module which is not derived from or based on this library. If
- you modify this library, you may extend this exception to your version of
- the library, but you are not obligated to do so. If you do not wish to do
- so, delete this exception statement from your version.
diff --git a/docs/apidocs/legal/jquery.md b/docs/apidocs/legal/jquery.md
deleted file mode 100644
index a763ec6..0000000
--- a/docs/apidocs/legal/jquery.md
+++ /dev/null
@@ -1,26 +0,0 @@
-## jQuery v3.7.1
-
-### jQuery License
-```
-jQuery v 3.7.1
-Copyright OpenJS Foundation and other contributors, https://openjsf.org/
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-```
diff --git a/docs/apidocs/legal/jqueryUI.md b/docs/apidocs/legal/jqueryUI.md
deleted file mode 100644
index 46bfbaa..0000000
--- a/docs/apidocs/legal/jqueryUI.md
+++ /dev/null
@@ -1,49 +0,0 @@
-## jQuery UI v1.14.1
-
-### jQuery UI License
-```
-Copyright OpenJS Foundation and other contributors, https://openjsf.org/
-
-This software consists of voluntary contributions made by many
-individuals. For exact contribution history, see the revision history
-available at https://github.com/jquery/jquery-ui
-
-The following license applies to all parts of this software except as
-documented below:
-
-====
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-====
-
-Copyright and related rights for sample code are waived via CC0. Sample
-code is defined as all source code contained within the demos directory.
-
-CC0: http://creativecommons.org/publicdomain/zero/1.0/
-
-====
-
-All files located in the node_modules and external directories are
-externally maintained libraries used by this software which have their
-own licenses; we recommend you read them, as their terms may differ from
-the terms above.
-
-```
diff --git a/docs/apidocs/member-search-index.js b/docs/apidocs/member-search-index.js
deleted file mode 100644
index fca8b2e..0000000
--- a/docs/apidocs/member-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-memberSearchIndex = [{"p":"codes.thischwa.cf.model","c":"RecordType","l":"A"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"AAAA"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"AbstractEntity()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"AbstractResponse()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"AbstractSingleResponse()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"addQueryString(String)","u":"addQueryString(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"BatchEntry()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"build()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"build(String, RecordType, Integer, String)","u":"build(java.lang.String,codes.thischwa.cf.model.RecordType,java.lang.Integer,java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"build(String, String)","u":"build(java.lang.String,java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"build(String, String, String, Integer, String)","u":"build(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"CAA"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"CERT"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"CfDnsClientBuilder()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf","c":"CloudflareApiException","l":"CloudflareApiException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"codes.thischwa.cf","c":"CloudflareApiException","l":"CloudflareApiException(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"codes.thischwa.cf","c":"CloudflareNotFoundException","l":"CloudflareNotFoundException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"CNAME"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"count()"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperations","l":"create(RecordType, String, int)","u":"create(codes.thischwa.cf.model.RecordType,java.lang.String,int)"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperationsImpl","l":"create(RecordType, String, int)","u":"create(codes.thischwa.cf.model.RecordType,java.lang.String,int)"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"DEFAULT_BASEURL"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"defaultPaging()"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperations","l":"delete(RecordType...)","u":"delete(codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperationsImpl","l":"delete(RecordType...)","u":"delete(codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"DNSKEY"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"DS"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"Error()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"Error(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperations","l":"get()"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperationsImpl","l":"get()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getActivatedOn()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"getCode()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getContent()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getCreatedOn()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getCreatedOn()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"getDeletes()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getDevelopmentMode()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"getErrors()"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"getId()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"getId()"},{"p":"codes.thischwa.cf.model","c":"ResponseEntity","l":"getId()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getLocked()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"getMessage()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"getMessages()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getModifiedOn()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getModifiedOn()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getName()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getName()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getNameServers()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getOriginalNameServers()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"getPage()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"getPagingParams()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"getPatches()"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"getPath()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getPaused()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"getPerPage()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"getPosts()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getProxiable()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getProxied()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"getPuts()"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperations","l":"getRecord(String)","u":"getRecord(java.lang.String)"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperationsImpl","l":"getRecord(String)","u":"getRecord(java.lang.String)"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperations","l":"getRecord(String, RecordType...)","u":"getRecord(java.lang.String,codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperationsImpl","l":"getRecord(String, RecordType...)","u":"getRecord(java.lang.String,codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"getResponseResultInfo()"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"getResult()"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"getResult()"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"getResultInfo()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getSld()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getStatus()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getTtl()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getType()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"getType()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"getType()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getZoneId()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"getZoneName()"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"groupRecordsByFqdn(List)","u":"groupRecordsByFqdn(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"hashCode()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"HTTPS"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"isSuccess()"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperations","l":"list(RecordType...)","u":"list(codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperationsImpl","l":"list(RecordType...)","u":"list(codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"LOC"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"MX"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"NAPTR"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"NS"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"of(int, int)","u":"of(int,int)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"OPENPGPKEY"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"page()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"perPage()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"PTR"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_BATCH"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_CREATE"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_DELETE"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_LIST"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_LIST_NAME"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"RECORD_UPDATE"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordBatch(ZoneEntity, List, List, List, List)","u":"recordBatch(codes.thischwa.cf.model.ZoneEntity,java.util.List,java.util.List,java.util.List,java.util.List)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordCreate(ZoneEntity, RecordEntity)","u":"recordCreate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordCreate(ZoneEntity, String, int, RecordType, String)","u":"recordCreate(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordCreateSld(ZoneEntity, String, int, RecordType, String)","u":"recordCreateSld(codes.thischwa.cf.model.ZoneEntity,java.lang.String,int,codes.thischwa.cf.model.RecordType,java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordDelete(ZoneEntity, RecordEntity)","u":"recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordDelete(ZoneEntity, String)","u":"recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordDeleteTypeIfExists(ZoneEntity, String, RecordType...)","u":"recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"RecordEntity()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordList(ZoneEntity)","u":"recordList(codes.thischwa.cf.model.ZoneEntity)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordList(ZoneEntity, PagingRequest)","u":"recordList(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.PagingRequest)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordList(ZoneEntity, RecordType...)","u":"recordList(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordList(ZoneEntity, String)","u":"recordList(codes.thischwa.cf.model.ZoneEntity,java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordList(ZoneEntity, String, RecordType...)","u":"recordList(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType...)"},{"p":"codes.thischwa.cf.model","c":"RecordMultipleResponse","l":"RecordMultipleResponse()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperationsImpl","l":"RecordOperationsImpl(CfDnsClient, ZoneEntity, String, RecordType[])","u":"%3Cinit%3E(codes.thischwa.cf.CfDnsClient,codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType[])"},{"p":"codes.thischwa.cf.model","c":"RecordSingleResponse","l":"RecordSingleResponse()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"recordUpdate(ZoneEntity, RecordEntity)","u":"recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"ResponseResultInfo()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"ResultInfo(int)","u":"%3Cinit%3E(int)"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"ResultInfo(int, int, int, int, int)","u":"%3Cinit%3E(int,int,int,int,int)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setActivatedOn(LocalDateTime)","u":"setActivatedOn(java.time.LocalDateTime)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"setCode(int)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setContent(String)","u":"setContent(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setCreatedOn(LocalDateTime)","u":"setCreatedOn(java.time.LocalDateTime)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setCreatedOn(LocalDateTime)","u":"setCreatedOn(java.time.LocalDateTime)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"setDeletes(List)","u":"setDeletes(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setDevelopmentMode(Integer)","u":"setDevelopmentMode(java.lang.Integer)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"setErrors(List)","u":"setErrors(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"setId(String)","u":"setId(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setLocked(Boolean)","u":"setLocked(java.lang.Boolean)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"setMessage(String)","u":"setMessage(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"setMessages(List)","u":"setMessages(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setModifiedOn(LocalDateTime)","u":"setModifiedOn(java.time.LocalDateTime)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setModifiedOn(LocalDateTime)","u":"setModifiedOn(java.time.LocalDateTime)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setNameServers(Set)","u":"setNameServers(java.util.Set)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setOriginalNameServers(Set)","u":"setOriginalNameServers(java.util.Set)"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"setPage(int)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"setPatches(List)","u":"setPatches(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setPaused(Boolean)","u":"setPaused(java.lang.Boolean)"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"setPerPage(int)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"setPosts(List)","u":"setPosts(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setProxiable(Boolean)","u":"setProxiable(java.lang.Boolean)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setProxied(Boolean)","u":"setProxied(java.lang.Boolean)"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"setPuts(List)","u":"setPuts(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"setResponseResultInfo(ResponseResultInfo)","u":"setResponseResultInfo(codes.thischwa.cf.model.ResponseResultInfo)"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"setResult(List)","u":"setResult(java.util.List)"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"setResult(T)"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"setResultInfo(ResultInfo)","u":"setResultInfo(codes.thischwa.cf.model.ResultInfo)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setStatus(String)","u":"setStatus(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"setSuccess(boolean)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setTtl(Integer)","u":"setTtl(java.lang.Integer)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setZoneId(String)","u":"setZoneId(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"setZoneName(String)","u":"setZoneName(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"SMIMEA"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"SRV"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"SSHFP"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"SVCB"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"TLSA"},{"p":"codes.thischwa.cf.model","c":"AbstractEntity","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"AbstractMultipleResponse","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"AbstractResponse","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"AbstractSingleResponse","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"BatchEntry","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"PagingRequest","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"RecordEntity","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo.Error","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"ResponseResultInfo","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"toString()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"totalCount()"},{"p":"codes.thischwa.cf.model","c":"ResultInfo","l":"totalPages()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"TXT"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperations","l":"update(String)","u":"update(java.lang.String)"},{"p":"codes.thischwa.cf.fluent","c":"RecordOperationsImpl","l":"update(String)","u":"update(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"URI"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"values()"},{"p":"codes.thischwa.cf.model","c":"RecordType","l":"values()"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"withApiTokenAuth(String)","u":"withApiTokenAuth(java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"withBaseUrl(String)","u":"withBaseUrl(java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"withEmailKeyAuth(String, String)","u":"withEmailKeyAuth(java.lang.String,java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClientBuilder","l":"withEmptyResultThrowsException(boolean)"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"ZONE_INFO"},{"p":"codes.thischwa.cf","c":"CfRequest","l":"ZONE_LIST"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"zone(String)","u":"zone(java.lang.String)"},{"p":"codes.thischwa.cf.model","c":"ZoneEntity","l":"ZoneEntity()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"zoneGet(String)","u":"zoneGet(java.lang.String)"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"zoneList()"},{"p":"codes.thischwa.cf","c":"CfDnsClient","l":"zoneList(PagingRequest)","u":"zoneList(codes.thischwa.cf.model.PagingRequest)"},{"p":"codes.thischwa.cf.model","c":"ZoneMultipleResponse","l":"ZoneMultipleResponse()","u":"%3Cinit%3E()"},{"p":"codes.thischwa.cf.fluent","c":"ZoneOperationsImpl","l":"ZoneOperationsImpl(CfDnsClient, ZoneEntity)","u":"%3Cinit%3E(codes.thischwa.cf.CfDnsClient,codes.thischwa.cf.model.ZoneEntity)"}];updateSearchResults();
\ No newline at end of file
diff --git a/docs/apidocs/module-search-index.js b/docs/apidocs/module-search-index.js
deleted file mode 100644
index 0d59754..0000000
--- a/docs/apidocs/module-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-moduleSearchIndex = [];updateSearchResults();
\ No newline at end of file
diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html
deleted file mode 100644
index 4d59411..0000000
--- a/docs/apidocs/overview-summary.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-CloudflareDNS-java 0.5.0-SNAPSHOT API
-
-
-
-
-
-
-
-
-
-
-
-
-
-