fa5840999d
Regenerated all Javadoc files with updated timestamps and fixed an example snippet in `CfDnsClient` for consistent variable naming. This ensures updated documentation and code clarity.
525 lines
44 KiB
HTML
525 lines
44 KiB
HTML
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Generated by javadoc (17) on Sun Mar 23 18:51:50 CET 2025 -->
|
|
<title>CfDnsClient (CloudflareDNS-java 0.1.0-SNAPSHOT API)</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="dc.created" content="2025-03-23">
|
|
<meta name="description" content="declaration: package: codes.thischwa.cf, class: CfDnsClient">
|
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
|
<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
|
|
<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
|
|
<script type="text/javascript" src="../../../script.js"></script>
|
|
<script type="text/javascript" src="../../../script-dir/jquery-3.6.1.min.js"></script>
|
|
<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
|
|
</head>
|
|
<body class="class-declaration-page">
|
|
<script type="text/javascript">var evenRowColor = "even-row-color";
|
|
var oddRowColor = "odd-row-color";
|
|
var tableTab = "table-tab";
|
|
var activeTableTab = "active-table-tab";
|
|
var pathtoroot = "../../../";
|
|
loadScripts(document, 'script');</script>
|
|
<noscript>
|
|
<div>JavaScript is disabled on your browser.</div>
|
|
</noscript>
|
|
<div class="flex-box">
|
|
<header role="banner" class="flex-header">
|
|
<nav role="navigation">
|
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
<div class="top-nav" id="navbar-top">
|
|
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
|
|
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
|
|
<li><a href="../../../index.html">Overview</a></li>
|
|
<li><a href="package-summary.html">Package</a></li>
|
|
<li class="nav-bar-cell1-rev">Class</li>
|
|
<li><a href="class-use/CfDnsClient.html">Use</a></li>
|
|
<li><a href="package-tree.html">Tree</a></li>
|
|
<li><a href="../../../index-all.html">Index</a></li>
|
|
<li><a href="../../../help-doc.html#class">Help</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="sub-nav">
|
|
<div>
|
|
<ul class="sub-nav-list">
|
|
<li>Summary: </li>
|
|
<li>Nested | </li>
|
|
<li>Field | </li>
|
|
<li><a href="#constructor-summary">Constr</a> | </li>
|
|
<li><a href="#method-summary">Method</a></li>
|
|
</ul>
|
|
<ul class="sub-nav-list">
|
|
<li>Detail: </li>
|
|
<li>Field | </li>
|
|
<li><a href="#constructor-detail">Constr</a> | </li>
|
|
<li><a href="#method-detail">Method</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
|
|
<input type="text" id="search-input" value="search" disabled="disabled">
|
|
<input type="reset" id="reset-button" value="reset" disabled="disabled">
|
|
</div>
|
|
</div>
|
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
<span class="skip-nav" id="skip-navbar-top"></span></nav>
|
|
</header>
|
|
<div class="flex-content">
|
|
<main role="main">
|
|
<!-- ======== START OF CLASS DATA ======== -->
|
|
<div class="header">
|
|
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">codes.thischwa.cf</a></div>
|
|
<h1 title="Class CfDnsClient" class="title">Class CfDnsClient</h1>
|
|
</div>
|
|
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
|
|
<div class="inheritance">codes.thischwa.cf.CfDnsClient</div>
|
|
</div>
|
|
<section class="class-description" id="class-description">
|
|
<hr>
|
|
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">CfDnsClient</span>
|
|
<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
|
|
<div class="block">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.
|
|
|
|
<p>Example:
|
|
|
|
<pre><code>
|
|
// Create a new CfDnsClient instance
|
|
CfDnsClient client = new CfDnsClient(
|
|
"email@example.com",
|
|
"yourApiKey",
|
|
"yourApiToken"
|
|
);
|
|
|
|
// Retrieve a zone
|
|
ZoneEntity zone = cfDnsClient.zoneInfo("example.com");
|
|
System.out.println("Zone ID: " + zone.getId());
|
|
|
|
// Retrieve records of a zone
|
|
List<RecordEntity> records = cfDnsClient.sldListAll(zone, "sld");
|
|
records.forEach(record ->
|
|
System.out.println("Record Type: " + record.getType() + ", Value: " + record.getContent())
|
|
);
|
|
</code></pre></div>
|
|
</section>
|
|
<section class="summary">
|
|
<ul class="summary-list">
|
|
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
|
<li>
|
|
<section class="constructor-summary" id="constructor-summary">
|
|
<h2>Constructor Summary</h2>
|
|
<div class="caption"><span>Constructors</span></div>
|
|
<div class="summary-table two-column-summary">
|
|
<div class="table-header col-first">Constructor</div>
|
|
<div class="table-header col-last">Description</div>
|
|
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)" class="member-name-link">CfDnsClient</a><wbr>(boolean emptyResultThrowsException,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</code></div>
|
|
<div class="col-last even-row-color">
|
|
<div class="block">Constructs a new instance of <code>CfDnsClient</code>, which facilitates interactions with the
|
|
Cloudflare DNS API.</div>
|
|
</div>
|
|
<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)" class="member-name-link">CfDnsClient</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</code></div>
|
|
<div class="col-last odd-row-color">
|
|
<div class="block">Constructs a CfDnsClient instance for interacting with the Cloudflare DNS API.</div>
|
|
</div>
|
|
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)" class="member-name-link">CfDnsClient</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</code></div>
|
|
<div class="col-last even-row-color">
|
|
<div class="block">Constructs a CfDnsClient instance for interacting with the Cloudflare DNS API.</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</li>
|
|
<!-- ========== METHOD SUMMARY =========== -->
|
|
<li>
|
|
<section class="method-summary" id="method-summary">
|
|
<h2>Method Summary</h2>
|
|
<div id="method-summary-table">
|
|
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
|
|
<div id="method-summary-table.tabpanel" role="tabpanel" aria-labelledby="method-summary-table-tab0">
|
|
<div class="summary-table three-column-summary">
|
|
<div class="table-header col-first">Modifier and Type</div>
|
|
<div class="table-header col-second">Method</div>
|
|
<div class="table-header col-last">Description</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordCreate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordCreate</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Creates a new DNS record in the specified zone using the Cloudflare API.</div>
|
|
</div>
|
|
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
|
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordDelete</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
|
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
|
</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">recordDelete</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> id)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
|
</div>
|
|
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
|
|
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">recordDeleteTypeIfExists</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/RecordType.html" title="enum class in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
|
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Attempts to delete a DNS record of a specific type for a given zone and second-level domain
|
|
(SLD), if it exists.</div>
|
|
</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)" class="member-name-link">recordUpdate</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
|
</div>
|
|
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></code></div>
|
|
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)" class="member-name-link">sldInfo</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/RecordType.html" title="enum class in codes.thischwa.cf.model">RecordType</a> type)</code></div>
|
|
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
|
zone and record type from the Cloudflare API.</div>
|
|
</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)" class="member-name-link">sldListAll</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
|
</div>
|
|
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a>></code></div>
|
|
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)" class="member-name-link">sldListAll</a><wbr>(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/PagingRequest.html" title="class in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
|
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
|
</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a></code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneInfo(java.lang.String)" class="member-name-link">zoneInfo</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> name)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
|
</div>
|
|
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
|
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneListAll()" class="member-name-link">zoneListAll</a>()</code></div>
|
|
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
|
</div>
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a>></code></div>
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#zoneListAll(codes.thischwa.cf.model.PagingRequest)" class="member-name-link">zoneListAll</a><wbr>(<a href="model/PagingRequest.html" title="class in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</code></div>
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
|
|
<div class="block">Retrieves a list of all DNS zones using the provided paging request parameters.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="inherited-list">
|
|
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
|
|
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
|
|
</section>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<section class="details">
|
|
<ul class="details-list">
|
|
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
|
<li>
|
|
<section class="constructor-details" id="constructor-detail">
|
|
<h2>Constructor Details</h2>
|
|
<ul class="member-list">
|
|
<li>
|
|
<section class="detail" id="<init>(java.lang.String,java.lang.String,java.lang.String)">
|
|
<h3>CfDnsClient</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">CfDnsClient</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</span></div>
|
|
<div class="block">Constructs a CfDnsClient instance for interacting with the Cloudflare DNS API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>authEmail</code> - The email address associated with the Cloudflare account, used for
|
|
authentication.</dd>
|
|
<dd><code>authKey</code> - The API key of the Cloudflare account, used as part of the authentication
|
|
process.</dd>
|
|
<dd><code>authToken</code> - The API token for accessing specific resources within the Cloudflare account.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="<init>(java.lang.String,java.lang.String,java.lang.String,java.lang.String)">
|
|
<h3>CfDnsClient</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">CfDnsClient</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</span></div>
|
|
<div class="block">Constructs a CfDnsClient instance for interacting with the Cloudflare DNS API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>baseUrl</code> - The base URL of the Cloudflare API to be used for requests.</dd>
|
|
<dd><code>authEmail</code> - The email address associated with the Cloudflare account, used for
|
|
authentication.</dd>
|
|
<dd><code>authKey</code> - The API key of the Cloudflare account, used as part of the authentication
|
|
process.</dd>
|
|
<dd><code>authToken</code> - The API token for accessing specific resources within the Cloudflare account.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="<init>(boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)">
|
|
<h3>CfDnsClient</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="element-name">CfDnsClient</span><wbr><span class="parameters">(boolean emptyResultThrowsException,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authEmail,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authKey,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> authToken)</span></div>
|
|
<div class="block">Constructs a new instance of <code>CfDnsClient</code>, which facilitates interactions with the
|
|
Cloudflare DNS API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>emptyResultThrowsException</code> - Specifies if an exception should be thrown when the API
|
|
response is empty. Default is true.</dd>
|
|
<dd><code>baseUrl</code> - The base URL for the Cloudflare API endpoint.</dd>
|
|
<dd><code>authEmail</code> - The email associated with the Cloudflare account for authentication.</dd>
|
|
<dd><code>authKey</code> - The API key for authenticating the client with Cloudflare services.</dd>
|
|
<dd><code>authToken</code> - The authentication token used for authorized access to Cloudflare API.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</li>
|
|
<!-- ============ METHOD DETAIL ========== -->
|
|
<li>
|
|
<section class="method-details" id="method-detail">
|
|
<h2>Method Details</h2>
|
|
<ul class="member-list">
|
|
<li>
|
|
<section class="detail" id="zoneListAll()">
|
|
<h3>zoneListAll</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a>></span> <span class="element-name">zoneListAll</span>()
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves a list of all zones from the Cloudflare API.</div>
|
|
<dl class="notes">
|
|
<dt>Returns:</dt>
|
|
<dd>A list of ZoneEntity objects representing the zones retrieved from the Cloudflare API.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs during the API request or response handling.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="zoneListAll(codes.thischwa.cf.model.PagingRequest)">
|
|
<h3>zoneListAll</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a>></span> <span class="element-name">zoneListAll</span><wbr><span class="parameters">(<a href="model/PagingRequest.html" title="class in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves a list of all DNS zones using the provided paging request parameters.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>pagingRequest</code> - the pagination request object containing parameters for paging and
|
|
filtering zone data</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>a list of <code>ZoneEntity</code> objects representing the DNS zones retrieved from the API</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an error during the API request or response
|
|
processing</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="zoneInfo(java.lang.String)">
|
|
<h3>zoneInfo</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a></span> <span class="element-name">zoneInfo</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> name)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves detailed information about a specific zone by its name.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>name</code> - The name of the zone to retrieve information for.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>A <a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model"><code>ZoneEntity</code></a> object that contains details of the specified zone.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while making the API request or processing
|
|
the response.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String)">
|
|
<h3>sldListAll</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a>></span> <span class="element-name">sldListAll</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The DNS zone entity for which the SLD records are to be fetched.</dd>
|
|
<dd><code>sld</code> - The second-level domain name for which the records are retrieved.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>A list of <code>RecordEntity</code> objects representing the DNS records associated with the
|
|
provided SLD.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="sldListAll(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.PagingRequest)">
|
|
<h3>sldListAll</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a><<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a>></span> <span class="element-name">sldListAll</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/PagingRequest.html" title="class in codes.thischwa.cf.model">PagingRequest</a> pagingRequest)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves all record entities for a specific second-level domain (SLD) within a given DNS zone.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The DNS zone entity for which the SLD records are to be fetched.</dd>
|
|
<dd><code>sld</code> - The second-level domain name for which the records are retrieved.</dd>
|
|
<dd><code>pagingRequest</code> - The paging request.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>A list of <code>RecordEntity</code> objects representing the DNS records associated with the
|
|
provided SLD.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="sldInfo(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)">
|
|
<h3>sldInfo</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></span> <span class="element-name">sldInfo</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/RecordType.html" title="enum class in codes.thischwa.cf.model">RecordType</a> type)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Retrieves detailed information about a specific second-level domain (SLD) record for a given
|
|
zone and record type from the Cloudflare API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - the zone entity that contains information about the DNS zone</dd>
|
|
<dd><code>sld</code> - the second-level domain (SLD) for which the record information is requested</dd>
|
|
<dd><code>type</code> - the type of DNS record (e.g., A, AAAA, CNAME) being queried</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>the record entity containing detailed information about the requested SLD and record
|
|
type</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - if an error occurs during interaction with the Cloudflare API</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="recordCreate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)">
|
|
<h3>recordCreate</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></span> <span class="element-name">recordCreate</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Creates a new DNS record in the specified zone using the Cloudflare API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The zone entity where the record will be created. Contains details such as zone ID.</dd>
|
|
<dd><code>rec</code> - The record entity representing the DNS record to be created, including its
|
|
attributes.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>The created record entity as returned by the Cloudflare API.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="recordDelete(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)">
|
|
<h3>recordDelete</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">recordDelete</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The zone entity that specifies the zone in which the record exists.</dd>
|
|
<dd><code>rec</code> - The record entity that represents the DNS record to be deleted.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd><code>true</code> if the DNS record was successfully deleted; <code>false</code> otherwise.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an issue during the API communication or the request
|
|
fails for any reason.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="recordDelete(codes.thischwa.cf.model.ZoneEntity,java.lang.String)">
|
|
<h3>recordDelete</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">recordDelete</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> id)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Deletes a DNS record of the specified type within a given zone on the Cloudflare API.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The zone entity that specifies the zone in which the record exists.</dd>
|
|
<dd><code>id</code> - The record entity that represents the DNS record to be deleted.</dd>
|
|
<dt>Returns:</dt>
|
|
<dd><code>true</code> if the DNS record was successfully deleted; <code>false</code> otherwise.</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - if there is an issue during the API communication or the request
|
|
fails for any reason.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="recordUpdate(codes.thischwa.cf.model.ZoneEntity,codes.thischwa.cf.model.RecordEntity)">
|
|
<h3>recordUpdate</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a></span> <span class="element-name">recordUpdate</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="model/RecordEntity.html" title="class in codes.thischwa.cf.model">RecordEntity</a> rec)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Updates an existing DNS record in a specified Cloudflare zone.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - the zone entity containing the ID of the target zone</dd>
|
|
<dd><code>rec</code> - the record entity containing the ID of the DNS record to be updated and its updated
|
|
data</dd>
|
|
<dt>Returns:</dt>
|
|
<dd>the updated record entity as returned by the Cloudflare API</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - if an error occurs while interacting with the Cloudflare API</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
<li>
|
|
<section class="detail" id="recordDeleteTypeIfExists(codes.thischwa.cf.model.ZoneEntity,java.lang.String,codes.thischwa.cf.model.RecordType)">
|
|
<h3>recordDeleteTypeIfExists</h3>
|
|
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">void</span> <span class="element-name">recordDeleteTypeIfExists</span><wbr><span class="parameters">(<a href="model/ZoneEntity.html" title="class in codes.thischwa.cf.model">ZoneEntity</a> zone,
|
|
<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> sld,
|
|
<a href="model/RecordType.html" title="enum class in codes.thischwa.cf.model">RecordType</a> type)</span>
|
|
throws <span class="exceptions"><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></span></div>
|
|
<div class="block">Attempts to delete a DNS record of a specific type for a given zone and second-level domain
|
|
(SLD), if it exists.</div>
|
|
<dl class="notes">
|
|
<dt>Parameters:</dt>
|
|
<dd><code>zone</code> - The zone in which the DNS record resides. It provides information about the domain.</dd>
|
|
<dd><code>sld</code> - The second-level domain (SLD) of the fully qualified domain name (FQDN) for which
|
|
the record is being deleted.</dd>
|
|
<dd><code>type</code> - The type of the DNS record to be deleted (e.g., A, CNAME, TXT).</dd>
|
|
<dt>Throws:</dt>
|
|
<dd><code><a href="CloudflareApiException.html" title="class in codes.thischwa.cf">CloudflareApiException</a></code> - If an error occurs while interacting with the Cloudflare API.</dd>
|
|
</dl>
|
|
</section>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<!-- ========= END OF CLASS DATA ========= -->
|
|
</main>
|
|
<footer role="contentinfo">
|
|
<hr>
|
|
<p class="legal-copy"><small>Copyright © 2025. All rights reserved.</small></p>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|