From f3e05e1bc78b6be9a8845e646d9f5d2bf8ed7ef9 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 27 Jun 2026 18:42:12 +0200 Subject: [PATCH 01/10] Extract changelog to a dedicated `changelog.md` file and update references in `README.md`. --- README.md | 35 ++--------------------------------- changelog.md | 31 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 changelog.md diff --git a/README.md b/README.md index bc7aeca..a539dbb 100644 --- a/README.md +++ b/README.md @@ -22,35 +22,7 @@ The project has its own maven repository. Follow the instructions on the latest ## Changelog -- 0.4.0: - - fixed some paging issues - - **Breaking Change**: renamed `client.zone().record()` to `client.zone().getRecord()` - - Code quality improvements: Increasing test coverage -- 0.3.0: - - **Breaking Change**: - - **New Fluent API**: Changed the initialization of the client(`new CfDnsClientBuilder().withApiTokenAuth("your-api-token").build()`) - - Authentication with API token. -- 0.2.0: - - **Breaking Change**: `emptyResultThrowsException` default changed from `true` to `false`. Now applies to both - single and multiple result requests. Empty results will be returned by default without throwing exceptions. - - API method names refactored for consistency: `zoneListAll` → `zoneList`, `zoneInfo` → `zoneGet`, `sldListAll` → - `recordList` - - RecordEntity getter methods renamed for clarity: `getName()` → `getSld()` - - **New Fluent API**: Changed the initialization of the client(`new CfDnsClientBuilder().withApiTokenAuth("your-api-token").build()`) and added chainable method interface for more readable DNS operations ( - `client.zone().record()...`) - - Code quality improvements: removed duplication in batch operations, improved type safety in HTTP methods, - optimized string concatenation, removed mutable setters from CfDnsClient - - Enhanced type validation in `RecordEntity.build()` with better error messages - - CfClient#recordList must return multiple RecordEntries - - add a missing source jar - - ResponseResultInfo#Errors: wrong object structure - - changing multiple records with put, post, patch and delete for dns-records -- 0.1.0: - - refactored / extended tests -- 0.1.0-beta.3: - - fixed json deserialization - - added logging of api errors -- 0.1.0-beta.1: 1st runnable version +See [changelog](changelog.md) ## Methods Overview @@ -438,7 +410,4 @@ try { ``` --- - -# Summary - -`CfDnsClient` offers a simple interface for managing DNS entries via Cloudflare's public API, allowing seamless CRUD operations and automation-friendly workflows. \ No newline at end of file + \ No newline at end of file diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..d926ef7 --- /dev/null +++ b/changelog.md @@ -0,0 +1,31 @@ +# Changelog + +- 0.4.0: + - fixed some paging issues + - **Breaking Change**: renamed `client.zone().record()` to `client.zone().getRecord()` + - Code quality improvements: Increasing test coverage +- 0.3.0: + - **Breaking Change**: + - **New Fluent API**: Changed the initialization of the client(`new CfDnsClientBuilder().withApiTokenAuth("your-api-token").build()`) + - Authentication with API token. +- 0.2.0: + - **Breaking Change**: `emptyResultThrowsException` default changed from `true` to `false`. Now applies to both + single and multiple result requests. Empty results will be returned by default without throwing exceptions. + - API method names refactored for consistency: `zoneListAll` → `zoneList`, `zoneInfo` → `zoneGet`, `sldListAll` → + `recordList` + - RecordEntity getter methods renamed for clarity: `getName()` → `getSld()` + - **New Fluent API**: Changed the initialization of the client(`new CfDnsClientBuilder().withApiTokenAuth("your-api-token").build()`) and added chainable method interface for more readable DNS operations ( + `client.zone().record()...`) + - Code quality improvements: removed duplication in batch operations, improved type safety in HTTP methods, + optimized string concatenation, removed mutable setters from CfDnsClient + - Enhanced type validation in `RecordEntity.build()` with better error messages + - CfClient#recordList must return multiple RecordEntries + - add a missing source jar + - ResponseResultInfo#Errors: wrong object structure + - changing multiple records with put, post, patch and delete for dns-records +- 0.1.0: + - refactored / extended tests +- 0.1.0-beta.3: + - fixed json deserialization + - added logging of api errors +- 0.1.0-beta.1: 1st runnable version \ No newline at end of file From c2d10bb9295dfdfeff529f0b6891c9b1278c7b46 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 27 Jun 2026 18:53:53 +0200 Subject: [PATCH 02/10] Clarify step names in `publish-report` action for improved readability. --- .github/actions/publish-report/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/publish-report/action.yml b/.github/actions/publish-report/action.yml index 659f025..48b1678 100644 --- a/.github/actions/publish-report/action.yml +++ b/.github/actions/publish-report/action.yml @@ -19,7 +19,7 @@ runs: cp "$f" "junit-short/${short}" done - - name: Generate Markdown Report + - name: Generate Markdown Test Report shell: bash run: | mkdir -p reports @@ -67,7 +67,7 @@ runs: print(md) EOF - - name: Commit Report to Repo + - name: Commit Test-Report to Repo shell: bash env: GIT_USER: gitea-actions-bot From 41d35fe745e7b474763195355ab7b9e965666cbf Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 27 Jun 2026 19:02:19 +0200 Subject: [PATCH 03/10] Add JaCoCo coverage parsing to `publish-report` action; enhance Markdown report with coverage details. --- .github/actions/publish-report/action.yml | 53 +++++++++++++++++++---- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/.github/actions/publish-report/action.yml b/.github/actions/publish-report/action.yml index 48b1678..9e9d00b 100644 --- a/.github/actions/publish-report/action.yml +++ b/.github/actions/publish-report/action.yml @@ -25,11 +25,12 @@ runs: mkdir -p reports python3 - <<'EOF' import glob, xml.etree.ElementTree as ET - + + # --- JUnit --- files = glob.glob("junit-short/*.xml") total_tests = total_failures = total_errors = total_skipped = 0 - rows = [] - + test_rows = [] + for f in sorted(files): tree = ET.parse(f) r = tree.getroot() @@ -46,22 +47,56 @@ runs: total_failures += failures total_errors += errors total_skipped += skipped - rows.append(f"| {status} | {name} | {tests} | {passed} | {failures + errors} | {skipped} |") - + test_rows.append(f"| {status} | {name} | {tests} | {passed} | {failures + errors} | {skipped} |") + total_passed = total_tests - total_failures - total_errors - total_skipped overall = "✅ All tests passed" if (total_failures + total_errors) == 0 else "❌ Some tests failed" - + + # --- JaCoCo --- + def counter(el, type_): + c = next((x for x in el.findall("counter") if x.get("type") == type_), None) + if c is None: + return 0, 0 + covered = int(c.get("covered", 0)) + missed = int(c.get("missed", 0)) + return covered, covered + missed + + cov_rows = [] + jacoco_files = glob.glob("**/target/site/jacoco/jacoco.xml", recursive=True) + + for jf in sorted(jacoco_files): + tree = ET.parse(jf) + root = tree.getroot() + for pkg in root.findall("package"): + name = pkg.get("name", "").replace("/", ".") + line_cov, line_total = counter(pkg, "LINE") + branch_cov, branch_total = counter(pkg, "BRANCH") + line_pct = f"{100 * line_cov / line_total:.0f}%" if line_total else "n/a" + branch_pct = f"{100 * branch_cov / branch_total:.0f}%" if branch_total else "n/a" + cov_rows.append(f"| {name} | {line_pct} ({line_cov}/{line_total}) | {branch_pct} ({branch_cov}/{branch_total}) |") + + # --- Markdown zusammenbauen --- md = ( "# Test Report\n\n" f"**{overall}**\n\n" + "## Test Results\n\n" "| | Tests | Passed | Failed | Skipped |\n" "|---|---|---|---|---|\n" f"| **Total** | {total_tests} | {total_passed} | {total_failures + total_errors} | {total_skipped} |\n\n" - "## Details\n\n" + "### Details\n\n" "| Status | Suite | Tests | Passed | Failed | Skipped |\n" "|---|---|---|---|---|---|\n" - ) + "\n".join(rows) + "\n" - + ) + "\n".join(test_rows) + "\n\n" + + if cov_rows: + md += ( + "## Coverage\n\n" + "| Package | Line Coverage | Branch Coverage |\n" + "|---|---|---|\n" + ) + "\n".join(cov_rows) + "\n" + else: + md += "_No JaCoCo report found._\n" + with open("reports/index.md", "w") as out: out.write(md) print(md) From c68b865798d51823a1cbe64b9e76e72d1383b073 Mon Sep 17 00:00:00 2001 From: gitea-actions-bot Date: Sat, 27 Jun 2026 17:03:10 +0000 Subject: [PATCH 04/10] ci: update test report [skip ci] --- reports/index.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/reports/index.md b/reports/index.md index f0bc615..f9e247d 100644 --- a/reports/index.md +++ b/reports/index.md @@ -2,11 +2,13 @@ **✅ All tests passed** +## Test Results + | | Tests | Passed | Failed | Skipped | |---|---|---|---|---| | **Total** | 90 | 90 | 0 | 0 | -## Details +### Details | Status | Suite | Tests | Passed | Failed | Skipped | |---|---|---|---|---|---| @@ -24,3 +26,11 @@ | ✅ | codes.thischwa.cf.model.RecordEntityTest | 6 | 6 | 0 | 0 | | ✅ | codes.thischwa.cf.model.RecordTypeTest | 3 | 3 | 0 | 0 | | ✅ | codes.thischwa.cf.model.ZoneEntityTest | 1 | 1 | 0 | 0 | + +## Coverage + +| Package | Line Coverage | Branch Coverage | +|---|---|---| +| codes.thischwa.cf.fluent | 100% (25/25) | 100% (4/4) | +| codes.thischwa.cf.model | 100% (93/93) | 90% (9/10) | +| codes.thischwa.cf | 89% (249/279) | 71% (51/72) | From eea6e72145c6d1b0bc7947c540b7b8e75a03d06f Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 27 Jun 2026 19:39:27 +0200 Subject: [PATCH 05/10] Update changelog for version 0.5.0-SNAPSHOT: migrate to git.mein-gateway.de and replace SonarQube with custom actions --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index d926ef7..abac8be 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +- 0.5.0-SNAPSHOT: + - moved the project to git.mein-gateway.de + - replaced sonarqube with own actions - 0.4.0: - fixed some paging issues - **Breaking Change**: renamed `client.zone().record()` to `client.zone().getRecord()` From ba9bc9ea936eb184ad32600e0653d44ef71a6c57 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 28 Jun 2026 12:48:34 +0200 Subject: [PATCH 06/10] Update `publish-report` action to write output to `test.md` instead of `index.md` --- .github/actions/publish-report/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/publish-report/action.yml b/.github/actions/publish-report/action.yml index 9e9d00b..5bf2fa0 100644 --- a/.github/actions/publish-report/action.yml +++ b/.github/actions/publish-report/action.yml @@ -97,7 +97,7 @@ runs: else: md += "_No JaCoCo report found._\n" - with open("reports/index.md", "w") as out: + with open("reports/test.md", "w") as out: out.write(md) print(md) EOF From 9919230a3bcc69e154d6ee9c83408e8b0d75693a Mon Sep 17 00:00:00 2001 From: gitea-actions-bot Date: Sun, 28 Jun 2026 10:49:25 +0000 Subject: [PATCH 07/10] ci: update test report [skip ci] --- reports/test.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 reports/test.md diff --git a/reports/test.md b/reports/test.md new file mode 100644 index 0000000..f9e247d --- /dev/null +++ b/reports/test.md @@ -0,0 +1,36 @@ +# Test Report + +**✅ All tests passed** + +## Test Results + +| | Tests | Passed | Failed | Skipped | +|---|---|---|---|---| +| **Total** | 90 | 90 | 0 | 0 | + +### Details + +| Status | Suite | Tests | Passed | Failed | Skipped | +|---|---|---|---|---|---| +| ✅ | codes.thischwa.cf.CfBasicHttpClientTest | 9 | 9 | 0 | 0 | +| ✅ | codes.thischwa.cf.CfClientPenTest | 0 | 0 | 0 | 0 | +| ✅ | codes.thischwa.cf.CfClientTest | 0 | 0 | 0 | 0 | +| ✅ | codes.thischwa.cf.CfDnsClientBuilderTest | 16 | 16 | 0 | 0 | +| ✅ | codes.thischwa.cf.CfDnsClientMockTest | 16 | 16 | 0 | 0 | +| ✅ | codes.thischwa.cf.CfRequestTest | 8 | 8 | 0 | 0 | +| ✅ | codes.thischwa.cf.ObjectMapperTest | 2 | 2 | 0 | 0 | +| ✅ | codes.thischwa.cf.ResponseValidatorTest | 8 | 8 | 0 | 0 | +| ✅ | codes.thischwa.cf.fluent.FluentApiTest | 15 | 15 | 0 | 0 | +| ✅ | codes.thischwa.cf.model.BatchEntryTest | 2 | 2 | 0 | 0 | +| ✅ | codes.thischwa.cf.model.PagingRequestTest | 4 | 4 | 0 | 0 | +| ✅ | codes.thischwa.cf.model.RecordEntityTest | 6 | 6 | 0 | 0 | +| ✅ | codes.thischwa.cf.model.RecordTypeTest | 3 | 3 | 0 | 0 | +| ✅ | codes.thischwa.cf.model.ZoneEntityTest | 1 | 1 | 0 | 0 | + +## Coverage + +| Package | Line Coverage | Branch Coverage | +|---|---|---| +| codes.thischwa.cf.fluent | 100% (25/25) | 100% (4/4) | +| codes.thischwa.cf.model | 100% (93/93) | 90% (9/10) | +| codes.thischwa.cf | 89% (249/279) | 71% (51/72) | From d4fba87e13b56950a7e48ce7b066724d1c4911d5 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 28 Jun 2026 13:09:05 +0200 Subject: [PATCH 08/10] Migrate GitHub Actions workflows and custom actions to Gitea, replacing `.github` directory with `.gitea`. --- .../actions/publish-report/action.yml | 20 +++++----- .../actions/setup-java-maven/action.yml | 0 .../workflows/build-and-analyse.yml | 7 ++-- .woodpecker/maven.yml | 15 -------- docs/codeberg.png | Bin 19865 -> 0 bytes reports/index.md | 36 ------------------ 6 files changed, 13 insertions(+), 65 deletions(-) rename {.github => .gitea}/actions/publish-report/action.yml (97%) rename {.github => .gitea}/actions/setup-java-maven/action.yml (100%) rename {.github => .gitea}/workflows/build-and-analyse.yml (76%) delete mode 100644 .woodpecker/maven.yml delete mode 100644 docs/codeberg.png delete mode 100644 reports/index.md diff --git a/.github/actions/publish-report/action.yml b/.gitea/actions/publish-report/action.yml similarity index 97% rename from .github/actions/publish-report/action.yml rename to .gitea/actions/publish-report/action.yml index 5bf2fa0..8755751 100644 --- a/.github/actions/publish-report/action.yml +++ b/.gitea/actions/publish-report/action.yml @@ -25,12 +25,12 @@ runs: mkdir -p reports python3 - <<'EOF' import glob, xml.etree.ElementTree as ET - + # --- JUnit --- files = glob.glob("junit-short/*.xml") total_tests = total_failures = total_errors = total_skipped = 0 test_rows = [] - + for f in sorted(files): tree = ET.parse(f) r = tree.getroot() @@ -48,10 +48,10 @@ runs: total_errors += errors total_skipped += skipped test_rows.append(f"| {status} | {name} | {tests} | {passed} | {failures + errors} | {skipped} |") - + total_passed = total_tests - total_failures - total_errors - total_skipped overall = "✅ All tests passed" if (total_failures + total_errors) == 0 else "❌ Some tests failed" - + # --- JaCoCo --- def counter(el, type_): c = next((x for x in el.findall("counter") if x.get("type") == type_), None) @@ -60,10 +60,10 @@ runs: covered = int(c.get("covered", 0)) missed = int(c.get("missed", 0)) return covered, covered + missed - + cov_rows = [] jacoco_files = glob.glob("**/target/site/jacoco/jacoco.xml", recursive=True) - + for jf in sorted(jacoco_files): tree = ET.parse(jf) root = tree.getroot() @@ -74,7 +74,7 @@ runs: line_pct = f"{100 * line_cov / line_total:.0f}%" if line_total else "n/a" branch_pct = f"{100 * branch_cov / branch_total:.0f}%" if branch_total else "n/a" cov_rows.append(f"| {name} | {line_pct} ({line_cov}/{line_total}) | {branch_pct} ({branch_cov}/{branch_total}) |") - + # --- Markdown zusammenbauen --- md = ( "# Test Report\n\n" @@ -87,7 +87,7 @@ runs: "| Status | Suite | Tests | Passed | Failed | Skipped |\n" "|---|---|---|---|---|---|\n" ) + "\n".join(test_rows) + "\n\n" - + if cov_rows: md += ( "## Coverage\n\n" @@ -96,7 +96,7 @@ runs: ) + "\n".join(cov_rows) + "\n" else: md += "_No JaCoCo report found._\n" - + with open("reports/test.md", "w") as out: out.write(md) print(md) @@ -117,4 +117,4 @@ runs: git add reports/ git diff --cached --quiet && echo "No changes" && exit 0 git commit -m "ci: update test report [skip ci]" - git push origin ${{ github.ref_name }} \ No newline at end of file + git push origin ${{ github.ref_name }} diff --git a/.github/actions/setup-java-maven/action.yml b/.gitea/actions/setup-java-maven/action.yml similarity index 100% rename from .github/actions/setup-java-maven/action.yml rename to .gitea/actions/setup-java-maven/action.yml diff --git a/.github/workflows/build-and-analyse.yml b/.gitea/workflows/build-and-analyse.yml similarity index 76% rename from .github/workflows/build-and-analyse.yml rename to .gitea/workflows/build-and-analyse.yml index 61c3769..e259b21 100644 --- a/.github/workflows/build-and-analyse.yml +++ b/.gitea/workflows/build-and-analyse.yml @@ -17,19 +17,18 @@ jobs: build-and-analyse: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Setup Java and Maven - uses: ./.github/actions/setup-java-maven + uses: ./.gitea/actions/setup-java-maven - name: Build and test run: mvn -B verify - name: Publish Test Report - uses: ./.github/actions/publish-report/ + uses: ./.gitea/actions/publish-report if: ${{ always() }} with: token: ${{ secrets.GITHUB_TOKEN }} - report-name: Summary of JUnit Tests diff --git a/.woodpecker/maven.yml b/.woodpecker/maven.yml deleted file mode 100644 index da10043..0000000 --- a/.woodpecker/maven.yml +++ /dev/null @@ -1,15 +0,0 @@ - -when: - - event: push - branch: develop - -steps: -# - name: hello -# image: alpine -# commands: -# - echo "Hello World!" - - - name: maven verify - image: maven:3-amazoncorretto-17-alpine - commands: - - mvn -B verify \ No newline at end of file diff --git a/docs/codeberg.png b/docs/codeberg.png deleted file mode 100644 index a36522b3fa7caa8641e5d819b054af34374d3b10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 19865 zcmZ5|WmH^C(=|Z{_u%d%1RLDl-6245m!N~&;BLX)-CYyhCAho01`FTZ`^xjK@6YtC zS*PbzSMSrkYghFNS5}llMIuCkf`USokrr2lf`SG@zLx^vA)k-6E?7`dBUG>Sv={8Z(yI1PY`Pu0?@I^R)Kwe)wr+Mit({Xa?KP)R!m|UyN=#W9DH^t~w)^;!7&T6G2n+d8H4V(kHbVZ>7ym;E0OOEbJkw++9GlMIe6#1B ztz%c58b~D>RfwEMhEnse7(mXDku_;|J}@ zdR52rU&$iVFt^x1wZjUOYTJjPdmJ^aDd>?kKO@=cU`? z?-hzDcFcHTadAYm-D(6pD&ZB+|2hV8d-8IC?Pj-rVM$5k+S(fXU>zmL06;+{)hfYb z3XO!<(ljLc|2QK+n-WU3!FD-~=O>Qui8+c;FaQ^48P3mmnwJ7lLZS z<4zj+fBRuTuQuCZJ0DKsCav0to1wqGw|V9}hD}Eia-6_8bEq9oW~Gf^!43S!i``UE zs_b45XU4a}_iC3LU1Ysv9HMH4>@b(|!`$P0FKxSs|LgH6{|_H3uCSAxbC9zLqo?DZ zFY%vUGrG~S{A)Tcc;Vy!uO-41EM}uP&iPkdKF@c@aH48~zZ9M%;kL%UbVOC8LAySK z*#3JSAq^C)^4s02Lr-w8e?Cia7UPfH(c+6Fb#{?=SYCDk&%1AP{|&K!8vr#lHmy9% z>D(*k1g%j1@*RR)|+1Hr^v2v@IR<1f!t_!X5R7WNT$wmNQBkv_Cs{<5%pj}A0D6l1X7Vi!CZa5 zPu5MoS^?6|P6)2VeuJ!p3B4fg|Cok>2Vlwj4octh(Mj-79$(I6Hh175|6zd}hD{fV z8^*(5->|;2@TCNk2qSYc`coa=5J6NY-hcHL&ZO)GOK$huQBENbkDXCsImdOfi8Pk) z%ZAGlX<(%QtLeWK<zEMar0gx*Ma{qukxR(NW2QYGI`88ia;^+)%N7E{;@d|wy6q1T`JB)(wRX<39$Lw z??d`%uVt?a3G)pVyPWzWxv+Vqvhy0CcA!IMcZ0CYyNkYMa*xo0qWY&%x)yB+Q2OGF957@4rp!VcnH{CHncNZpq(rA>uRNDGwl*uKpt2!ItQ zKSo5|KpOh8`Dw6vcphk!FcYWcj2xWj*<3?QNT&nM`p?xPf3gla*rCJ2glDk`)zzc) zv*pCiYqa%~#8boQw9OPqPPL|`QHN1GxkkSEVi5j$Z@v^@WTQ{Rm#LYsNy05+pwO8| zipeT`tuEMsLIiSF7-$y$V8$_xGPM^|yfP)_`!1_qQnv=+H@+wV0CrjPNt{OMGBwpS z^hjir9F#eD1QOg95&R|r{p`>(GL~_BFFk5({gny`J5Os8b{AP?E>8oeCpPFK;w_M! zf=u%g`*LD~fpd?TN2~#WzKpou!eT;P}tHLC%smRRkY0n1Tm&h~Gp_$5aMXk0U z=9eICerD<$kIxF^*#$)E^ZfOn$>=Z6x90iAo3GR${(f@xj33ZT5$6Iv zxDD_<*Ouo@;tCH{<3ahfpOW zl6{2wPQ$*ieop`)c9leO&0U7+x*ylIETPO%&BUW^e)68NBy5w^R_(07Zttxvk#x>Y z!}qGb^RZ-bC&E1W^Py`JKkuVYN7}IbA3Oj?RFA%a)QkPeL9^`(udFx1h<4A5qj={9 zg=mNkiL<}R*ukVqhUm+krJhEovvWc15R{^pcPsB5kK><8EwxqWej>=8vcnIuZ(9`ckG9;)bPsP?YeYotFQ|C|MK2)rS&~O7s7>V~Tx_!s zbBOOB2+lQYb05IAF;|nca~7rrnQY_RStny(<(r-f(LQ{{q2rZ)fS2)Ke|_>)Z4ktH z81JoMxefRYHvc{-GGp^+key#9b(I1MPp8b-Pr(4OfrX;^{Au6w!w0d30AX>}MK?Li z%E3>D#d`$VOtz2YM)x30O>T?B&L+{^tnirIQM#2-K(Y7>cKFg^@2>kN>3 zn;Uh_;IxC>W@Dx);@R2T{n%&n2X*p#L;{|(-)+B0YTBR1G5)mzdt#M@PdUz|2p9bmadF$*hK|?f|2&12?TW@42g$l3#-F@mL$nzlU$6vv; z9=%QpE_tDs&jSxhk`}Heh;gXE*mzm zIdvBlzt9s9(W_C8suXPOENb6Eh~TLr z*gi~R39*@;ndqdWEed1^nQg}~;a^zkO?%N#j+2VlZ{@$a^g{8k?crhV zg<9HMbLK*@i)5+O!SD`$K))By$@aF7q?}&2ZDj^2nD`4a;-&c?-kOaKqO2a9o8?#F zzxzFhlI-BWg(Pk@R~mJX{ar99 zREC*yG)GfvqX7=TJjZl?jYr9*2Nk-kN{@~_qfFdBRcc`)@!?KIx81GZDc|ET&L1c* zMf}6RUq#5b0jP{P!sc;Gy&nZ&|wzUkG(RN9F`^?=^rZ~w>SC(qMZRH~Tp*Y-n{Z4L}94D8gj zwe_Xqa?OBZqS39Iw?8i0C#*;l0;ZVhk(0?|QvU=h?9hl3mcCyb486JCOSI!Pmh4iP z+5umM+psL%2&QmJW~hOOJzb1AqO3wFeOYM;gLas$F-GRG=%T7EsGHw1(BV%uYy$WNr<<{If>$!D59>3xC?>^z2w?%A46nW7}8_gW?6n zo-Oj*OZ>@~u}tr7{|u|)H=5-U?qqp}0&T}02}>5eP2|(FCN?xMH0ONASB}KyDNz{{ z={T1m5aC6C28e#5u;VhUm`b5){Glof^gF+MHUp4!_vs7qXMH>UG5z{B+P<@)7~f|$ zJ@_=1`a7NdAd^Vlkit)f%S6VlgyJ~Qnfx@sIgswM55jq!0MxK~PsyZE^lx7=MJ&Y7 z&^AU9p_O$d1cxM0cWa#8frt~qNs;-HTO%NPe*u1+b`0Xt{h@VSK?K-9dv>mU#INtp z^!??h#rRX(k?JA72p%>r4OGAbHs`onO^$h|qDcp3135}gTD(3R(~@jHce(B(z8e>- zc0JKsElPGJ?6PpvgE;Iv^Qd!t@`y0kqddW^R1xSM&mb;Dng{wO3lqo;zhi`Xi8ffi zh)}ZY82@bk)d|DthjBF9n4mdZl|t~sj(o3DAY_=vc|VJjawZj1oi(PHXKlRFWbm7n z^eLEA?g3af!XeMnR|UBkdn@=?(*${@)L zI3jK|abdS^0P_i?-sb0vAB=@BofuV14LMLPgMSBlNFzx)IdZdC5OmN0$;kkI!Ey;9 z&rU->D?~NSwy{zU6CNvSMCPs%g}5-4u&-yk99l1g&X$)#D^f!L5e=xIzsp%}K@Vmm zUfU%pRlNhqUxDQg4Xv1)k+gXMTg25W>$%&v)?79-9HqA#vV=f6cBK|N?JMbyIHxMs zpAWR<8yJphG z736rWFqi$)(jE~t1~=R`_15H9a5OnNs5&o`lu%w0*9<&6J|X<}PJ4rbAFwAzZjTtP z!o%^Ts8_4?Ik5vH30FLEdP@X!FJ%+a1QhNeze8oq(BVdh_Qu%xUG*3iZTz=clmQw< zsvK>i4zgfv$>((TVV`z&i_0*B!wYUWv9w5*@|bjFj&25 z=@@>6g>u^Si(E0ZM?@PP+DlSTth^I2mDUmJC1S~fmJsw^fe_cxw;1a>AO!0>^*3fv zqn-8#5tlPkb7kCxLv-{d)f?#V1wpyq1su!z@^h8cH?&C15i37*j;RU+C4@uaf%`Q4&RL&Oigo4F0ps%o*n zv@7WS4!DrmnTlua3p6MEN^yTaNmK!9r_4_Tqd87PoP$~L`3a6Dt1{|Vko@}G7F()i zO^Z<8ItsOApLq|IYm%{8r16JSXVMFQ%rE3f?&cdEG`f2HC^|C0B=q?^J@;YxIqSgQ z{>Kxu?8%!mxX{2k62?aWfJg}({wG}iONHSM*_k!p$$6gaLIyql_6@VMP)#Q!d=s$_ zyoiY9%=_@=2oKyX!UnJOGo>p-cl0o$i`#98J;X0+m2f`nz9%EmEuM_ce>5%L^0Uce zV)-?KMET&s`9ws=c1)-&i%ElA3m85>)>GB3kVD*hbo0BRD?J1di#7q%I)AT);COODNnmBWq*he;Z6)K#S_-*_-IGub}M_cL|vrhvJ# z_&GkmzfdvwH{)FJ%4l5w^JHb#fG2{EU8qOy8X*&7r7iUS1Ha-5qoh)d1}>JUq?p2b z{lrk8FC_G^J@vCu>KMomxBL^c9pf ztt+aDKbz?XJB7#p%@!hdV4%S6L`-+en?mA{l8#+?7}0DAYS?F&!i&B|=SQP&u+Vja zhX4-&G%M=`%d@582c3U(h7|`4OoBdNXXyqwJ0v$Uep)m&T%0fo6Qq6eOlO{^B6mXW> zFbhT)vS<)^q=eQ!B_b37Mzc+a{P^~%;xs&CMdP;{zEV0#O&p#z`p7C>!dspU&9&zv zye`&fA}Wkn0C@>ubgDhLLNjux={l1jKwO0U3t&QTZeiX z`V8&O1#5!5m1{WvE6>cr$f*o5>`iPY2JQ%U(ACzUY*;D#lO=*3=6Gf zX|5vksgvC;`cEKC*_!;bsy$*SJADAh%JwcD2Q%uODAov}#-|DotGGX-gMfY*Xv;4V z{YK7|x9f#Px0y0>bfgP?&Ze+fBmu(Mgw%Y3_kC_32Ij@dv8QBD845W=b6^|(m4-2heIa@Z@^ipz) zb;2*M>M!&baid3l=KN9>byr}CO`Hg-l>!(eiqPS z!v_&b`=hRqLCl)Q6fQ+HyWXe&Y^!dE_T1^=8zo#%iJ>hDb6q2a68(m?4J#lX{X+W5 zdJWHBfG{ub{iy$7v!UKDcy0%gNWIOs_nG9{WfWBXufEw22OU5Iyqcs|r900)R~z9| zn_AFEr4$RSrC8N+3^cuE@AuO>i;hH=HBX>d^Lr@{VavGT{I}~r{0Rp-fEp-Ny<8KV zQ7JK7w18V0&8wouPyL~#s2I#9`Kv1Z_*985S<~fZzJqCum}+=6xBj#*I~q2jVEKR5 zO=b)Lb)HAUXyeeAse5CeZZa5|-W*lR$_Ujjfaqnl26L@|R-b;$F`ySS-Q9QM;thjJBGGbSffnOyk=IA!Io3OYgPq8XjHt6zNnJgbU#Z zY>{K&i#i9cVWxCvD2`@czxj8E5-tktitO@&ER?5BY1t&5*v+lbIO@j%lkDvT()=}zQalt=rO|42wTapEU)2|U zz-!zN?+KWX231Ob*Tlch2Xa_Jf5*I~{udHqYOv5^mIejli%JIr4)c&AXse zXB-3&vzm#3uMU8161JFuXJ5e*G>X3nx8?ARMz%mxC9>>uk~_3aS?>Vr!M-o^UPSeZ-x&ya*-FenU zCj{?~2%|w9jmf2Eknml)Q$*Z*quE>OFse8UR6Fcu{^)W=&5O^Ey$R8L;itxtWF%ay zwOJVer~s5O6hO4Syk)}Cj?z}qv!Z2;3jcltx>jT*zo+$3IENxr1?|L4zb04)DVUu*|5VJ8SFP>e1}OYgZ#)d2}-s+ej-ulol)Z1(h(dGb~J*R z5S`0rwIK~n+;0irak^V~HIQ*hL2W{!#0P8u$KUfC-nGk7ME_!+vrg-9SxeJu{fB9g zW56|qw^XmYD7%SRb}K{3Cl5Q*s zCrlE;mMdt)&s&d`&nt2imwepWQ@)w7aAqHvYnnlh1%>xjaLwVhOZS6zU^#hTpX3768t&YZ6WI+@SR^HF_IyW5?QL0EB z2Ru_)Z#v*~P5_$1wB3@OLVq%=G&EXhp8+NCXw_=2AY9xus*O|62`xNy&_2#n?*5ja zypS#Pm!b$ulF8=Xa=S2xoP_U8qnDnP1}!;Y$%_Yp7U*QjmKWa_-h#vl-Ho08mx}A- zCo&YuuT!dzX8}o>$0Zb@@J4hdF;Vf2_^VXlzjgo>1>H6|Z*IP^DVn7iADu+mor(#$Ex8JU8V++mO z#DrF*pgyR7ym$;zl><(Ka#!^67N&2^`K@!$L21JUBb2F?gIXS}|5FPv9IyhStLJB&{!&G94YKKsj&F=+(lp!> zXGJKNpKtz}Vq2v*F(~n724h`NaB% zsUhwRX-b_(?M(L>LXU5UuTKNoCNXt0by(o zdtN-BjlAWa<4#pzwErde;09e2K^3Z6Kg&rM>uLZCy+}K2hnTT(IkXmAItn_T)xP5k zpP@I8kXR);dAO}Ihs3ydu0rJ&zX`GWuQhQ6)htaQN4chEr=J{^6k|`^mXs37@Kw+r z{`tV^Y(L52;uUHNh%^;3dTkj3tx#+ST-$%3h45mQ?-_k32oo)0|BWm2*AYz}g87R4&UzC?LuM(t{< zE4h_CIt?D->u1-R$0g^morL5$sX~dc33)O>72p1a*q;a4x*Brs?7-Ejs_OlTB<9@< z1wP#pAENs!aLJ&&ZrH9gCV@|n_bA(6Bdg-nPF`-BTaB?~tVl9GKHX^v{)-lBk}Dh; zKc@@P^NJF%k_%J?*aXpka6G=(KjMX5ezb^?SnWE;KX>_#T2T~cc=1RVYChe{ z)I9s=z?DJ=ubt(nlax6m?qfMpd- z1bm4Wx*=L!UCS1z&IW!de+OgHg;Af2={Wtvg$NtS{Lo=yu{-CF!498J4`VsCT0ZBd zYm!p97c?bJhm1byVFz^AG?%Qx%+*iy!N-%8DB2Ck`ja7ONT+G~^yw42e})Eg1xFT& zr@IM+J{InU4CBj844(0`rZeU=Q>`vp*ci5C;tS=PjavjT-;habXh@Q7a`W8Xi8|Ee z5`~QcPb|O)rx2Pj+x}U5(Zg!Lsrp8s)Rte9%WqAYqM65a-8XuC>-`+1O|F!Y$Wdj& zSfJ*W9N3!8@|d%DC^JQN+DFLCRb7Y(GFZ;9|CE0QmnZVa6~8IES9f|#b?}R&vdGo| zMzU{RCE9?iK%{4t2%oIPGST8)6Vs>2YVc#Qc+~n{d4PDdj``&^{56cAWJYSYQq(-(MyC$#Bz&KN1t)3I3~yFxbrUYEVxjkOXt%Wp&~j*KMY-{Z+zFV-rA{JL&QqC7WWHrPnb#JH2-O$FTN< z>+l3>a!({Vo0$2zI_VU*V7DPC9!8P3>=%dgL&hiDniQR&74hUF2&00JUX`u(^~<0` zJNc^j8r==LHqICk3&Og<&|#otALJ(_pfve0fAs;=3qXPvTm zMz1sit}Tf$yBLzql2IUV_YgIWYTbfgI9*de7dhPzLP9TmIpQCF&`;pelD-(~lK4T) zqk*)5*sIm!B}N==12fnv^cD;&sIf7eg+&PBn(i5|xb=SungcQM)dr3V7``x!%?I(U zaez;u!1(C)xQR4C?t`coy~y>ap#gmpP8qMBapwT3%jgT#A^`qey~@wyqGz6b!XqYx zz>wPyBglMmAko{iLK5S!g1&$ZYR(zA55mrUS#99(Ox%N$H;xbNkIylr?_##}&##xqqUed;9%x8S`LQ%^?I`X#dVc&_*$s^as&RqHhy_MAW?vy{83(oEH#eB-mArL8wp`Q3RHi}$EZ62)-%wCu1IusChc%5P5DFopV%5f{ znBYA0kF7AxePT_|{ygs-4{^JVXKrr8_s>&>hqNbJzH2q!@rYyx5 zO*)O=@tUN<1V+4{o}crXyBG#%P16sc;qc|A8N!drp3I>c5e#a)+=t$GV zq_GLxr*daVcZjKXo@s%=n;co7N1Kd&D$0YT_bKCV{Cq)>tYz&-I%e3bQIzcC91MEG zzQ8C6Hi(@E!6~1=A>W?D4PEf1T!G=aI9u&ZtlZVC4xPmVA+{mkHToARq)q=* zx$fa_WVv|B6gqLq3^mM(Wv{E!)OJd-aY-2s6clLH#Nk`a)7yO21!R0jH8P=G2^5TY zBIsvabiWo2``!F1jAl>(FeMJzRD&l7;q#~)U5!e`Yl0oYtVO@1nFH2A`0nO+5mz|@ zVtz{@iV2*~5x%Z#h%@FRxG@OSm5nd9%ag7+-)ymuFbLx$lUQ3y zh{YP*0HPV#mfaA&>m1-_`Gm=GjozSOal}Qp;9-)7)sP zKu;8g0T6av24bq4${n+|p}Bd!zlTKgE&^sN#x@&JtpdIt`lADN3%eq%m;1+Qqo&i` ziodW4KR4smjRYe(jEq{8TZTFx8G)4(GpHp?Or%VDB$DL9Z|n+quKx)tzrRPVd0!i< zVj1-CJ^u>Do0%{MuIHNA;q^4gGPrzmIUV$@KDc(=?eIKWVQ+VqO2=C}pubO2d2?|J z8WiK4eMIKPCkHaZLqDLky_$_$UX%NQ0omBhi6nU{S$u$9A^}3#3MMh)i|cE>q8cfF z|G^C_h3a(-LVkR*Le*;ozQuZltpRTOTelsvz){XgJ8CtGxKu8}e#)OZgTmg1+1Yt} z>*8rn+*yQln|N7Q4?H!JM|_A=NW)Cx&&u|8W=ogZkv20*6UH9w+G<*=n_3F$2;T?l z&I&)Uki`+svvhTb6p{nKjrPg(QKV}IrG6eBCtHQ92x`vYpo%p&nUQNu5r=o4jcuW& z(u(>TS62At)KsC~;ZZS$#44w_=8GCHb@$!WSKKJaq7&4)3)J68fTQItrmqWU8=V?N z{yV5HuZFs^iO}QNT+Vx~r9aA6FbR)rhug0)^F^wY%Qa)mhfp^}Kjn#)fZ@?)<5UT5 zN)55`k(WwCzMpm9mc!0|L9uW}-7VUZw3huuB--Z=_@kY6@`$-OSS!SZ_yP^}H6CDx z5`G#Od^M`w^i}1p+nA(YW@?awPhnaSNtE4sg!G!&^5tyO}gaUq$-&*v=Txyu`L4!YC7Jwzu%U&{y_*p*w?aRDY1btcS=k`jr?s|GIepVAuMEQb8kheB&#DqECkdQf3e_9iF$zPYaZvwZukBlb5IcUz4H z$fh0SNKqJd#mp~uRS32bfxeVULD&4$<;{D~ZDMehU50c|1D6-z)k;URA~B}S6VypS zz~$9=fDyf`YLJ&I#vkNai|drcg7|abZ>6y59S^(ztauB-Gp1<~E-ui!KZfxirvx0eUt9U97_-_`o>;BEeG16dtpn0=`Owjn%xEW` z^sSVYi1p+d0IBtP3;jb+XCXyd&9-Yvd?*HGNx~=QlZy7O+oVV3i{W^SVG*89xD3i! z>{m#K9&ug1Sz**6w;;+g+>t6abJwnsGmAAzn)r_%LRX@L5!1ufaM{Gk{Z3rWJkOcJ z#u``^iGkBlnJ%LYNoV{jn_kiJd)7Qw5Y zkelSB@AZR{9>0FRzEf^V5CK|9D*Fal<1>H%2E_#p!P)(E_YuSj9i~MyU1*^Jhh~?2MnuWjYmZ7Ye*u5D;yz9?1yhTJh1>G2?Y;3XU7ku89ccb@5~2cl z?BWY0kPWr^tomy|Jf?NIX!V0>Ew0P^l5U}&g@iCr)I?>Gq->6F?Ym>;Yv0g7TBY3l>UMAm7ERmXyI1mE_n?zjnccjf!K_ig z6l>a1`1EH>^Cit!lnD&$mmXm5pjbRg#GZhpSOg|zj~AU{J40q^g<}+(oV_RB{Bk@D zFh1il$Ish@G)BD4SQzUDDdk+4EhA0O-Wr`caaltXVf(G;G?(>DLm;RO>iwJ!*KIg?s zZAtI>jxx)AlY$|yzYRLCjRsX+eUH?4Zk!`OU(Ei*yh>8&>f9Q44>2?^KiuO&_n4t* z1PiTeX(QGP9@e&A>^8A=Sgn4YsZ97&nbP&Sd;Eh&d2pqZO1EK?7C)~+H@|_o;>^-P z%F8NX?cGIfqU`D<`b}z9&g0wK$0C|^8Y0icggbB5B((Z}ipfBaO3@JtDn+VDe4dc9 zA@63z%F!RlD#o@1$>s#FY12!&cl}^H<29uFkJm*q+>of2?@K9#Gbxrm(a}sUYM{L3 z2va<3V2jh3J!@tXIBSXNyds=ShHyj4d51Cuvp?b>UHw+2^Jcmf#23Y7tKkrkVkD5v zqX+SJ%Y|k3qx2AGj)}&27ZOk2GHquzqj`2m1ZBf0w}JiXK+_IQp2|JY3wPEGQjf0@ zP4}~Q2nV+Bu5bN!IQ4N2N(gmViXri`NuG;WR$0qBfdO70*)LDi&&}aUHqHr4Giw}a z#=m6SB2accH)w-@XGkB$d9ivd!%W#2vSrhjnPDB(2y_}sz!(+z!42H(7LKE zP35T(orfu7`=PZ8A3a^V*YW{IeISo_vWhh?Uij+Ykn&Im$WXt8=kzq35#D6m-Opy+ zj+kCQInKQfFG9sh>S0P5Tz5y|c0PfZ2uXHknOa=*xRujnch|S#Ys-INM=4&Z0Caff zo$t7GL7ti#K=h~r_Ae)l)Sxm?%TBEMz9mS_(aBm?wpz;zT<~;h^GK~{YdMx%%M#DB zkR@2MN%wcf-q(4rc&*(KK8pg$XvPPX@OUbzk6u47*E?DgZ_lmCTA47h!C%|6B&-kZ zTO9Iz(9jiVJ*>!MaGel(%A zwZ$K8G?!;kaQL7lOJ)xeb)V>UXi+*qI5?e#V%%Vj4n^~ZF{m^e6qjVu>x^;K5mJ!+fDe-CncBj4rJwcp0QO+SGK89&#TO@M5EBr@M#T@~59xM$l;E5EPJ5|Fwh4Q0qh(?# zLG6+rcY?>-d8bY6=8O%!7z{C#oYPzrO$CV0LNvIPaqoo~i|z{lk>`rf~R3 z%f?b;gD|P`D2t}56Zd{O$N=BQ{=B&~*w3Go7t#Qso)nBv$h2ARE2J&pJ=l+C$K41& z98JI07u2GPR)$A$M&^q=lJHm3ATkH;EvUpD;&=L6LP@V0q7-k3{8Igv?lV|D2He zLRv3NK4Y*@dFPN>%I?MLx6Bi|I;kWYBp7DtM{YxJDQpx(`twgFi!obeL> zBB_%Dndbt=-DsgBkJBX)>?`7w3s30Yq$!L9Z^QJ_P;-ENmV_5C$;755Yo*XHaE zvNDY<4fFkyi)k}yMKZTk1G`Bu{(x97On}WflYwXo&x>oj0Pr9GTnx=hKu#T#S-*OIoQu9W^#QUZyx2W%=re6;|o0cHlAg)y*(B;DK+xdV6c-#Dz1(y6P;VZ zdA?^uV|vX=ADRcynbh`_TL_WD=IDMnB*WjCTeN_1=Qmj`NSjKkA01+GYC(p$&zAT7 zbd#)|IHfDC`|RHAEVS;yRgbEpdNWe}iK=MvT6WG@i#8kIj&X8(LFB3&~+P zGqnxMomz|}COFqddg7MjG!MW0ah_iuJDa}dR*7w?F_pXuUq;RzcGw43ZB38)*IOh8 zDu9J>qxh=5Q~b}|!#5KPgXJNd{q#1&g3>sjYV&7Aq$$%C2kdEBP2Z*>Wk zpZEbXhH;sD!T|w~h1_OU8}=F#iioNj8FADEo1{=tF!YIAL$1B1`w}H*yh@h67rVoc1gW5%u ze4_)}+zLj1td&s25dW=?G9-GFA7u{jbP)%81|I*W=oaW(?$GJy(eVVH}~i)Rra5;kRTTuUQOR4tIF)|r8VK6hIgKk(a z+B4}S>v4au+(XmZ??RX|3|%&32V!IfSUi<``>v%EgSKv*%yxBsbmDC&O(QCPX-~f{ zm1B6A9o9Jehb!{5P19@tbXf}Kz3Kq+(k00GDkrxw_^vlKY;kSI79xV_EAl1k8a_G>LsU!=MW*7)dxs(|%RTBw zF(x>nRU-z0xxch~!ge$48sqG#NVkT}hZJ<%ok`jV8venguWCxhEsOpN9Szk=!S;N8 z&JSEdV{E?QG-mK%tPlJb5N62C1AL9O9TMvNB`Z z3q{axx+yv`@(Tov8?9nk6+Tr^mx|rp6i+QM9EuSP4Y|YZ!P`I`uzWovXRBcNU|3wQ z5+V*CFuk=RGE9898BTF|%0CO}a^0RO8VhzN07~bS;{+)s&u=?`Hq%_a>2$1&$NdNO*fa?t? z5{F42N!vKj$jFBx_(dM-u`0#^;qF|8pjzqAsIWGsJqOJ)<%2vt6CGg>?WX*|RG6D5 z`zNO$C#=fF+t|G#M9RDXF2^%{rle|I5_XOHEsh25?5q??*BApjIHJYMmB3#N23Nji zAgO=g!8`J}DwFp}kaR^V7mGqZ1kxz$B`3W#|E141JcG~AF6S+&LCa`pz|1USY1`>y zr`sQgb`ZjdK)*NmD>IJ3#{hC59uPc2TRDnFm^J4w{JdW#vSbHIgu(HXY8H!HZk>x+ z(xt;=3I1R_bDZGjh;#k+1v|l+SF-Re4(5Jbo540smAdCY)4SbJ^3~ ziY1Q<$)IY{xO^j}TPZvkJxG=@Ypc^#B`%{j$Vowh)bf+Zfv`2>Gu;E5Jjkd^yM?O^ zDUBdAJI#eGF7o3~S@q8t?=oWar!SCGk37YsYI}*V4SGHS-D>flEy1+uh4B422}m`6 zGbJ=YH_XcNmg?1R8_oF8xAn-Y(lqx@){{12~GQ54@ABsL2dp(_^!JtV4d|pbF5d-u~YJ^JQ z3Sq#gCyaz~LflLJDvD04yQdoBUAE)j2L1o4IPZA2)<2FLsTrd}hdpYK+CdkwM}kn) zC{iM#sZk~FtreS4bfHRVRhn9@8a0a6u60pjuOc;SlXBG!)!+Tyzs`T>d7ke%-*aB) zJfHV_Md|Z4_K(iA`S6uV>h7%9LwJBPBMBTE$*_R~HZ9hQisj*J)J+Znwo8Ej=ckwRVBjcS?# z+9{Lsf+13S260-7iH}6;mY-`@H@1pvme1R`vkNa18gWU9?SYDfNCvN#z{$dEL&HDr zfYiY;W0U*V(iySHan6CZNP}6Ed!?A$#s&aa$tv?GIbJ;mMsLfju^R-aRg|(XLn>q6 zm!@uQpUj%P#o1OYQ=q5KkY%si3-@OiuMU#ZsPO?fJDp708SMd$XA-qIzjs@`? zCqDh-(nvnqZ`Ve73;Wy|{ag^=TtW7p8R!Asq%y&X%gm*kB4Atc`OHib?Z&%yZks?z0i81;I4$(JiU8|8xiiniaj z3x#+G)mOjw6X@btY;JD~GzKv?q^han6U%ade7goR^QU(5y%N6D&UwA*T>PBZb`BC) zcV$?CXo`e@u44DEP^?8&Q4yT-q7gF?k2%K$bTZzp`EGQI-+=q=9AoJ-89#wQu)?VSGZe6s zy~e!-*BI#lVq%Nz;zWeC&~gyzH|byNoIzyObATPvlfxXAGMDaYp5}V;>0J^?v?9zp z_Z#M#`OPm%F-C$vgW1J@T-P3qcrtoUasybwQ3N_SGwtXiUs>cT{k4f;ERIhDLpV-@ ziDU;c*v6=iC~F+sW^j_H-Qr+n$g;I?LC!cEMqpCFlx}YJhwp8!Hk^Ep`a93GoZ`|2`}PH*&#&q7m+B#152k5(`Pdig z*6k%4kyl3Dr=Lyh08E-~aQ{l@3eeROn3o_?g4b6@M~%EHxS%&6AgDjR&&_qw_%;Uu z8zd+HgB{t}L|+51=*&k%Lb`zZ7Np}iZ7LJ(7XbMIT>KrnYEF&C!CdciT8|#<5RJf& z2Ny~AlgZd9=UIMwc{XiiyK*{n&$YQ%)SNkun2!WqYl==+^3AABfoMW14qk3@$4ZV1 zr{pc68sKrB_Odgy%8*t1akG3%!%txq3tEYfoyWomP9H#4W~GyuP^+_2`&o^r<)9OY z2lcw{n#0YJ62nZ4la%!S7k<2VCXz^l(q<@QNu4c%AGg~}%RCyn*!*Loi%S9xv9Cyw zN@8D%c*%*t_QEQ>Q17X|S?Q~~9Wz{>~}*91-*f!Qs$ zDV6rBgaH;q;JUjuk`RCISfwHi;|vRICaTfC%g{z!ybV$CgzD@_IU2Dj)AvN-a=~9g z)@=4BC?X##wZNGU-4xy7_JgrNlhWVu>uE;X(m;vc4jrFopXo7@ zPJGN&s*FjQoS#cs_+PU|oJ$ny5k+cUF+)wy@A|7*q5kT~ABQRHG0>}t%wm(%wFWxx zI(0?`BB^xQA>pk+$B_cxws7UdA{pw4ZdA8E(HW%usI#NY;CIg?6TJzbqUos2BR%&>K5?T4*W-E;Y@%xFxJdoUr4e^SLK)b zM30BoS~_Q@#)R=tNzg(Nj7agQ*v*Qgyy^;PPLx6T)?8xRT~&iv=Pl&1qM0qTaoH~$6ckaLKQnc;oJu$FGy>%T?hDhiBJ*Q7d|yLmdvY(s`OATwf=5MXVB z9}4|&S!8z?)*}b%O%)qj{R@VQOU)I*JmiIvT7O z8Gi-JX$|Tb0lk5zVy``6j}3CzXcAeUcC#9X3V!P*^T2yj!!JW~Y@la-uiKyS^}HWH zeKGZ3%LLBN42APo$0{6`jCz=4qLolha+!I0+^2^VF`|k(n0tpN-ye10Q6q$j0n&Oj zaEXEcs%FB4MO^ezgvEOVqWN2o?krJp@ohRy9lE&rkJO8KJVJy1B-MU|SR%b?X8ta# zUC&%!X;=21eB*K-7rAm@?lSRnFTZMkc)o6j5~j2uR7! z7Rs<|OBMf9d%GCm&N6?$`en_}HuuL)61=J?&KjOo{O^-f3-{_I=|gZeWw~Mka>in~ zBWJw!PuqTfe4D9CbjaAt(2R@>nWF0NRWBIur@Q~JM!GKT52QuG;6aTy-c%`3pQ)JY zrx=bE3!?R_yk_$Y{$%0datvS1!~cvWebUI>{PgEX^0MXIAW2x}NL}cGdk)NsJ772L zBW#DSVqx@sDT-9$3dc1k9Jlu`;-dsJqONqPRs!Yv^u=)B`hzAEcrxRpm_dL33tp@z zanYggAi-4OeWWqer%SRs@^`t7v;f-3xvrpkR9;hb8=wy2GwARZ%b z0~nj_l@rr{um1u;4yPGuK=Z{+Smh3{knOMRN!bQTttci9~sW+^EtmS!H!8kIch4fBs88HBi_ zvZMR1=xVB2IAA|xhYUFGH=>T84o5dOr!2st zQ*U;tc!9azW+r;8=L}e(_f^m%cG4I@ivM-gs>biNQ(v}@Oxm<*8ZCO9XUQF;!t3!p zXV~F5h$R><&K(QA&08QCZ1XsTILy|V{huKi!h<(= Date: Sun, 28 Jun 2026 18:20:39 +0200 Subject: [PATCH 09/10] Generate Javadocs for `BatchResponse` and `RecordType` classes in the `codes.thischwa.cf.model` package. --- docs/apidocs/allclasses-index.html | 185 ++++ docs/apidocs/allpackages-index.html | 79 ++ .../codes/thischwa/cf/CfDnsClient.html | 649 +++++++++++++ .../codes/thischwa/cf/CfDnsClientBuilder.html | 312 ++++++ docs/apidocs/codes/thischwa/cf/CfRequest.html | 324 +++++++ .../thischwa/cf/CloudflareApiException.html | 183 ++++ .../cf/CloudflareNotFoundException.html | 166 ++++ .../thischwa/cf/class-use/CfDnsClient.html | 120 +++ .../cf/class-use/CfDnsClientBuilder.html | 108 +++ .../thischwa/cf/class-use/CfRequest.html | 97 ++ .../cf/class-use/CloudflareApiException.html | 283 ++++++ .../CloudflareNotFoundException.html | 62 ++ .../thischwa/cf/fluent/RecordOperations.html | 212 +++++ .../cf/fluent/RecordOperationsImpl.html | 275 ++++++ .../thischwa/cf/fluent/ZoneOperations.html | 194 ++++ .../cf/fluent/ZoneOperationsImpl.html | 247 +++++ .../cf/fluent/class-use/RecordOperations.html | 115 +++ .../class-use/RecordOperationsImpl.html | 62 ++ .../cf/fluent/class-use/ZoneOperations.html | 111 +++ .../fluent/class-use/ZoneOperationsImpl.html | 62 ++ .../thischwa/cf/fluent/package-summary.html | 153 +++ .../thischwa/cf/fluent/package-tree.html | 84 ++ .../codes/thischwa/cf/fluent/package-use.html | 109 +++ .../thischwa/cf/model/AbstractEntity.html | 246 +++++ .../cf/model/AbstractMultipleResponse.html | 246 +++++ .../thischwa/cf/model/AbstractResponse.html | 239 +++++ .../cf/model/AbstractSingleResponse.html | 247 +++++ .../codes/thischwa/cf/model/BatchEntry.html | 322 +++++++ .../thischwa/cf/model/BatchResponse.html | 119 +++ .../thischwa/cf/model/PagingRequest.html | 299 ++++++ .../codes/thischwa/cf/model/RecordEntity.html | 544 +++++++++++ .../cf/model/RecordMultipleResponse.html | 151 +++ .../cf/model/RecordSingleResponse.html | 152 +++ .../codes/thischwa/cf/model/RecordType.html | 561 +++++++++++ .../thischwa/cf/model/ResponseEntity.html | 144 +++ .../cf/model/ResponseResultInfo.Error.html | 272 ++++++ .../thischwa/cf/model/ResponseResultInfo.html | 283 ++++++ .../codes/thischwa/cf/model/ResultInfo.html | 340 +++++++ .../codes/thischwa/cf/model/ZoneEntity.html | 419 ++++++++ .../cf/model/ZoneMultipleResponse.html | 149 +++ .../cf/model/class-use/AbstractEntity.html | 101 ++ .../class-use/AbstractMultipleResponse.html | 97 ++ .../cf/model/class-use/AbstractResponse.html | 119 +++ .../class-use/AbstractSingleResponse.html | 97 ++ .../cf/model/class-use/BatchEntry.html | 95 ++ .../cf/model/class-use/BatchResponse.html | 62 ++ .../cf/model/class-use/PagingRequest.html | 124 +++ .../cf/model/class-use/RecordEntity.html | 332 +++++++ .../class-use/RecordMultipleResponse.html | 62 ++ .../model/class-use/RecordSingleResponse.html | 62 ++ .../cf/model/class-use/RecordType.html | 231 +++++ .../cf/model/class-use/ResponseEntity.html | 123 +++ .../class-use/ResponseResultInfo.Error.html | 98 ++ .../model/class-use/ResponseResultInfo.html | 98 ++ .../cf/model/class-use/ResultInfo.html | 98 ++ .../cf/model/class-use/ZoneEntity.html | 230 +++++ .../model/class-use/ZoneMultipleResponse.html | 62 ++ .../thischwa/cf/model/package-summary.html | 183 ++++ .../codes/thischwa/cf/model/package-tree.html | 126 +++ .../codes/thischwa/cf/model/package-use.html | 188 ++++ .../codes/thischwa/cf/package-summary.html | 133 +++ .../codes/thischwa/cf/package-tree.html | 104 ++ .../codes/thischwa/cf/package-use.html | 122 +++ docs/apidocs/constant-values.html | 84 ++ docs/apidocs/element-list | 3 + docs/apidocs/help-doc.html | 196 ++++ docs/apidocs/index-all.html | 900 ++++++++++++++++++ docs/apidocs/index.html | 81 ++ docs/apidocs/jquery-ui.overrides.css | 35 + docs/apidocs/legal/ADDITIONAL_LICENSE_INFO | 37 + docs/apidocs/legal/ASSEMBLY_EXCEPTION | 27 + docs/apidocs/legal/LICENSE | 347 +++++++ docs/apidocs/legal/jquery.md | 26 + docs/apidocs/legal/jqueryUI.md | 49 + docs/apidocs/member-search-index.js | 1 + docs/apidocs/module-search-index.js | 1 + docs/apidocs/overview-summary.html | 26 + docs/apidocs/overview-tree.html | 148 +++ docs/apidocs/package-search-index.js | 1 + docs/apidocs/resources/glass.png | Bin 0 -> 499 bytes docs/apidocs/resources/x.png | Bin 0 -> 394 bytes docs/apidocs/script-dir/jquery-3.7.1.min.js | 2 + docs/apidocs/script-dir/jquery-ui.min.css | 6 + docs/apidocs/script-dir/jquery-ui.min.js | 6 + docs/apidocs/script.js | 132 +++ docs/apidocs/search.js | 354 +++++++ docs/apidocs/serialized-form.html | 87 ++ docs/apidocs/stylesheet.css | 869 +++++++++++++++++ docs/apidocs/tag-search-index.js | 1 + docs/apidocs/type-search-index.js | 1 + pom.xml | 29 + 91 files changed, 15321 insertions(+) create mode 100644 docs/apidocs/allclasses-index.html create mode 100644 docs/apidocs/allpackages-index.html create mode 100644 docs/apidocs/codes/thischwa/cf/CfDnsClient.html create mode 100644 docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html create mode 100644 docs/apidocs/codes/thischwa/cf/CfRequest.html create mode 100644 docs/apidocs/codes/thischwa/cf/CloudflareApiException.html create mode 100644 docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html create mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html create mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html create mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html create mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html create mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-summary.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-tree.html create mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-use.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/BatchEntry.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/BatchResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/PagingRequest.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordType.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ResultInfo.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/package-summary.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/package-tree.html create mode 100644 docs/apidocs/codes/thischwa/cf/model/package-use.html create mode 100644 docs/apidocs/codes/thischwa/cf/package-summary.html create mode 100644 docs/apidocs/codes/thischwa/cf/package-tree.html create mode 100644 docs/apidocs/codes/thischwa/cf/package-use.html create mode 100644 docs/apidocs/constant-values.html create mode 100644 docs/apidocs/element-list create mode 100644 docs/apidocs/help-doc.html create mode 100644 docs/apidocs/index-all.html create mode 100644 docs/apidocs/index.html create mode 100644 docs/apidocs/jquery-ui.overrides.css create mode 100644 docs/apidocs/legal/ADDITIONAL_LICENSE_INFO create mode 100644 docs/apidocs/legal/ASSEMBLY_EXCEPTION create mode 100644 docs/apidocs/legal/LICENSE create mode 100644 docs/apidocs/legal/jquery.md create mode 100644 docs/apidocs/legal/jqueryUI.md create mode 100644 docs/apidocs/member-search-index.js create mode 100644 docs/apidocs/module-search-index.js create mode 100644 docs/apidocs/overview-summary.html create mode 100644 docs/apidocs/overview-tree.html create mode 100644 docs/apidocs/package-search-index.js create mode 100644 docs/apidocs/resources/glass.png create mode 100644 docs/apidocs/resources/x.png create mode 100644 docs/apidocs/script-dir/jquery-3.7.1.min.js create mode 100644 docs/apidocs/script-dir/jquery-ui.min.css create mode 100644 docs/apidocs/script-dir/jquery-ui.min.js create mode 100644 docs/apidocs/script.js create mode 100644 docs/apidocs/search.js create mode 100644 docs/apidocs/serialized-form.html create mode 100644 docs/apidocs/stylesheet.css create mode 100644 docs/apidocs/tag-search-index.js create mode 100644 docs/apidocs/type-search-index.js diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html new file mode 100644 index 0000000..1695b88 --- /dev/null +++ b/docs/apidocs/allclasses-index.html @@ -0,0 +1,185 @@ + + + + +All Classes and Interfaces (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+
+
+
Class
+
Description
+ +
+
Represents a base abstract entity class for modeling domain objects with a unique identifier.
+
+ +
+
Abstract base class for response models that contain multiple result entries.
+
+ +
+
Abstract base class for API response models.
+
+ +
+
Represents a base abstract response model for handling single response entities within an API + response.
+
+ +
+
Represents a batch entry containing different types of operations on getRecord entities.
+
+ +
+
Represents a response that contains a single BatchEntry as the result.
+
+ +
+
CfDnsClient is a client interface to interact with Cloudflare DNS service.
+
+ +
+
Builder class for configuring and creating instances of CfDnsClient.
+
+ +
+
Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a + cohesive and reusable manner.
+
+ +
+
Represents a custom exception for errors encountered while interacting with the Cloudflare API.
+
+ +
+
This exception is thrown to indicate that a requested resource was not found during interaction + with the Cloudflare API.
+
+ +
+
Represents a request model for paginated data.
+
+ +
+
Represents a DNS getRecord entity within a specific zone.
+
+ +
+
Represents the API response of the Cloudflare API containing multiple RecordEntity + instances.
+
+ +
+
Fluent interface for getRecord-level operations.
+
+ +
+
Implementation of RecordOperations for fluent API access to getRecord-level operations.
+
+ +
+
Represents the API response of the Cloudflare API containing a single RecordEntity + instance.
+
+ +
+
Enum representing various DNS getRecord types.
+
+ +
+
Represents a contract for entities that have a unique identifier.
+
+ +
+
Represents the result of a response with metadata about its success and associated messages or + errors.
+
+ +
+
Represents an error with a specific code and message.
+
+ +
+
Represents metadata for paginated results.
+
+ +
+
Represents a DNS zone entity in the Cloudflare DNS system.
+
+ +
+
Represents a response model that contains multiple ZoneEntity instances.
+
+ +
+
Fluent interface for zone-level operations.
+
+ +
+
Implementation of ZoneOperations for fluent API access to zone-level operations.
+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html new file mode 100644 index 0000000..67cabe8 --- /dev/null +++ b/docs/apidocs/allpackages-index.html @@ -0,0 +1,79 @@ + + + + +All Packages (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/CfDnsClient.html b/docs/apidocs/codes/thischwa/cf/CfDnsClient.html new file mode 100644 index 0000000..f61b386 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/CfDnsClient.html @@ -0,0 +1,649 @@ + + + + +CfDnsClient (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CfDnsClient

+
+
java.lang.Object +
codes.thischwa.cf.CfDnsClient
+
+
+
+
public class CfDnsClient +extends Object
+
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());
+ 
+ +

Example with email/key authentication (legacy): +


+ CfDnsClient cfDnsClient = new CfDnsClientBuilder()
+     .withEmailKeyAuth("email@example.com", "your-api-key")
+     .build();
+ 
+ +

Example with exception throwing enabled: +


+ // Throws exception when results are empty
+ CfDnsClient cfDnsClient = new CfDnsClientBuilder()
+     .withApiTokenAuth("your-api-token")
+     .withEmptyResultThrowsException(true)
+     .build();
+ 
+ +

Example with custom base URL: +


+ CfDnsClient cfDnsClient = new CfDnsClientBuilder()
+     .withApiTokenAuth("your-api-token")
+     .withBaseUrl("https://custom-api.example.com")
+     .build();
+ 
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      groupRecordsByFqdn

      +
      public static Map<String,List<RecordEntity>> groupRecordsByFqdn(List<RecordEntity> records)
      +
      Groups a list of DNS records by their fully qualified domain name (FQDN).
      +
      +
      Parameters:
      +
      records - A list of RecordEntity objects to be grouped by FQDN.
      +
      Returns:
      +
      A map where the key is the FQDN (name field) and the value is a list of RecordEntity + objects that share that FQDN.
      +
      +
      +
    • +
    • +
      +

      zone

      +
      public ZoneOperations zone(String zoneName) + throws CloudflareApiException
      +
      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. + +

      Example: +

      
      + client.zone("example.com")
      +       .getRecord("api")
      +       .create(RecordType.A, "192.168.1.1", 60);
      + 
      +
      +
      Parameters:
      +
      zoneName - the name of the DNS zone (e.g., "example.com")
      +
      Returns:
      +
      a ZoneOperations instance for chaining operations
      +
      Throws:
      +
      CloudflareApiException - if the zone cannot be found or accessed
      +
      +
      +
    • +
    • +
      +

      zoneList

      +
      public List<ZoneEntity> zoneList() + throws CloudflareApiException
      +
      Retrieves a list of all zones from the Cloudflare API.
      +
      +
      Returns:
      +
      A list of ZoneEntity objects representing the zones retrieved from the Cloudflare API.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs during the API request or response handling.
      +
      +
      +
    • +
    • +
      +

      zoneList

      +
      public List<ZoneEntity> zoneList(PagingRequest pagingRequest) + throws CloudflareApiException
      +
      Retrieves a list of all DNS zones using the provided paging request parameters.
      +
      +
      Parameters:
      +
      pagingRequest - the pagination request object containing parameters for paging and + filtering zone data
      +
      Returns:
      +
      a list of ZoneEntity objects representing the DNS zones retrieved from the API
      +
      Throws:
      +
      CloudflareApiException - if there is an error during the API request or response + processing
      +
      +
      +
    • +
    • +
      +

      zoneGet

      +
      public ZoneEntity zoneGet(String name) + throws CloudflareApiException
      +
      Retrieves detailed information about a specific zone by its name.
      +
      +
      Parameters:
      +
      name - The name of the zone to retrieve information for.
      +
      Returns:
      +
      A ZoneEntity object that contains details of the specified zone.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs while making the API request or processing + the response.
      +
      +
      +
    • +
    • +
      +

      recordList

      +
      public List<RecordEntity> recordList(ZoneEntity zone) + throws CloudflareApiException
      +
      Retrieves a list of DNS records for a specified zone, with optional paging support.
      +
      +
      Parameters:
      +
      zone - The zone entity containing information about the target zone.
      +
      Returns:
      +
      A list of RecordEntity objects representing the DNS records of the specified zone.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs during the API request or response processing.
      +
      +
      +
    • +
    • +
      +

      recordList

      +
      public List<RecordEntity> recordList(ZoneEntity zone, + @Nullable + @Nullable PagingRequest pagingRequest) + throws CloudflareApiException
      +
      Retrieves a list of DNS records for a specified zone, with optional paging support.
      +
      +
      Parameters:
      +
      zone - The zone entity containing information about the target zone.
      +
      pagingRequest - The paging request containing parameters such as page size and number.
      +
      Returns:
      +
      A list of RecordEntity objects representing the DNS records of the specified zone.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs during the API request or response processing.
      +
      +
      +
    • +
    • +
      +

      recordList

      +
      public List<RecordEntity> recordList(ZoneEntity zone, + String sld) + throws CloudflareApiException
      +
      Retrieves DNS records for the specified second-level domain (SLD) within a zone.
      +
      +
      Parameters:
      +
      zone - the zone entity representing the DNS zone to query
      +
      sld - the second-level domain (SLD) to filter the records
      +
      Returns:
      +
      a list of RecordEntity objects that match the specified SLD within the zone
      +
      Throws:
      +
      CloudflareNotFoundException - if the specified SLD is not found in the zone
      +
      CloudflareApiException - if an error occurs while interacting with the Cloudflare API
      +
      +
      +
    • +
    • +
      +

      recordList

      +
      public List<RecordEntity> recordList(ZoneEntity zone, + String sld, + @Nullable + @Nullable RecordType... types) + throws CloudflareApiException
      +
      Retrieves DNS records for the specified second-level domain (SLD) within a zone. + Optionally, filters by one or more DNS getRecord types.
      +
      +
      Parameters:
      +
      zone - The zone entity containing information about the domain zone.
      +
      sld - The second-level domain (SLD) for which to retrieve DNS records.
      +
      types - Optional parameter specifying one or more DNS getRecord types to filter the results.
      +
      Returns:
      +
      A list of RecordEntity objects representing the DNS records for the specified domain.
      +
      Throws:
      +
      CloudflareNotFoundException - if the specified SLD is not found in the zone
      +
      CloudflareApiException - if an error occurs while interacting with the Cloudflare API
      +
      +
      +
    • +
    • +
      +

      recordList

      +
      public List<RecordEntity> recordList(ZoneEntity zone, + RecordType... types) + throws CloudflareApiException
      +
      Retrieves a list of all DNS records for a given zone. + Optionally, filters by one or more DNS getRecord types.
      +
      +
      Parameters:
      +
      zone - The zone entity containing information about the domain zone.
      +
      types - Optional parameter specifying one or more DNS getRecord types to filter the results.
      +
      Returns:
      +
      A list of RecordEntity objects representing the DNS records for the specified zone.
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while interacting with the Cloudflare API
      +
      +
      +
    • +
    • +
      +

      recordCreateSld

      +
      public RecordEntity recordCreateSld(ZoneEntity zone, + String sld, + int ttl, + RecordType type, + String content) + throws CloudflareApiException
      +
      Creates a new DNS getRecord for a given second-level domain (SLD) within the specified zone.
      +
      +
      Parameters:
      +
      zone - The ZoneEntity representing the DNS zone where the getRecord is to be created.
      +
      sld - The second-level domain (SLD) for which the DNS getRecord is being created.
      +
      ttl - The time-to-live (TTL) value for the DNS getRecord in seconds.
      +
      type - The RecordType specifying the type of the DNS getRecord (e.g., A, AAAA, CNAME).
      +
      content - The content of the DNS getRecord (e.g., IP address for A/AAAA records, target + domain for CNAME).
      +
      Returns:
      +
      The created RecordEntity object containing details of the newly created DNS getRecord.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs while communicating with the Cloudflare API + or creating the getRecord.
      +
      +
      +
    • +
    • +
      +

      recordCreate

      +
      public RecordEntity recordCreate(ZoneEntity zone, + String name, + int ttl, + RecordType type, + String content) + throws CloudflareApiException
      +
      Creates a DNS getRecord in the specified DNS zone with the provided details.
      +
      +
      Parameters:
      +
      zone - the DNS zone in which the getRecord will be created
      +
      name - the name of the DNS getRecord (e.g., www.example.com)
      +
      ttl - the time-to-live (TTL) value for the DNS getRecord
      +
      type - the type of the DNS getRecord (e.g., A, AAAA, CNAME)
      +
      content - the content or value of the DNS getRecord
      +
      Returns:
      +
      the created DNS getRecord as a RecordEntity object
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while interacting with the Cloudflare API
      +
      +
      +
    • +
    • +
      +

      recordCreate

      +
      public RecordEntity recordCreate(ZoneEntity zone, + RecordEntity rec) + throws CloudflareApiException
      +
      Creates a new DNS getRecord in the specified zone using the Cloudflare API.
      +
      +
      Parameters:
      +
      zone - The zone entity where the getRecord will be created. Contains details such as zone + ID.
      +
      rec - The getRecord entity representing the DNS getRecord to be created, including its + attributes.
      +
      Returns:
      +
      The created getRecord entity as returned by the Cloudflare API.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs while interacting with the Cloudflare API.
      +
      +
      +
    • +
    • +
      +

      recordDelete

      +
      public boolean recordDelete(ZoneEntity zone, + RecordEntity rec) + throws CloudflareApiException
      +
      Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
      +
      +
      Parameters:
      +
      zone - The zone entity that specifies the zone in which the getRecord exists.
      +
      rec - The getRecord entity that represents the DNS getRecord to be deleted.
      +
      Returns:
      +
      true if the DNS getRecord was successfully deleted; false otherwise.
      +
      Throws:
      +
      CloudflareApiException - if there is an issue during the API communication, or the + request fails for any reason.
      +
      +
      +
    • +
    • +
      +

      recordDelete

      +
      public boolean recordDelete(ZoneEntity zone, + String id) + throws CloudflareApiException
      +
      Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
      +
      +
      Parameters:
      +
      zone - The zone entity that specifies the zone in which the getRecord exists.
      +
      id - The getRecord entity that represents the DNS getRecord to be deleted.
      +
      Returns:
      +
      true if the DNS getRecord was successfully deleted; false otherwise.
      +
      Throws:
      +
      CloudflareApiException - if there is an issue during the API communication or the request + fails for any reason.
      +
      +
      +
    • +
    • +
      +

      recordUpdate

      +
      public RecordEntity recordUpdate(ZoneEntity zone, + RecordEntity rec) + throws CloudflareApiException
      +
      Updates an existing DNS getRecord in a specified Cloudflare zone.
      +
      +
      Parameters:
      +
      zone - the zone entity containing the ID of the target zone
      +
      rec - the getRecord entity containing the ID of the DNS getRecord to be updated and its updated + data
      +
      Returns:
      +
      the updated getRecord entity as returned by the Cloudflare API
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while interacting with the Cloudflare API
      +
      +
      +
    • +
    • +
      +

      recordDeleteTypeIfExists

      +
      public void recordDeleteTypeIfExists(ZoneEntity zone, + String sld, + RecordType... recordTypes) + throws CloudflareApiException
      +
      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.
      +
      Throws:
      +
      CloudflareApiException - If an error occurs during API communication.
      +
      +
      +
    • +
    • +
      +

      recordBatch

      +
      public BatchEntry recordBatch(ZoneEntity zone, + @Nullable + @Nullable List<RecordEntity> postRecords, + @Nullable + @Nullable List<RecordEntity> putRecords, + @Nullable + @Nullable List<RecordEntity> patchRecords, + @Nullable + @Nullable List<RecordEntity> deleteRecords) + throws CloudflareApiException
      +
      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.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html b/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html new file mode 100644 index 0000000..e372870 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html @@ -0,0 +1,312 @@ + + + + +CfDnsClientBuilder (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CfDnsClientBuilder

+
+
java.lang.Object +
codes.thischwa.cf.CfDnsClientBuilder
+
+
+
+
public class CfDnsClientBuilder +extends Object
+
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.
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      DEFAULT_BASEURL

      +
      public static final String DEFAULT_BASEURL
      +
      The default base URL for the Cloudflare v4 API requests made by the CfDnsClient.
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CfDnsClientBuilder

      +
      public CfDnsClientBuilder()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      withEmptyResultThrowsException

      +
      public CfDnsClientBuilder withEmptyResultThrowsException(boolean emptyResultThrowsException)
      +
      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.
      +
      +
      +
    • +
    • +
      +

      withBaseUrl

      +
      public CfDnsClientBuilder withBaseUrl(String baseUrl)
      +
      Sets the base URL to be used by the CfDnsClient. + This method allows configuring the base URL for API requests, overriding any default value.
      +
      +
      Parameters:
      +
      baseUrl - the base URL to be used for API requests
      +
      Returns:
      +
      the current instance of CfDnsClientBuilder, enabling method chaining
      +
      +
      +
    • +
    • +
      +

      withApiTokenAuth

      +
      public CfDnsClientBuilder withApiTokenAuth(String apiToken)
      +
      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.
      +
      Throws:
      +
      IllegalArgumentException - if the apiToken is null or blank.
      +
      +
      +
    • +
    • +
      +

      withEmailKeyAuth

      +
      public CfDnsClientBuilder withEmailKeyAuth(String authEmail, + String authKey)
      +
      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.
      +
      Throws:
      +
      IllegalArgumentException - if authEmail or authKey is null or blank.
      +
      +
      +
    • +
    • +
      +

      build

      +
      public CfDnsClient build()
      +
      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.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/CfRequest.html b/docs/apidocs/codes/thischwa/cf/CfRequest.html new file mode 100644 index 0000000..011cfd7 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/CfRequest.html @@ -0,0 +1,324 @@ + + + + +CfRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class CfRequest

+
+
java.lang.Object +
java.lang.Enum<CfRequest> +
codes.thischwa.cf.CfRequest
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<CfRequest>, Constable
+
+
+
public enum CfRequest +extends Enum<CfRequest>
+
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

    +Enum.EnumDesc<E extends Enum<E>>
    +
    +
  • + +
  • +
    +

    Enum Constant Summary

    +
    Enum Constants
    +
    +
    Enum Constant
    +
    Description
    + +
    +
    Represents the API endpoint path for performing batch operations on DNS records within a specific zone.
    +
    + +
    +
    Represents the API endpoint path for creating a new DNS getRecord within a specific DNS zone.
    +
    + +
    +
    Represents the API endpoint path for deleting an existing DNS getRecord within a specific DNS + zone.
    +
    + +
    +
    Represents the API endpoint path for retrieving information about DNS records within a + specific DNS zone.
    +
    + +
    +
    Represents the API endpoint path for retrieving information about a DNS getRecord within a + specific DNS zone by its name.
    +
    + +
    +
    Represents the API endpoint path for updating an existing DNS getRecord within a specific DNS + zone.
    +
    + +
    +
    Represents the API endpoint path for retrieving information about a specific DNS zone by its + name.
    +
    + +
    +
    Represents the API endpoint path for retrieving the list of DNS zones.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
     
    +
    static CfRequest
    + +
    +
    Returns the enum constant of this class with the specified name.
    +
    +
    static CfRequest[]
    + +
    +
    Returns an array containing the constants of this enum class, in +the order they are declared.
    +
    +
    +
    +
    + +
    +

    Methods inherited from class java.lang.Object

    +getClass, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      ZONE_LIST

      +
      public static final CfRequest ZONE_LIST
      +
      Represents the API endpoint path for retrieving the list of DNS zones.
      +
      +
    • +
    • +
      +

      ZONE_INFO

      +
      public static final CfRequest ZONE_INFO
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_LIST

      +
      public static final CfRequest RECORD_LIST
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_LIST_NAME

      +
      public static final CfRequest RECORD_LIST_NAME
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_CREATE

      +
      public static final CfRequest RECORD_CREATE
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_UPDATE

      +
      public static final CfRequest RECORD_UPDATE
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_BATCH

      +
      public static final CfRequest RECORD_BATCH
      +
      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.
      +
      +
    • +
    • +
      +

      RECORD_DELETE

      +
      public static final CfRequest RECORD_DELETE
      +
      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.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static CfRequest[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static CfRequest valueOf(String name)
      +
      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.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      getPath

      +
      public String getPath()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html b/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html new file mode 100644 index 0000000..d3dc565 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html @@ -0,0 +1,183 @@ + + + + +CloudflareApiException (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CloudflareApiException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
codes.thischwa.cf.CloudflareApiException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
Direct Known Subclasses:
+
CloudflareNotFoundException
+
+
+
public class CloudflareApiException +extends Exception
+
Represents a custom exception for errors encountered while interacting with the Cloudflare API.
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CloudflareApiException

      +
      public CloudflareApiException(String message)
      +
      Constructs a new CloudflareApiException with the specified detail message.
      +
      +
      Parameters:
      +
      message - the detail message, which provides more information about the exception.
      +
      +
      +
    • +
    • +
      +

      CloudflareApiException

      +
      public CloudflareApiException(String message, + Throwable cause)
      +
      Constructs a new CloudflareApiException with the specified detail message and cause.
      +
      +
      Parameters:
      +
      message - the detail message, which provides additional context or information about the + exception.
      +
      cause - the cause of this exception, which is the underlying throwable that triggered this + exception.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html b/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html new file mode 100644 index 0000000..126e9e7 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html @@ -0,0 +1,166 @@ + + + + +CloudflareNotFoundException (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CloudflareNotFoundException

+
+ +
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class CloudflareNotFoundException +extends CloudflareApiException
+
This exception is thrown to indicate that a requested resource was not found during interaction + with the Cloudflare API. + +

It extends CloudflareApiException to provide specific errors related to situations + where Cloudflare responds with a "not found" operation.

+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CloudflareNotFoundException

      +
      public CloudflareNotFoundException(String message)
      +
      Constructs a new CloudflareNotFoundException with the specified detail message.
      +
      +
      Parameters:
      +
      message - the detail message, which provides additional context about the "not found" + error encountered during interaction with the Cloudflare API.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html new file mode 100644 index 0000000..4fc731c --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html @@ -0,0 +1,120 @@ + + + + +Uses of Class codes.thischwa.cf.CfDnsClient (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.CfDnsClient

+
+
Packages that use CfDnsClient
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html new file mode 100644 index 0000000..7be09e4 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html @@ -0,0 +1,108 @@ + + + + +Uses of Class codes.thischwa.cf.CfDnsClientBuilder (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.CfDnsClientBuilder

+
+
Packages that use CfDnsClientBuilder
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html b/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html new file mode 100644 index 0000000..3bbfedc --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html @@ -0,0 +1,97 @@ + + + + +Uses of Enum Class codes.thischwa.cf.CfRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
codes.thischwa.cf.CfRequest

+
+
Packages that use CfRequest
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html new file mode 100644 index 0000000..a70f451 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html @@ -0,0 +1,283 @@ + + + + +Uses of Class codes.thischwa.cf.CloudflareApiException (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.CloudflareApiException

+
+
Packages that use CloudflareApiException
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html new file mode 100644 index 0000000..761559e --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.CloudflareNotFoundException (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.CloudflareNotFoundException

+
+No usage of codes.thischwa.cf.CloudflareNotFoundException
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html new file mode 100644 index 0000000..31c1b24 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html @@ -0,0 +1,212 @@ + + + + +RecordOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface RecordOperations

+
+
+
+
All Known Implementing Classes:
+
RecordOperationsImpl
+
+
+
public interface RecordOperations
+
Fluent interface for getRecord-level operations. + Provides a chainable API for CRUD operations on DNS records.
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    create(RecordType type, + String content, + int ttl)
    +
    +
    Creates a new DNS getRecord with the specified parameters.
    +
    +
    void
    +
    delete(RecordType... types)
    +
    +
    Deletes DNS records of the specified types.
    +
    + +
    get()
    +
    +
    Retrieves DNS records for the selected subdomain.
    +
    + +
    update(String newContent)
    +
    +
    Updates an existing DNS getRecord with new content.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      get

      + +
      Retrieves DNS records for the selected subdomain.
      +
      +
      Returns:
      +
      a list of RecordEntity objects matching the criteria
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while retrieving records
      +
      +
      +
    • +
    • +
      +

      create

      +
      RecordEntity create(RecordType type, + String content, + int ttl) + throws CloudflareApiException
      +
      Creates a new DNS getRecord with the specified parameters.
      +
      +
      Parameters:
      +
      type - the DNS getRecord type (e.g., A, AAAA, CNAME)
      +
      content - the content of the DNS getRecord (e.g., IP address)
      +
      ttl - the time-to-live value in seconds
      +
      Returns:
      +
      the created RecordEntity
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while creating the getRecord
      +
      +
      +
    • +
    • +
      +

      update

      +
      RecordEntity update(String newContent) + throws CloudflareApiException
      +
      Updates an existing DNS getRecord with new content.
      +
      +
      Parameters:
      +
      newContent - the new content for the DNS getRecord
      +
      Returns:
      +
      the updated RecordEntity
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while updating the getRecord
      +
      +
      +
    • +
    • +
      +

      delete

      +
      void delete(RecordType... types) + throws CloudflareApiException
      +
      Deletes DNS records of the specified types.
      +
      +
      Parameters:
      +
      types - the DNS getRecord types to delete
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while deleting records
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html new file mode 100644 index 0000000..1f7596f --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html @@ -0,0 +1,275 @@ + + + + +RecordOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RecordOperationsImpl

+
+
java.lang.Object +
codes.thischwa.cf.fluent.RecordOperationsImpl
+
+
+
+
All Implemented Interfaces:
+
RecordOperations
+
+
+
public class RecordOperationsImpl +extends Object +implements RecordOperations
+
Implementation of RecordOperations for fluent API access to getRecord-level operations.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RecordOperationsImpl

      +
      public RecordOperationsImpl(CfDnsClient client, + ZoneEntity zone, + String sld, + @Nullable + @Nullable RecordType[] types)
      +
      Constructs a RecordOperationsImpl instance.
      +
      +
      Parameters:
      +
      client - the CfDnsClient instance to use for operations
      +
      zone - the ZoneEntity representing the DNS zone
      +
      sld - the subdomain (second-level domain) name
      +
      types - optional array of RecordType to filter by
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html new file mode 100644 index 0000000..dfcfda9 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html @@ -0,0 +1,194 @@ + + + + +ZoneOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ZoneOperations

+
+
+
+
All Known Implementing Classes:
+
ZoneOperationsImpl
+
+
+
public interface ZoneOperations
+
Fluent interface for zone-level operations. + Provides a chainable API for accessing and manipulating DNS records within a specific zone.
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
    +
    Selects a record (subdomain) within the zone for further operations.
    +
    + +
    getRecord(String sld, + @Nullable RecordType... types)
    +
    +
    Selects a record with specific types within the zone for further operations.
    +
    + +
    list(@Nullable RecordType... types)
    +
    +
    Lists all DNS records within the zone, optionally filtered by types.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getRecord

      + +
      Selects a record (subdomain) within the zone for further operations.
      +
      +
      Parameters:
      +
      sld - the second-level domain (subdomain) name
      +
      Returns:
      +
      a RecordOperations instance for chaining record-specific operations
      +
      Throws:
      +
      CloudflareApiException - if the zone cannot be found or accessed
      +
      +
      +
    • +
    • +
      +

      getRecord

      +
      RecordOperations getRecord(String sld, + @Nullable + @Nullable RecordType... types) + throws CloudflareApiException
      +
      Selects a record with specific types within the zone for further operations.
      +
      +
      Parameters:
      +
      sld - the second-level domain (subdomain) name
      +
      types - optional DNS record types to filter by
      +
      Returns:
      +
      a RecordOperations instance for chaining record-specific operations
      +
      Throws:
      +
      CloudflareApiException - if the zone cannot be found or accessed
      +
      +
      +
    • +
    • +
      +

      list

      +
      List<RecordEntity> list(@Nullable + @Nullable RecordType... types) + throws CloudflareApiException
      +
      Lists all DNS records within the zone, optionally filtered by types.
      +
      +
      Parameters:
      +
      types - optional DNS record types to filter by
      +
      Returns:
      +
      a list of RecordEntity objects matching the criteria
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while retrieving records
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html new file mode 100644 index 0000000..914f711 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html @@ -0,0 +1,247 @@ + + + + +ZoneOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ZoneOperationsImpl

+
+
java.lang.Object +
codes.thischwa.cf.fluent.ZoneOperationsImpl
+
+
+
+
All Implemented Interfaces:
+
ZoneOperations
+
+
+
public class ZoneOperationsImpl +extends Object +implements ZoneOperations
+
Implementation of ZoneOperations for fluent API access to zone-level operations.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ZoneOperationsImpl

      +
      public ZoneOperationsImpl(CfDnsClient client, + ZoneEntity zone)
      +
      Constructs a ZoneOperationsImpl instance.
      +
      +
      Parameters:
      +
      client - the CfDnsClient instance to use for operations
      +
      zone - the ZoneEntity representing the DNS zone
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getRecord

      +
      public RecordOperations getRecord(String sld) + throws CloudflareApiException
      +
      Description copied from interface: ZoneOperations
      +
      Selects a record (subdomain) within the zone for further operations.
      +
      +
      Specified by:
      +
      getRecord in interface ZoneOperations
      +
      Parameters:
      +
      sld - the second-level domain (subdomain) name
      +
      Returns:
      +
      a RecordOperations instance for chaining record-specific operations
      +
      Throws:
      +
      CloudflareApiException - if the zone cannot be found or accessed
      +
      +
      +
    • +
    • +
      +

      getRecord

      +
      public RecordOperations getRecord(String sld, + @Nullable + @Nullable RecordType... types) + throws CloudflareApiException
      +
      Description copied from interface: ZoneOperations
      +
      Selects a record with specific types within the zone for further operations.
      +
      +
      Specified by:
      +
      getRecord in interface ZoneOperations
      +
      Parameters:
      +
      sld - the second-level domain (subdomain) name
      +
      types - optional DNS record types to filter by
      +
      Returns:
      +
      a RecordOperations instance for chaining record-specific operations
      +
      Throws:
      +
      CloudflareApiException - if the zone cannot be found or accessed
      +
      +
      +
    • +
    • +
      +

      list

      +
      public List<RecordEntity> list(@Nullable + @Nullable RecordType... types) + throws CloudflareApiException
      +
      Description copied from interface: ZoneOperations
      +
      Lists all DNS records within the zone, optionally filtered by types.
      +
      +
      Specified by:
      +
      list in interface ZoneOperations
      +
      Parameters:
      +
      types - optional DNS record types to filter by
      +
      Returns:
      +
      a list of RecordEntity objects matching the criteria
      +
      Throws:
      +
      CloudflareApiException - if an error occurs while retrieving records
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html new file mode 100644 index 0000000..8dcf57f --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html @@ -0,0 +1,115 @@ + + + + +Uses of Interface codes.thischwa.cf.fluent.RecordOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
codes.thischwa.cf.fluent.RecordOperations

+
+
Packages that use RecordOperations
+
+
Package
+
Description
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html new file mode 100644 index 0000000..805d40d --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.fluent.RecordOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.fluent.RecordOperationsImpl

+
+No usage of codes.thischwa.cf.fluent.RecordOperationsImpl
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html new file mode 100644 index 0000000..4c1ddd6 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html @@ -0,0 +1,111 @@ + + + + +Uses of Interface codes.thischwa.cf.fluent.ZoneOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
codes.thischwa.cf.fluent.ZoneOperations

+
+
Packages that use ZoneOperations
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html new file mode 100644 index 0000000..cf35ca6 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.fluent.ZoneOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.fluent.ZoneOperationsImpl

+
+No usage of codes.thischwa.cf.fluent.ZoneOperationsImpl
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html b/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html new file mode 100644 index 0000000..92fffdd --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html @@ -0,0 +1,153 @@ + + + + +codes.thischwa.cf.fluent (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Package codes.thischwa.cf.fluent

+
+
+
package codes.thischwa.cf.fluent
+
+
Fluent API interfaces and implementations for chainable DNS operations. + +

This package provides a fluent, chainable interface for interacting with Cloudflare DNS + records, making code more readable and concise. + +

Example usage: +


+ // Create a DNS getRecord
+ client.zone("example.com")
+       .getRecord("api")
+       .create(RecordType.A, "192.168.1.1", 60);
+
+ // Get DNS records
+ List<RecordEntity> records = client.zone("example.com")
+                                      .getRecord("www", RecordType.A)
+                                      .get();
+
+ // Update a DNS getRecord
+ client.zone("example.com")
+       .getRecord("api", RecordType.A)
+       .update("192.168.1.2");
+
+ // Delete DNS records
+ client.zone("example.com")
+       .getRecord("old-service")
+       .delete(RecordType.A, RecordType.AAAA);
+ 
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    Fluent interface for getRecord-level operations.
    +
    + +
    +
    Implementation of RecordOperations for fluent API access to getRecord-level operations.
    +
    + +
    +
    Fluent interface for zone-level operations.
    +
    + +
    +
    Implementation of ZoneOperations for fluent API access to zone-level operations.
    +
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html b/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html new file mode 100644 index 0000000..5b91622 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html @@ -0,0 +1,84 @@ + + + + +codes.thischwa.cf.fluent Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package codes.thischwa.cf.fluent

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-use.html b/docs/apidocs/codes/thischwa/cf/fluent/package-use.html new file mode 100644 index 0000000..b49397d --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/fluent/package-use.html @@ -0,0 +1,109 @@ + + + + +Uses of Package codes.thischwa.cf.fluent (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
codes.thischwa.cf.fluent

+
+
Packages that use codes.thischwa.cf.fluent
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html b/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html new file mode 100644 index 0000000..668e2e9 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html @@ -0,0 +1,246 @@ + + + + +AbstractEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractEntity

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractEntity
+
+
+
+
All Implemented Interfaces:
+
ResponseEntity
+
+
+
Direct Known Subclasses:
+
BatchEntry, RecordEntity, ZoneEntity
+
+
+
public class AbstractEntity +extends Object +implements ResponseEntity
+
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.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AbstractEntity

      +
      public AbstractEntity()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getId

      +
      public String getId()
      +
      Description copied from interface: ResponseEntity
      +
      Retrieves the unique identifier of the entity.
      +
      +
      Specified by:
      +
      getId in interface ResponseEntity
      +
      Returns:
      +
      the unique identifier as a String
      +
      +
      +
    • +
    • +
      +

      setId

      +
      public void setId(String id)
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html new file mode 100644 index 0000000..fcc19e4 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html @@ -0,0 +1,246 @@ + + + + +AbstractMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractMultipleResponse<T extends ResponseEntity>

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractResponse +
codes.thischwa.cf.model.AbstractMultipleResponse<T>
+
+
+
+
+
Type Parameters:
+
T - Represents the type of entities contained within the response. For this class, it is + expected to be ResponseEntity.
+
+
+
Direct Known Subclasses:
+
RecordMultipleResponse, ZoneMultipleResponse
+
+
+
public abstract class AbstractMultipleResponse<T extends ResponseEntity> +extends AbstractResponse
+
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.

+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html new file mode 100644 index 0000000..f163670 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html @@ -0,0 +1,239 @@ + + + + +AbstractResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractResponse

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractResponse
+
+
+
+
Direct Known Subclasses:
+
AbstractMultipleResponse, AbstractSingleResponse
+
+
+
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: + +

    +
  1. success: Indicates whether the API request was successful. +
  2. errors: A list of error messages, if any, returned by the API. +
  3. 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.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AbstractResponse

      +
      public AbstractResponse()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getResponseResultInfo

      +
      public ResponseResultInfo getResponseResultInfo()
      +
      +
    • +
    • +
      +

      setResponseResultInfo

      +
      public void setResponseResultInfo(ResponseResultInfo responseResultInfo)
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html new file mode 100644 index 0000000..5d3625a --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html @@ -0,0 +1,247 @@ + + + + +AbstractSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AbstractSingleResponse<T extends ResponseEntity>

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractResponse +
codes.thischwa.cf.model.AbstractSingleResponse<T>
+
+
+
+
+
Type Parameters:
+
T - The type of the response entity that extends ResponseEntity.
+
+
+
Direct Known Subclasses:
+
BatchResponse, RecordSingleResponse
+
+
+
public abstract class AbstractSingleResponse<T extends ResponseEntity> +extends AbstractResponse
+
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.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AbstractSingleResponse

      +
      public AbstractSingleResponse()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html b/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html new file mode 100644 index 0000000..bce2c99 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html @@ -0,0 +1,322 @@ + + + + +BatchEntry (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class BatchEntry

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractEntity +
codes.thischwa.cf.model.BatchEntry
+
+
+
+
+
All Implemented Interfaces:
+
ResponseEntity
+
+
+
public class BatchEntry +extends AbstractEntity
+
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.

+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html b/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html new file mode 100644 index 0000000..b1516b0 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html @@ -0,0 +1,119 @@ + + + + +BatchResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class BatchResponse

+
+ +
+
+
public class BatchResponse +extends AbstractSingleResponse<BatchEntry>
+
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.

+
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html b/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html new file mode 100644 index 0000000..cd5ee43 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html @@ -0,0 +1,299 @@ + + + + +PagingRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class PagingRequest

+
+
java.lang.Object +
codes.thischwa.cf.model.PagingRequest
+
+
+
+
public class PagingRequest +extends Object
+
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. +
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      of

      +
      public static PagingRequest of(int page, + int perPage)
      +
      Creates a new PagingRequest instance with the specified page number and items per page.
      +
      +
      Parameters:
      +
      page - the page number to be requested
      +
      perPage - the number of items to be included per page
      +
      Returns:
      +
      a new PagingRequest instance with the provided parameters
      +
      +
      +
    • +
    • +
      +

      defaultPaging

      +
      public static PagingRequest defaultPaging()
      +
      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
      +
      +
      +
    • +
    • +
      +

      getPagingParams

      +
      public Map<String,String> getPagingParams()
      +
      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.
      +
      +
      +
    • +
    • +
      +

      addQueryString

      +
      public String addQueryString(String endpoint)
      +
      Appends a query string with pagination parameters (page and perPage) to the provided endpoint.
      +
      +
      Parameters:
      +
      endpoint - the base URL or API endpoint to which the query string will be appended
      +
      Returns:
      +
      the complete URL with the appended query string for pagination
      +
      +
      +
    • +
    • +
      +

      getPage

      +
      public int getPage()
      +
      +
    • +
    • +
      +

      getPerPage

      +
      public int getPerPage()
      +
      +
    • +
    • +
      +

      setPage

      +
      public void setPage(int page)
      +
      +
    • +
    • +
      +

      setPerPage

      +
      public void setPerPage(int perPage)
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html b/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html new file mode 100644 index 0000000..55bae65 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html @@ -0,0 +1,544 @@ + + + + +RecordEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RecordEntity

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractEntity +
codes.thischwa.cf.model.RecordEntity
+
+
+
+
+
All Implemented Interfaces:
+
ResponseEntity
+
+
+
public class RecordEntity +extends AbstractEntity
+
Represents a DNS getRecord entity within a specific zone. + +

Attributes defined in this class include: + +

    +
  • DNS getRecord type such as "A" or "CNAME". +
  • Name of the DNS getRecord. +
  • Content of the DNS getRecord, such as an IP address. +
  • Flags indicating whether the getRecord is proxiable or proxied. +
  • TTL (Time-To-Live) for the DNS getRecord. +
  • A locked status to indicate the immutability of the getRecord. +
  • Zone-specific metadata including zone ID and name. +
  • Timestamps for creation and modification. +
+ +

Provides a static factory method build for creating a DNS getRecord with specific + attributes.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RecordEntity

      +
      public RecordEntity()
      +
      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.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      build

      +
      public static RecordEntity build(String name, + RecordType type, + Integer ttl, + String content)
      +
      Builds and returns a RecordEntity instance with the specified attributes.
      +
      +
      Parameters:
      +
      name - the name of the DNS getRecord
      +
      type - the RecordType of the DNS getRecord
      +
      ttl - the time-to-live (TTL) value for the DNS getRecord
      +
      content - the content of the DNS getRecord, typically an IP address
      +
      Returns:
      +
      a RecordEntity populated with the provided attributes
      +
      +
      +
    • +
    • +
      +

      build

      +
      public static RecordEntity build(String id, + String content)
      +
      Builds and returns a RecordEntity instance with the specified ID and content.
      +
      +
      Parameters:
      +
      id - the unique identifier for the DNS getRecord
      +
      content - the content of the DNS getRecord, typically an IP address or other getRecord data
      +
      Returns:
      +
      a RecordEntity populated with the provided ID and content
      +
      +
      +
    • +
    • +
      +

      build

      +
      public static RecordEntity build(String id, + String name, + String type, + Integer ttl, + String content)
      +
      Builds and returns a RecordEntity instance with the specified attributes.
      +
      +
      Parameters:
      +
      id - the unique identifier for the DNS getRecord
      +
      name - the name of the DNS getRecord
      +
      type - the type of the DNS getRecord, represented as a string (e.g., "A", "CNAME")
      +
      ttl - the time-to-live (TTL) value for the DNS getRecord
      +
      content - the content of the DNS getRecord, typically an IP address or other getRecord data
      +
      Returns:
      +
      a RecordEntity populated with the provided attributes
      +
      Throws:
      +
      IllegalArgumentException - if the type string is not a valid RecordType
      +
      +
      +
    • +
    • +
      +

      getSld

      +
      public String getSld()
      +
      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
      +
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
      Overrides:
      +
      canEqual in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      getType

      +
      public String getType()
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      +
    • +
    • +
      +

      getContent

      +
      public String getContent()
      +
      +
    • +
    • +
      +

      getProxiable

      +
      public Boolean getProxiable()
      +
      +
    • +
    • +
      +

      getProxied

      +
      public Boolean getProxied()
      +
      +
    • +
    • +
      +

      getTtl

      +
      public Integer getTtl()
      +
      +
    • +
    • +
      +

      getLocked

      +
      public Boolean getLocked()
      +
      +
    • +
    • +
      +

      getZoneId

      +
      @Nullable +public @Nullable String getZoneId()
      +
      +
    • +
    • +
      +

      getZoneName

      +
      @Nullable +public @Nullable String getZoneName()
      +
      +
    • +
    • +
      +

      getModifiedOn

      +
      @Nullable +public @Nullable LocalDateTime getModifiedOn()
      +
      +
    • +
    • +
      +

      getCreatedOn

      +
      @Nullable +public @Nullable LocalDateTime getCreatedOn()
      +
      +
    • +
    • +
      +

      setType

      +
      public void setType(String type)
      +
      +
    • +
    • +
      +

      setName

      +
      public void setName(String name)
      +
      +
    • +
    • +
      +

      setContent

      +
      public void setContent(String content)
      +
      +
    • +
    • +
      +

      setProxiable

      +
      public void setProxiable(Boolean proxiable)
      +
      +
    • +
    • +
      +

      setProxied

      +
      public void setProxied(Boolean proxied)
      +
      +
    • +
    • +
      +

      setTtl

      +
      public void setTtl(Integer ttl)
      +
      +
    • +
    • +
      +

      setLocked

      +
      public void setLocked(Boolean locked)
      +
      +
    • +
    • +
      +

      setZoneId

      +
      public void setZoneId(@Nullable + @Nullable String zoneId)
      +
      +
    • +
    • +
      +

      setZoneName

      +
      public void setZoneName(@Nullable + @Nullable String zoneName)
      +
      +
    • +
    • +
      +

      setModifiedOn

      +
      public void setModifiedOn(@Nullable + @Nullable LocalDateTime modifiedOn)
      +
      +
    • +
    • +
      +

      setCreatedOn

      +
      public void setCreatedOn(@Nullable + @Nullable LocalDateTime createdOn)
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class AbstractEntity
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html new file mode 100644 index 0000000..40006a7 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html @@ -0,0 +1,151 @@ + + + + +RecordMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RecordMultipleResponse

+
+ +
+
+
public class RecordMultipleResponse +extends AbstractMultipleResponse<RecordEntity>
+
Represents the API response of the Cloudflare API containing multiple RecordEntity + instances.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RecordMultipleResponse

      +
      public RecordMultipleResponse()
      +
      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.

      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html new file mode 100644 index 0000000..4c46e13 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html @@ -0,0 +1,152 @@ + + + + +RecordSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RecordSingleResponse

+
+ +
+
+
public class RecordSingleResponse +extends AbstractSingleResponse<RecordEntity>
+
Represents the API response of the Cloudflare API containing a single RecordEntity + instance.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RecordSingleResponse

      +
      public RecordSingleResponse()
      +
      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.

      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordType.html b/docs/apidocs/codes/thischwa/cf/model/RecordType.html new file mode 100644 index 0000000..4235f70 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/RecordType.html @@ -0,0 +1,561 @@ + + + + +RecordType (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class RecordType

+
+
java.lang.Object +
java.lang.Enum<RecordType> +
codes.thischwa.cf.model.RecordType
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<RecordType>, Constable
+
+
+
public enum RecordType +extends Enum<RecordType>
+
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

    +Enum.EnumDesc<E extends Enum<E>>
    +
    +
  • + +
  • +
    +

    Enum Constant Summary

    +
    Enum Constants
    +
    +
    Enum Constant
    +
    Description
    + +
    +
    Represents the DNS A getRecord type.
    +
    + +
    +
    Represents the DNS AAAA getRecord type.
    +
    + +
    +
    Represents the DNS CAA (Certificate Authority Authorization) getRecord type.
    +
    + +
    +
    Represents the DNS CERT getRecord type.
    +
    + +
    +
    Represents the DNS CNAME (Canonical Name) getRecord type.
    +
    + +
    +
    Represents the DNSKEY getRecord type.
    +
    + +
    +
    Represents the DNS DS (Delegation Signer) getRecord type.
    +
    + +
    +
    Represents the DNS HTTPS (HTTP Service) getRecord type.
    +
    + +
    +
    Represents the DNS LOC (Location) getRecord type.
    +
    + +
    +
    Represents the DNS MX (Mail Exchange) getRecord type.
    +
    + +
    +
    Represents the NAPTR getRecord type for DNS configurations.
    +
    + +
    +
    Represents the namespace or identifier `"NS"` within the domain model.
    +
    + +
    +
    Represents the "OPENPGPKEY" DNS getRecord type.
    +
    + +
    +
    Represents a DNS getRecord type.
    +
    + +
    +
    Represents the SMIMEA DNS getRecord type.
    +
    + +
    +
    Represents a service getRecord (SRV) type in the DNS configuration model.
    +
    + +
    +
    Represents the DNS getRecord type "SSHFP" (SSH Fingerprint), used in DNS to store cryptographic + fingerprints associated with SSH host keys.
    +
    + +
    +
    Represents the Service Binding (SVCB) DNS getRecord type.
    +
    + +
    +
    Represents a constant for the DNS-based Authentication of Named Entities (DANE) TLSA getRecord + type.
    +
    + +
    +
    Represents the TXT DNS getRecord type.
    +
    + +
    +
    Represents a Uniform Resource Identifier (URI).
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
     
    + + +
     
    +
    static RecordType
    + +
    +
    Returns the enum constant of this class with the specified name.
    +
    +
    static RecordType[]
    + +
    +
    Returns an array containing the constants of this enum class, in +the order they are declared.
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Enum

    +clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
    +
    +

    Methods inherited from class java.lang.Object

    +getClass, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      A

      +
      public static final RecordType A
      +
      Represents the DNS A getRecord type. + +

      The "A" getRecord type is used to map a domain name to an IPv4 address.

      +
      +
    • +
    • +
      +

      AAAA

      +
      public static final RecordType AAAA
      +
      Represents the DNS AAAA getRecord type. + +

      The "AAAA" getRecord type maps a domain name to an IPv6 address.

      +
      +
    • +
    • +
      +

      CAA

      +
      public static final RecordType CAA
      +
      Represents the DNS CAA (Certificate Authority Authorization) getRecord type. + +

      The "CAA" getRecord type is used to specify which certificate authorities (CAs) are allowed to + issue SSL/TLS certificates for a domain.

      +
      +
    • +
    • +
      +

      CERT

      +
      public static final RecordType CERT
      +
      Represents the DNS CERT getRecord type. + +

      The "CERT" getRecord type is used to store certificates and related certificate revocation + lists or certificate authority data in DNS zones.

      +
      +
    • +
    • +
      +

      CNAME

      +
      public static final RecordType CNAME
      +
      Represents the DNS CNAME (Canonical Name) getRecord type. + +

      The "CNAME" getRecord type is used to alias one domain name to another.

      +
      +
    • +
    • +
      +

      DNSKEY

      +
      public static final RecordType DNSKEY
      +
      Represents the DNSKEY getRecord type. + +

      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.

      +
      +
    • +
    • +
      +

      DS

      +
      public static final RecordType DS
      +
      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.

      +
      +
    • +
    • +
      +

      HTTPS

      +
      public static final RecordType HTTPS
      +
      Represents the DNS HTTPS (HTTP Service) getRecord type. + +

      The "HTTPS" getRecord type is used to specify information about the HTTP/3 and related services + offered by a domain.

      +
      +
    • +
    • +
      +

      LOC

      +
      public static final RecordType LOC
      +
      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.

      +
      +
    • +
    • +
      +

      MX

      +
      public static final RecordType MX
      +
      Represents the DNS MX (Mail Exchange) getRecord type. + +

      The "MX" getRecord type is used to specify the mail servers responsible for receiving email + messages on behalf of a domain.

      +
      +
    • +
    • +
      +

      NAPTR

      +
      public static final RecordType NAPTR
      +
      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.

      +
      +
    • +
    • +
      +

      NS

      +
      public static final RecordType NS
      +
      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.

      +
      +
    • +
    • +
      +

      OPENPGPKEY

      +
      public static final RecordType OPENPGPKEY
      +
      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.

      +
      +
    • +
    • +
      +

      PTR

      +
      public static final RecordType PTR
      +
      Represents a DNS getRecord type. + +

      The `PTR` value specifically refers to a "pointer getRecord" in the DNS system, which is + typically used for reverse DNS lookups.

      +
      +
    • +
    • +
      +

      SMIMEA

      +
      public static final RecordType SMIMEA
      +
      Represents the SMIMEA DNS getRecord 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. +
      +
      +
    • +
    • +
      +

      SRV

      +
      public static final RecordType SRV
      +
      Represents a service getRecord (SRV) type in the DNS configuration model. + +

      This constant may be used to identify and work with SRV getRecord types in various DNS-related + operations or integrations.

      +
      +
    • +
    • +
      +

      SSHFP

      +
      public static final RecordType SSHFP
      +
      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.

      +
      +
    • +
    • +
      +

      SVCB

      +
      public static final RecordType SVCB
      +
      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.

      +
      +
    • +
    • +
      +

      TLSA

      +
      public static final RecordType TLSA
      +
      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.

      +
      +
    • +
    • +
      +

      TXT

      +
      public static final RecordType TXT
      +
      Represents the TXT DNS getRecord type. + +

      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).

      +
      +
    • +
    • +
      +

      URI

      +
      public static final RecordType URI
      +
      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.

      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static RecordType[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static RecordType valueOf(String name)
      +
      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.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Enum<RecordType>
      +
      +
      +
    • +
    • +
      +

      getType

      +
      public String getType()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html b/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html new file mode 100644 index 0000000..537a075 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html @@ -0,0 +1,144 @@ + + + + +ResponseEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ResponseEntity

+
+
+
+
All Known Implementing Classes:
+
AbstractEntity, BatchEntry, RecordEntity, ZoneEntity
+
+
+
public interface ResponseEntity
+
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.

+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
    +
    Retrieves the unique identifier of the entity.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getId

      +
      String getId()
      +
      Retrieves the unique identifier of the entity.
      +
      +
      Returns:
      +
      the unique identifier as a String
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html new file mode 100644 index 0000000..0b33760 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html @@ -0,0 +1,272 @@ + + + + +ResponseResultInfo.Error (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ResponseResultInfo.Error

+
+
java.lang.Object +
codes.thischwa.cf.model.ResponseResultInfo.Error
+
+
+
+
Enclosing class:
+
ResponseResultInfo
+
+
+
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.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Error

      +
      public Error()
      +
      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.

      +
      +
    • +
    • +
      +

      Error

      +
      public Error(int code, + String message)
      +
      Constructs an instance of the Error class with a specified error code and message.
      +
      +
      Parameters:
      +
      code - the numerical code representing the error
      +
      message - the descriptive message providing details about the error
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    • +
      +

      getCode

      +
      public int getCode()
      +
      +
    • +
    • +
      +

      getMessage

      +
      public String getMessage()
      +
      +
    • +
    • +
      +

      setCode

      +
      public void setCode(int code)
      +
      +
    • +
    • +
      +

      setMessage

      +
      public void setMessage(String message)
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html new file mode 100644 index 0000000..d6c5a1e --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html @@ -0,0 +1,283 @@ + + + + +ResponseResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ResponseResultInfo

+
+
java.lang.Object +
codes.thischwa.cf.model.ResponseResultInfo
+
+
+
+
public class ResponseResultInfo +extends Object
+
Represents the result of a response with metadata about its success and associated messages or + errors. + +

This class provides a structure to capture the outcome of an operation, including: +

    +
  • Whether the operation was successful. +
  • A list of error messages if the operation failed. +
  • A list of informational or success messages. +
+ It can be used to standardize the response format in an application.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ResponseResultInfo

      +
      public ResponseResultInfo()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      isSuccess

      +
      public boolean isSuccess()
      +
      +
    • +
    • +
      +

      getErrors

      +
      public List<ResponseResultInfo.Error> getErrors()
      +
      +
    • +
    • +
      +

      getMessages

      +
      public List<String> getMessages()
      +
      +
    • +
    • +
      +

      setSuccess

      +
      public void setSuccess(boolean success)
      +
      +
    • +
    • +
      +

      setErrors

      +
      public void setErrors(List<ResponseResultInfo.Error> errors)
      +
      +
    • +
    • +
      +

      setMessages

      +
      public void setMessages(List<String> messages)
      +
      +
    • +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html new file mode 100644 index 0000000..e121298 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html @@ -0,0 +1,340 @@ + + + + +ResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Record Class ResultInfo

+
+
java.lang.Object +
java.lang.Record +
codes.thischwa.cf.model.ResultInfo
+
+
+
+
+
Record Components:
+
page - The current page number.
+
perPage - The number of results per page.
+
totalPages - The total number of pages available.
+
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.

+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    +
    ResultInfo(int totalCount)
    +
    +
    Constructs a ResultInfo instance with the specified total count and default values for other + fields.
    +
    +
    ResultInfo(int page, + int perPage, + int totalPages, + int count, + int totalCount)
    +
    +
    Creates an instance of a ResultInfo record class.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    int
    + +
    +
    Returns the value of the count record component.
    +
    +
    final boolean
    + +
    +
    Indicates whether some other object is "equal to" this one.
    +
    +
    final int
    + +
    +
    Returns a hash code value for this object.
    +
    +
    int
    + +
    +
    Returns the value of the page record component.
    +
    +
    int
    + +
    +
    Returns the value of the perPage record component.
    +
    +
    final String
    + +
    +
    Returns a string representation of this record class.
    +
    +
    int
    + +
    +
    Returns the value of the totalCount record component.
    +
    +
    int
    + +
    +
    Returns the value of the totalPages record component.
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ResultInfo

      +
      public ResultInfo(int totalCount)
      +
      Constructs a ResultInfo instance with the specified total count and default values for other + fields. Just to use in tests!
      +
      +
      Parameters:
      +
      totalCount - the total number of results across all pages
      +
      +
      +
    • +
    • +
      +

      ResultInfo

      +
      public ResultInfo(int page, + int perPage, + int totalPages, + int count, + int totalCount)
      +
      Creates an instance of a ResultInfo record class.
      +
      +
      Parameters:
      +
      page - the value for the page record component
      +
      perPage - the value for the perPage record component
      +
      totalPages - the value for the totalPages record component
      +
      count - the value for the count record component
      +
      totalCount - the value for the totalCount record component
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      toString

      +
      public final String toString()
      +
      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.
      +
      +
      Specified by:
      +
      toString in class Record
      +
      Returns:
      +
      a string representation of this object
      +
      +
      +
    • +
    • +
      +

      hashCode

      +
      public final int hashCode()
      +
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      +
      +
      Specified by:
      +
      hashCode in class Record
      +
      Returns:
      +
      a hash code value for this object
      +
      +
      +
    • +
    • +
      +

      equals

      +
      public final boolean equals(Object o)
      +
      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 '=='.
      +
      +
      Specified by:
      +
      equals in class Record
      +
      Parameters:
      +
      o - the object with which to compare
      +
      Returns:
      +
      true if this object is the same as the o argument; false otherwise.
      +
      +
      +
    • +
    • +
      +

      page

      +
      public int page()
      +
      Returns the value of the page record component.
      +
      +
      Returns:
      +
      the value of the page record component
      +
      +
      +
    • +
    • +
      +

      perPage

      +
      public int perPage()
      +
      Returns the value of the perPage record component.
      +
      +
      Returns:
      +
      the value of the perPage record component
      +
      +
      +
    • +
    • +
      +

      totalPages

      +
      public int totalPages()
      +
      Returns the value of the totalPages record component.
      +
      +
      Returns:
      +
      the value of the totalPages record component
      +
      +
      +
    • +
    • +
      +

      count

      +
      public int count()
      +
      Returns the value of the count record component.
      +
      +
      Returns:
      +
      the value of the count record component
      +
      +
      +
    • +
    • +
      +

      totalCount

      +
      public int totalCount()
      +
      Returns the value of the totalCount record component.
      +
      +
      Returns:
      +
      the value of the totalCount record component
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html b/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html new file mode 100644 index 0000000..b4454f0 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html @@ -0,0 +1,419 @@ + + + + +ZoneEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ZoneEntity

+
+
java.lang.Object +
codes.thischwa.cf.model.AbstractEntity +
codes.thischwa.cf.model.ZoneEntity
+
+
+
+
+
All Implemented Interfaces:
+
ResponseEntity
+
+
+
public class ZoneEntity +extends AbstractEntity
+
Represents a DNS zone entity in the Cloudflare DNS system.
+ +

This class encapsulates all relevant data and metadata associated with a zone, including but + not limited to the following attributes: + +

    +
  • Zone name. +
  • Development mode status. +
  • Active and original name servers linked to the zone. +
  • Timestamps indicating when the zone was created, modified, or activated. +
  • Current operational status of the zone (e.g., active, inactive). +
  • Boolean flag indicating whether the zone is paused. +
  • Zone type, representing the nature of the DNS zone (e.g., full, partial). +
+ +

This class extends AbstractEntity to inherit basic entity properties and to provide a + consistent interface across domain models.

+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ZoneEntity

      +
      public ZoneEntity()
      +
      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.

      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      canEqual

      +
      protected boolean canEqual(Object other)
      +
      +
      Overrides:
      +
      canEqual in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class AbstractEntity
      +
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      +
    • +
    • +
      +

      getDevelopmentMode

      +
      public Integer getDevelopmentMode()
      +
      +
    • +
    • +
      +

      getNameServers

      +
      public Set<String> getNameServers()
      +
      +
    • +
    • +
      +

      getOriginalNameServers

      +
      public Set<String> getOriginalNameServers()
      +
      +
    • +
    • +
      +

      getCreatedOn

      +
      public LocalDateTime getCreatedOn()
      +
      +
    • +
    • +
      +

      getModifiedOn

      +
      public LocalDateTime getModifiedOn()
      +
      +
    • +
    • +
      +

      getActivatedOn

      +
      public LocalDateTime getActivatedOn()
      +
      +
    • +
    • +
      +

      getStatus

      +
      public String getStatus()
      +
      +
    • +
    • +
      +

      getPaused

      +
      public Boolean getPaused()
      +
      +
    • +
    • +
      +

      getType

      +
      public String getType()
      +
      +
    • +
    • +
      +

      setName

      +
      public void setName(String name)
      +
      +
    • +
    • +
      +

      setDevelopmentMode

      +
      public void setDevelopmentMode(Integer developmentMode)
      +
      +
    • +
    • +
      +

      setNameServers

      +
      public void setNameServers(Set<String> nameServers)
      +
      +
    • +
    • +
      +

      setOriginalNameServers

      +
      public void setOriginalNameServers(Set<String> originalNameServers)
      +
      +
    • +
    • +
      +

      setCreatedOn

      +
      public void setCreatedOn(LocalDateTime createdOn)
      +
      +
    • +
    • +
      +

      setModifiedOn

      +
      public void setModifiedOn(LocalDateTime modifiedOn)
      +
      +
    • +
    • +
      +

      setActivatedOn

      +
      public void setActivatedOn(LocalDateTime activatedOn)
      +
      +
    • +
    • +
      +

      setStatus

      +
      public void setStatus(String status)
      +
      +
    • +
    • +
      +

      setPaused

      +
      public void setPaused(Boolean paused)
      +
      +
    • +
    • +
      +

      setType

      +
      public void setType(String type)
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class AbstractEntity
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html new file mode 100644 index 0000000..7c4cab2 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html @@ -0,0 +1,149 @@ + + + + +ZoneMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ZoneMultipleResponse

+
+ +
+
+
public class ZoneMultipleResponse +extends AbstractMultipleResponse<ZoneEntity>
+
Represents a response model that contains multiple ZoneEntity instances.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ZoneMultipleResponse

      +
      public ZoneMultipleResponse()
      +
      Constructs a new ZoneMultipleResponse object. + +

      This constructor initializes an instance of ZoneMultipleResponse, which serves as a response + model containing multiple ZoneEntity instances.

      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html new file mode 100644 index 0000000..9b2c118 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html @@ -0,0 +1,101 @@ + + + + +Uses of Class codes.thischwa.cf.model.AbstractEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.AbstractEntity

+
+
Packages that use AbstractEntity
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html new file mode 100644 index 0000000..7e8d5e4 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html @@ -0,0 +1,97 @@ + + + + +Uses of Class codes.thischwa.cf.model.AbstractMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.AbstractMultipleResponse

+
+
Packages that use AbstractMultipleResponse
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html new file mode 100644 index 0000000..83d4248 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html @@ -0,0 +1,119 @@ + + + + +Uses of Class codes.thischwa.cf.model.AbstractResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.AbstractResponse

+
+
Packages that use AbstractResponse
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html new file mode 100644 index 0000000..ff550f6 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html @@ -0,0 +1,97 @@ + + + + +Uses of Class codes.thischwa.cf.model.AbstractSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.AbstractSingleResponse

+
+
Packages that use AbstractSingleResponse
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html new file mode 100644 index 0000000..ad6b95c --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html @@ -0,0 +1,95 @@ + + + + +Uses of Class codes.thischwa.cf.model.BatchEntry (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.BatchEntry

+
+
Packages that use BatchEntry
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html new file mode 100644 index 0000000..553fc6a --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.model.BatchResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.BatchResponse

+
+No usage of codes.thischwa.cf.model.BatchResponse
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html b/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html new file mode 100644 index 0000000..4f82c90 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html @@ -0,0 +1,124 @@ + + + + +Uses of Class codes.thischwa.cf.model.PagingRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.PagingRequest

+
+
Packages that use PagingRequest
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html new file mode 100644 index 0000000..01510f5 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html @@ -0,0 +1,332 @@ + + + + +Uses of Class codes.thischwa.cf.model.RecordEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.RecordEntity

+
+
Packages that use RecordEntity
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html new file mode 100644 index 0000000..93a93ee --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.model.RecordMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.RecordMultipleResponse

+
+No usage of codes.thischwa.cf.model.RecordMultipleResponse
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html new file mode 100644 index 0000000..31f0c98 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.model.RecordSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.RecordSingleResponse

+
+No usage of codes.thischwa.cf.model.RecordSingleResponse
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html new file mode 100644 index 0000000..dfecbda --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html @@ -0,0 +1,231 @@ + + + + +Uses of Enum Class codes.thischwa.cf.model.RecordType (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
codes.thischwa.cf.model.RecordType

+
+
Packages that use RecordType
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html new file mode 100644 index 0000000..ce51740 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html @@ -0,0 +1,123 @@ + + + + +Uses of Interface codes.thischwa.cf.model.ResponseEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
codes.thischwa.cf.model.ResponseEntity

+
+
Packages that use ResponseEntity
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html new file mode 100644 index 0000000..906d801 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html @@ -0,0 +1,98 @@ + + + + +Uses of Class codes.thischwa.cf.model.ResponseResultInfo.Error (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.ResponseResultInfo.Error

+
+
Packages that use ResponseResultInfo.Error
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html new file mode 100644 index 0000000..4142f23 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html @@ -0,0 +1,98 @@ + + + + +Uses of Class codes.thischwa.cf.model.ResponseResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.ResponseResultInfo

+
+
Packages that use ResponseResultInfo
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html new file mode 100644 index 0000000..efd8154 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html @@ -0,0 +1,98 @@ + + + + +Uses of Record Class codes.thischwa.cf.model.ResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Record Class
codes.thischwa.cf.model.ResultInfo

+
+
Packages that use ResultInfo
+
+
Package
+
Description
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html new file mode 100644 index 0000000..0227a03 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html @@ -0,0 +1,230 @@ + + + + +Uses of Class codes.thischwa.cf.model.ZoneEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.ZoneEntity

+
+
Packages that use ZoneEntity
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html new file mode 100644 index 0000000..f76cde5 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html @@ -0,0 +1,62 @@ + + + + +Uses of Class codes.thischwa.cf.model.ZoneMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
codes.thischwa.cf.model.ZoneMultipleResponse

+
+No usage of codes.thischwa.cf.model.ZoneMultipleResponse
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/package-summary.html b/docs/apidocs/codes/thischwa/cf/model/package-summary.html new file mode 100644 index 0000000..9795128 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/package-summary.html @@ -0,0 +1,183 @@ + + + + +codes.thischwa.cf.model (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Package codes.thischwa.cf.model

+
+
+
package codes.thischwa.cf.model
+
+
The model of CloudflareDNS-java.
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    Represents a base abstract entity class for modeling domain objects with a unique identifier.
    +
    + +
    +
    Abstract base class for response models that contain multiple result entries.
    +
    + +
    +
    Abstract base class for API response models.
    +
    + +
    +
    Represents a base abstract response model for handling single response entities within an API + response.
    +
    + +
    +
    Represents a batch entry containing different types of operations on getRecord entities.
    +
    + +
    +
    Represents a response that contains a single BatchEntry as the result.
    +
    + +
    +
    Represents a request model for paginated data.
    +
    + +
    +
    Represents a DNS getRecord entity within a specific zone.
    +
    + +
    +
    Represents the API response of the Cloudflare API containing multiple RecordEntity + instances.
    +
    + +
    +
    Represents the API response of the Cloudflare API containing a single RecordEntity + instance.
    +
    + +
    +
    Enum representing various DNS getRecord types.
    +
    + +
    +
    Represents a contract for entities that have a unique identifier.
    +
    + +
    +
    Represents the result of a response with metadata about its success and associated messages or + errors.
    +
    + +
    +
    Represents an error with a specific code and message.
    +
    + +
    +
    Represents metadata for paginated results.
    +
    + +
    +
    Represents a DNS zone entity in the Cloudflare DNS system.
    +
    + +
    +
    Represents a response model that contains multiple ZoneEntity instances.
    +
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/package-tree.html b/docs/apidocs/codes/thischwa/cf/model/package-tree.html new file mode 100644 index 0000000..3a5c6a1 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/package-tree.html @@ -0,0 +1,126 @@ + + + + +codes.thischwa.cf.model Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package codes.thischwa.cf.model

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/model/package-use.html b/docs/apidocs/codes/thischwa/cf/model/package-use.html new file mode 100644 index 0000000..3ade64d --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/model/package-use.html @@ -0,0 +1,188 @@ + + + + +Uses of Package codes.thischwa.cf.model (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
codes.thischwa.cf.model

+
+
Packages that use codes.thischwa.cf.model
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/package-summary.html b/docs/apidocs/codes/thischwa/cf/package-summary.html new file mode 100644 index 0000000..80db893 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/package-summary.html @@ -0,0 +1,133 @@ + + + + +codes.thischwa.cf (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Package codes.thischwa.cf

+
+
+
package codes.thischwa.cf
+
+
The base package of CloudflareDNS-java.
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    CfDnsClient is a client interface to interact with Cloudflare DNS service.
    +
    + +
    +
    Builder class for configuring and creating instances of CfDnsClient.
    +
    + +
    +
    Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a + cohesive and reusable manner.
    +
    + +
    +
    Represents a custom exception for errors encountered while interacting with the Cloudflare API.
    +
    + +
    +
    This exception is thrown to indicate that a requested resource was not found during interaction + with the Cloudflare API.
    +
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/package-tree.html b/docs/apidocs/codes/thischwa/cf/package-tree.html new file mode 100644 index 0000000..13e8223 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/package-tree.html @@ -0,0 +1,104 @@ + + + + +codes.thischwa.cf Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package codes.thischwa.cf

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/codes/thischwa/cf/package-use.html b/docs/apidocs/codes/thischwa/cf/package-use.html new file mode 100644 index 0000000..55fec87 --- /dev/null +++ b/docs/apidocs/codes/thischwa/cf/package-use.html @@ -0,0 +1,122 @@ + + + + +Uses of Package codes.thischwa.cf (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
codes.thischwa.cf

+
+
Packages that use codes.thischwa.cf
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/constant-values.html b/docs/apidocs/constant-values.html new file mode 100644 index 0000000..d0d766d --- /dev/null +++ b/docs/apidocs/constant-values.html @@ -0,0 +1,84 @@ + + + + +Constant Field Values (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Constant Field Values

+
+

Contents

+ +
+
+
+

codes.thischwa.*

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/element-list b/docs/apidocs/element-list new file mode 100644 index 0000000..959dcb9 --- /dev/null +++ b/docs/apidocs/element-list @@ -0,0 +1,3 @@ +codes.thischwa.cf +codes.thischwa.cf.fluent +codes.thischwa.cf.model diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html new file mode 100644 index 0000000..af310d4 --- /dev/null +++ b/docs/apidocs/help-doc.html @@ -0,0 +1,196 @@ + + + + +API Help (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+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 + +
+
+
+

Kinds of Pages

+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.
  • +
+
+
+

Constant Field Values

+

The Constant Field Values page lists the static final fields and their values.

+
+
+

Serialized Form

+

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.
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/index-all.html b/docs/apidocs/index-all.html new file mode 100644 index 0000000..c15e159 --- /dev/null +++ b/docs/apidocs/index-all.html @@ -0,0 +1,900 @@ + + + + +Index (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E G H I L M N O P R S T U V W Z 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

A

+
+
A - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS A getRecord type.
+
+
AAAA - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS AAAA getRecord type.
+
+
AbstractEntity - Class in codes.thischwa.cf.model
+
+
Represents a base abstract entity class for modeling domain objects with a unique identifier.
+
+
AbstractEntity() - Constructor for class codes.thischwa.cf.model.AbstractEntity
+
 
+
AbstractMultipleResponse<T extends ResponseEntity> - Class in codes.thischwa.cf.model
+
+
Abstract base class for response models that contain multiple result entries.
+
+
AbstractResponse - Class in codes.thischwa.cf.model
+
+
Abstract base class for API response models.
+
+
AbstractResponse() - Constructor for class codes.thischwa.cf.model.AbstractResponse
+
 
+
AbstractSingleResponse<T extends ResponseEntity> - Class in codes.thischwa.cf.model
+
+
Represents a base abstract response model for handling single response entities within an API + response.
+
+
AbstractSingleResponse() - Constructor for class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
addQueryString(String) - Method in class codes.thischwa.cf.model.PagingRequest
+
+
Appends a query string with pagination parameters (page and perPage) to the provided endpoint.
+
+
+

B

+
+
BatchEntry - Class in codes.thischwa.cf.model
+
+
Represents a batch entry containing different types of operations on getRecord entities.
+
+
BatchEntry() - Constructor for class codes.thischwa.cf.model.BatchEntry
+
 
+
BatchResponse - Class in codes.thischwa.cf.model
+
+
Represents a response that contains a single BatchEntry as the result.
+
+
build() - Method in class codes.thischwa.cf.CfDnsClientBuilder
+
+
Builds and returns a configured instance of CfDnsClient.
+
+
build(String, RecordType, Integer, String) - Static method in class codes.thischwa.cf.model.RecordEntity
+
+
Builds and returns a RecordEntity instance with the specified attributes.
+
+
build(String, String) - Static method in class codes.thischwa.cf.model.RecordEntity
+
+
Builds and returns a RecordEntity instance with the specified ID and content.
+
+
build(String, String, String, Integer, String) - Static method in class codes.thischwa.cf.model.RecordEntity
+
+
Builds and returns a RecordEntity instance with the specified attributes.
+
+
+

C

+
+
CAA - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS CAA (Certificate Authority Authorization) getRecord type.
+
+
canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
canEqual(Object) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
CERT - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS CERT getRecord type.
+
+
CfDnsClient - Class in codes.thischwa.cf
+
+
CfDnsClient is a client interface to interact with Cloudflare DNS service.
+
+
CfDnsClientBuilder - Class in codes.thischwa.cf
+
+
Builder class for configuring and creating instances of CfDnsClient.
+
+
CfDnsClientBuilder() - Constructor for class codes.thischwa.cf.CfDnsClientBuilder
+
 
+
CfRequest - Enum Class in codes.thischwa.cf
+
+
Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a + cohesive and reusable manner.
+
+
CloudflareApiException - Exception in codes.thischwa.cf
+
+
Represents a custom exception for errors encountered while interacting with the Cloudflare API.
+
+
CloudflareApiException(String) - Constructor for exception codes.thischwa.cf.CloudflareApiException
+
+
Constructs a new CloudflareApiException with the specified detail message.
+
+
CloudflareApiException(String, Throwable) - Constructor for exception codes.thischwa.cf.CloudflareApiException
+
+
Constructs a new CloudflareApiException with the specified detail message and cause.
+
+
CloudflareNotFoundException - Exception in codes.thischwa.cf
+
+
This exception is thrown to indicate that a requested resource was not found during interaction + with the Cloudflare API.
+
+
CloudflareNotFoundException(String) - Constructor for exception codes.thischwa.cf.CloudflareNotFoundException
+
+
Constructs a new CloudflareNotFoundException with the specified detail message.
+
+
CNAME - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS CNAME (Canonical Name) getRecord type.
+
+
codes.thischwa.cf - package codes.thischwa.cf
+
+
The base package of CloudflareDNS-java.
+
+
codes.thischwa.cf.fluent - package codes.thischwa.cf.fluent
+
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+
codes.thischwa.cf.model - package codes.thischwa.cf.model
+
+
The model of CloudflareDNS-java.
+
+
count() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns the value of the count record component.
+
+
create(RecordType, String, int) - Method in interface codes.thischwa.cf.fluent.RecordOperations
+
+
Creates a new DNS getRecord with the specified parameters.
+
+
create(RecordType, String, int) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
+
 
+
+

D

+
+
DEFAULT_BASEURL - Static variable in class codes.thischwa.cf.CfDnsClientBuilder
+
+
The default base URL for the Cloudflare v4 API requests made by the CfDnsClient.
+
+
defaultPaging() - Static method in class codes.thischwa.cf.model.PagingRequest
+
+
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.
+
+
delete(RecordType...) - Method in interface codes.thischwa.cf.fluent.RecordOperations
+
+
Deletes DNS records of the specified types.
+
+
delete(RecordType...) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
+
 
+
DNSKEY - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNSKEY getRecord type.
+
+
DS - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS DS (Delegation Signer) getRecord type.
+
+
+

E

+
+
equals(Object) - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
equals(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
equals(Object) - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Indicates whether some other object is "equal to" this one.
+
+
equals(Object) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
Error() - Constructor for class codes.thischwa.cf.model.ResponseResultInfo.Error
+
+
Constructs a new instance of the Error class with default values for its properties.
+
+
Error(int, String) - Constructor for class codes.thischwa.cf.model.ResponseResultInfo.Error
+
+
Constructs an instance of the Error class with a specified error code and message.
+
+
+

G

+
+
get() - Method in interface codes.thischwa.cf.fluent.RecordOperations
+
+
Retrieves DNS records for the selected subdomain.
+
+
get() - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
+
 
+
getActivatedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
getContent() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getCreatedOn() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getCreatedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getDeletes() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
getDevelopmentMode() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getErrors() - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
getId() - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
getId() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
getId() - Method in interface codes.thischwa.cf.model.ResponseEntity
+
+
Retrieves the unique identifier of the entity.
+
+
getLocked() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getMessage() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
getMessages() - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
getModifiedOn() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getModifiedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getName() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getName() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getNameServers() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getOriginalNameServers() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getPage() - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
getPagingParams() - Method in class codes.thischwa.cf.model.PagingRequest
+
+
Retrieves the pagination parameters in a key-value map format.
+
+
getPatches() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
getPath() - Method in enum class codes.thischwa.cf.CfRequest
+
 
+
getPaused() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getPerPage() - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
getPosts() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
getProxiable() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getProxied() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getPuts() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
getRecord(String) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
+
+
Selects a record (subdomain) within the zone for further operations.
+
+
getRecord(String) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
+
 
+
getRecord(String, RecordType...) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
+
+
Selects a record with specific types within the zone for further operations.
+
+
getRecord(String, RecordType...) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
+
 
+
getResponseResultInfo() - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
getResult() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
getResult() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
getResultInfo() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
getSld() - Method in class codes.thischwa.cf.model.RecordEntity
+
+
Retrieves the short name (subdomain) of the DNS getRecord.
+
+
getStatus() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getTtl() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getType() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getType() - Method in enum class codes.thischwa.cf.model.RecordType
+
 
+
getType() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
getZoneId() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
getZoneName() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
groupRecordsByFqdn(List<RecordEntity>) - Static method in class codes.thischwa.cf.CfDnsClient
+
+
Groups a list of DNS records by their fully qualified domain name (FQDN).
+
+
+

H

+
+
hashCode() - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
hashCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
hashCode() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns a hash code value for this object.
+
+
hashCode() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
HTTPS - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS HTTPS (HTTP Service) getRecord type.
+
+
+

I

+
+
isSuccess() - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
+

L

+
+
list(RecordType...) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
+
+
Lists all DNS records within the zone, optionally filtered by types.
+
+
list(RecordType...) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
+
 
+
LOC - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS LOC (Location) getRecord type.
+
+
+

M

+
+
MX - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS MX (Mail Exchange) getRecord type.
+
+
+

N

+
+
NAPTR - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the NAPTR getRecord type for DNS configurations.
+
+
NS - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the namespace or identifier `"NS"` within the domain model.
+
+
+

O

+
+
of(int, int) - Static method in class codes.thischwa.cf.model.PagingRequest
+
+
Creates a new PagingRequest instance with the specified page number and items per page.
+
+
OPENPGPKEY - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the "OPENPGPKEY" DNS getRecord type.
+
+
+

P

+
+
page() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns the value of the page record component.
+
+
PagingRequest - Class in codes.thischwa.cf.model
+
+
Represents a request model for paginated data.
+
+
perPage() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns the value of the perPage record component.
+
+
PTR - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents a DNS getRecord type.
+
+
+

R

+
+
RECORD_BATCH - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for performing batch operations on DNS records within a specific zone.
+
+
RECORD_CREATE - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for creating a new DNS getRecord within a specific DNS zone.
+
+
RECORD_DELETE - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for deleting an existing DNS getRecord within a specific DNS + zone.
+
+
RECORD_LIST - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for retrieving information about DNS records within a + specific DNS zone.
+
+
RECORD_LIST_NAME - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for retrieving information about a DNS getRecord within a + specific DNS zone by its name.
+
+
RECORD_UPDATE - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for updating an existing DNS getRecord within a specific DNS + zone.
+
+
recordBatch(ZoneEntity, List<RecordEntity>, List<RecordEntity>, List<RecordEntity>, List<RecordEntity>) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Processes a batch of DNS getRecord operations (POST, PUT, PATCH, DELETE) for a specified zone.
+
+
recordCreate(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Creates a new DNS getRecord in the specified zone using the Cloudflare API.
+
+
recordCreate(ZoneEntity, String, int, RecordType, String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Creates a DNS getRecord in the specified DNS zone with the provided details.
+
+
recordCreateSld(ZoneEntity, String, int, RecordType, String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Creates a new DNS getRecord for a given second-level domain (SLD) within the specified zone.
+
+
recordDelete(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
+
+
recordDelete(ZoneEntity, String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
+
+
recordDeleteTypeIfExists(ZoneEntity, String, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Deletes DNS records of a specific type within a given zone if they exist.
+
+
RecordEntity - Class in codes.thischwa.cf.model
+
+
Represents a DNS getRecord entity within a specific zone.
+
+
RecordEntity() - Constructor for class codes.thischwa.cf.model.RecordEntity
+
+
Initializes a new instance of the RecordEntity class and invokes the parent constructor from + the AbstractEntity class.
+
+
recordList(ZoneEntity) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves a list of DNS records for a specified zone, with optional paging support.
+
+
recordList(ZoneEntity, PagingRequest) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves a list of DNS records for a specified zone, with optional paging support.
+
+
recordList(ZoneEntity, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves a list of all DNS records for a given zone.
+
+
recordList(ZoneEntity, String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves DNS records for the specified second-level domain (SLD) within a zone.
+
+
recordList(ZoneEntity, String, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves DNS records for the specified second-level domain (SLD) within a zone.
+
+
RecordMultipleResponse - Class in codes.thischwa.cf.model
+
+
Represents the API response of the Cloudflare API containing multiple RecordEntity + instances.
+
+
RecordMultipleResponse() - Constructor for class codes.thischwa.cf.model.RecordMultipleResponse
+
+
Constructs an instance of RecordMultipleResponse.
+
+
RecordOperations - Interface in codes.thischwa.cf.fluent
+
+
Fluent interface for getRecord-level operations.
+
+
RecordOperationsImpl - Class in codes.thischwa.cf.fluent
+
+
Implementation of RecordOperations for fluent API access to getRecord-level operations.
+
+
RecordOperationsImpl(CfDnsClient, ZoneEntity, String, RecordType[]) - Constructor for class codes.thischwa.cf.fluent.RecordOperationsImpl
+
+
Constructs a RecordOperationsImpl instance.
+
+
RecordSingleResponse - Class in codes.thischwa.cf.model
+
+
Represents the API response of the Cloudflare API containing a single RecordEntity + instance.
+
+
RecordSingleResponse() - Constructor for class codes.thischwa.cf.model.RecordSingleResponse
+
+
Constructs a new instance of the RecordSingleResponse class.
+
+
RecordType - Enum Class in codes.thischwa.cf.model
+
+
Enum representing various DNS getRecord types.
+
+
recordUpdate(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Updates an existing DNS getRecord in a specified Cloudflare zone.
+
+
ResponseEntity - Interface in codes.thischwa.cf.model
+
+
Represents a contract for entities that have a unique identifier.
+
+
ResponseResultInfo - Class in codes.thischwa.cf.model
+
+
Represents the result of a response with metadata about its success and associated messages or + errors.
+
+
ResponseResultInfo() - Constructor for class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
ResponseResultInfo.Error - Class in codes.thischwa.cf.model
+
+
Represents an error with a specific code and message.
+
+
ResultInfo - Record Class in codes.thischwa.cf.model
+
+
Represents metadata for paginated results.
+
+
ResultInfo(int) - Constructor for record class codes.thischwa.cf.model.ResultInfo
+
+
Constructs a ResultInfo instance with the specified total count and default values for other + fields.
+
+
ResultInfo(int, int, int, int, int) - Constructor for record class codes.thischwa.cf.model.ResultInfo
+
+
Creates an instance of a ResultInfo record class.
+
+
+

S

+
+
setActivatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setCode(int) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
setContent(String) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setCreatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setCreatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setDeletes(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
setDevelopmentMode(Integer) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setErrors(List<ResponseResultInfo.Error>) - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
setId(String) - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
setLocked(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setMessage(String) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
setMessages(List<String>) - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
setModifiedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setModifiedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setName(String) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setName(String) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setNameServers(Set<String>) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setOriginalNameServers(Set<String>) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setPage(int) - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
setPatches(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
setPaused(Boolean) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setPerPage(int) - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
setPosts(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
setProxiable(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setProxied(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setPuts(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
setResponseResultInfo(ResponseResultInfo) - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
setResult(List<T>) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
setResult(T) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
setResultInfo(ResultInfo) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
setStatus(String) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setSuccess(boolean) - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
setTtl(Integer) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setType(String) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setType(String) - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
setZoneId(String) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
setZoneName(String) - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
SMIMEA - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the SMIMEA DNS getRecord type.
+
+
SRV - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents a service getRecord (SRV) type in the DNS configuration model.
+
+
SSHFP - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the DNS getRecord type "SSHFP" (SSH Fingerprint), used in DNS to store cryptographic + fingerprints associated with SSH host keys.
+
+
SVCB - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the Service Binding (SVCB) DNS getRecord type.
+
+
+

T

+
+
TLSA - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents a constant for the DNS-based Authentication of Named Entities (DANE) TLSA getRecord + type.
+
+
toString() - Method in class codes.thischwa.cf.model.AbstractEntity
+
 
+
toString() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
+
 
+
toString() - Method in class codes.thischwa.cf.model.AbstractResponse
+
 
+
toString() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
+
 
+
toString() - Method in class codes.thischwa.cf.model.BatchEntry
+
 
+
toString() - Method in class codes.thischwa.cf.model.PagingRequest
+
 
+
toString() - Method in class codes.thischwa.cf.model.RecordEntity
+
 
+
toString() - Method in enum class codes.thischwa.cf.model.RecordType
+
 
+
toString() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
+
 
+
toString() - Method in class codes.thischwa.cf.model.ResponseResultInfo
+
 
+
toString() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns a string representation of this record class.
+
+
toString() - Method in class codes.thischwa.cf.model.ZoneEntity
+
 
+
totalCount() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns the value of the totalCount record component.
+
+
totalPages() - Method in record class codes.thischwa.cf.model.ResultInfo
+
+
Returns the value of the totalPages record component.
+
+
TXT - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents the TXT DNS getRecord type.
+
+
+

U

+
+
update(String) - Method in interface codes.thischwa.cf.fluent.RecordOperations
+
+
Updates an existing DNS getRecord with new content.
+
+
update(String) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
+
 
+
URI - Enum constant in enum class codes.thischwa.cf.model.RecordType
+
+
Represents a Uniform Resource Identifier (URI).
+
+
+

V

+
+
valueOf(String) - Static method in enum class codes.thischwa.cf.CfRequest
+
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class codes.thischwa.cf.model.RecordType
+
+
Returns the enum constant of this class with the specified name.
+
+
values() - Static method in enum class codes.thischwa.cf.CfRequest
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class codes.thischwa.cf.model.RecordType
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
+

W

+
+
withApiTokenAuth(String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
+
+
Configures the authentication method for the CfDnsClient to use an API token.
+
+
withBaseUrl(String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
+
+
Sets the base URL to be used by the CfDnsClient.
+
+
withEmailKeyAuth(String, String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
+
+
Configures the authentication method for the CfDnsClient to use an email and API key.
+
+
withEmptyResultThrowsException(boolean) - Method in class codes.thischwa.cf.CfDnsClientBuilder
+
+
Configures whether an exception should be thrown when an empty result is encountered + during operations performed by the `CfDnsClient`.
+
+
+

Z

+
+
zone(String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Provides fluent API access to operations in a specific zone.
+
+
ZONE_INFO - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for retrieving information about a specific DNS zone by its + name.
+
+
ZONE_LIST - Enum constant in enum class codes.thischwa.cf.CfRequest
+
+
Represents the API endpoint path for retrieving the list of DNS zones.
+
+
ZoneEntity - Class in codes.thischwa.cf.model
+
+
Represents a DNS zone entity in the Cloudflare DNS system.
+
+
ZoneEntity() - Constructor for class codes.thischwa.cf.model.ZoneEntity
+
+
Default no-argument constructor for the ZoneEntity class.
+
+
zoneGet(String) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves detailed information about a specific zone by its name.
+
+
zoneList() - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves a list of all zones from the Cloudflare API.
+
+
zoneList(PagingRequest) - Method in class codes.thischwa.cf.CfDnsClient
+
+
Retrieves a list of all DNS zones using the provided paging request parameters.
+
+
ZoneMultipleResponse - Class in codes.thischwa.cf.model
+
+
Represents a response model that contains multiple ZoneEntity instances.
+
+
ZoneMultipleResponse() - Constructor for class codes.thischwa.cf.model.ZoneMultipleResponse
+
+
Constructs a new ZoneMultipleResponse object.
+
+
ZoneOperations - Interface in codes.thischwa.cf.fluent
+
+
Fluent interface for zone-level operations.
+
+
ZoneOperationsImpl - Class in codes.thischwa.cf.fluent
+
+
Implementation of ZoneOperations for fluent API access to zone-level operations.
+
+
ZoneOperationsImpl(CfDnsClient, ZoneEntity) - Constructor for class codes.thischwa.cf.fluent.ZoneOperationsImpl
+
+
Constructs a ZoneOperationsImpl instance.
+
+
+A B C D E G H I L M N O P R S T U V W Z 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html new file mode 100644 index 0000000..9c0ae44 --- /dev/null +++ b/docs/apidocs/index.html @@ -0,0 +1,81 @@ + + + + +Overview (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

CloudflareDNS-java 0.5.0-SNAPSHOT API

+
+
+
Packages
+
+
Package
+
Description
+ +
+
The base package of CloudflareDNS-java.
+
+ +
+
Fluent API interfaces and implementations for chainable DNS operations.
+
+ +
+
The model of CloudflareDNS-java.
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/jquery-ui.overrides.css b/docs/apidocs/jquery-ui.overrides.css new file mode 100644 index 0000000..facf852 --- /dev/null +++ b/docs/apidocs/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * 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 new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + 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 new file mode 100644 index 0000000..065b8d9 --- /dev/null +++ b/docs/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +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 new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/docs/apidocs/legal/LICENSE @@ -0,0 +1,347 @@ +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 new file mode 100644 index 0000000..a763ec6 --- /dev/null +++ b/docs/apidocs/legal/jquery.md @@ -0,0 +1,26 @@ +## 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 new file mode 100644 index 0000000..46bfbaa --- /dev/null +++ b/docs/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## 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 new file mode 100644 index 0000000..fca8b2e --- /dev/null +++ b/docs/apidocs/member-search-index.js @@ -0,0 +1 @@ +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 new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/docs/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html new file mode 100644 index 0000000..4d59411 --- /dev/null +++ b/docs/apidocs/overview-summary.html @@ -0,0 +1,26 @@ + + + + +CloudflareDNS-java 0.5.0-SNAPSHOT API + + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/docs/apidocs/overview-tree.html b/docs/apidocs/overview-tree.html new file mode 100644 index 0000000..2955923 --- /dev/null +++ b/docs/apidocs/overview-tree.html @@ -0,0 +1,148 @@ + + + + +Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/docs/apidocs/package-search-index.js b/docs/apidocs/package-search-index.js new file mode 100644 index 0000000..9b674d6 --- /dev/null +++ b/docs/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"codes.thischwa.cf"},{"l":"codes.thischwa.cf.fluent"},{"l":"codes.thischwa.cf.model"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/resources/glass.png b/docs/apidocs/resources/glass.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f591f467a1c0c949bbc510156a0c1afb860a6e GIT binary patch literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY literal 0 HcmV?d00001 diff --git a/docs/apidocs/script-dir/jquery-3.7.1.min.js b/docs/apidocs/script-dir/jquery-3.7.1.min.js new file mode 100644 index 0000000..7f37b5d --- /dev/null +++ b/docs/apidocs/script-dir/jquery-3.7.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0{"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(x){x.ui=x.ui||{};x.ui.version="1.14.1";var n,s,C,k,o,l,a,r,u,i,h=0,c=Array.prototype.hasOwnProperty,d=Array.prototype.slice;x.cleanData=(n=x.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=x._data(i,"events"))&&e.remove&&x(i).triggerHandler("remove");n(t)}),x.widget=function(t,i,e){var s,n,o,l,a={},r=t.split(".")[0];return"__proto__"===(t=t.split(".")[1])||"constructor"===t?x.error("Invalid widget name: "+t):(l=r+"-"+t,e||(e=i,i=x.Widget),Array.isArray(e)&&(e=x.extend.apply(null,[{}].concat(e))),x.expr.pseudos[l.toLowerCase()]=function(t){return!!x.data(t,l)},x[r]=x[r]||{},s=x[r][t],n=x[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},x.extend(n,s,{version:e.version,_proto:x.extend({},e),_childConstructors:[]}),(o=new i).options=x.widget.extend({},o.options),x.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"!=typeof s?s:function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}}),n.prototype=x.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(x.each(s._childConstructors,function(t,e){var i=e.prototype;x.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),x.widget.bridge(t,n),n)},x.widget.extend=function(t){for(var e,i,s=d.call(arguments,1),n=0,o=s.length;n",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n{var i=[];n.element.each(function(t,e){x.map(l.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),l._on(x(i),{remove:"_untrackClassesElement"})})(),x(x.uniqueSort(i.get().concat(n.element.get())))):x(i.not(n.element).get()),l.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=x.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;x.each(s.classesElementLookup,function(t,e){-1!==x.inArray(i.target,e)&&(s.classesElementLookup[t]=x(e.not(i.target).get()))}),this._off(x(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,e={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return e.element.toggleClass(this._classes(e),s),this},_on:function(n,o,t){var l,a=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=l=x(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,l=this.widget()),x.each(t,function(t,e){function i(){if(n||!0!==a.options.disabled&&!x(this).hasClass("ui-state-disabled"))return("string"==typeof e?a[e]:e).apply(a,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||x.guid++);var t=t.match(/^([\w:-]*)\s*(.*)$/),s=t[1]+a.eventNamespace,t=t[2];t?l.on(s,t,i):o.on(s,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=x(this.bindings.not(t).get()),this.focusable=x(this.focusable.not(t).get()),this.hoverable=x(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(x(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(x(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=x.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},x.each({show:"fadeIn",hide:"fadeOut"},function(o,l){x.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||l:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!x.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&x.effects&&x.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){x(this)[o](),i&&i.call(e[0]),t()})}}),x.widget;function E(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function T(t,e){return parseInt(x.css(t,e),10)||0}function W(t){return null!=t&&t===t.window}C=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,a=/[\+\-]\d+(\.[\d]+)?%?/,r=/^\w+/,u=/%$/,i=x.fn.position,x.position={scrollbarWidth:function(){var t,e,i;return void 0!==s?s:(i=(e=x("
")).children()[0],x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i)},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(k(s),k(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})):i.apply(this,arguments)},x.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,s=s.width,o=t.left-e.collisionPosition.marginLeft,l=n-o,a=o+e.collisionWidth-s-n;s",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(this.document[0].activeElement);!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active)&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]!==i[0])||i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),t=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(t,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),e=(i=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(i,"ui-menu-item")._addClass(e,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(e=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,i=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-e-i,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&"true"===this.element.prop("contentEditable"),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)i=!1,this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault();else if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){n?(n=!1,t.preventDefault()):this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent)&&/^mouse/.test(t.originalEvent.type)?(this.menu.blur(),this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)})):(s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100)))},menuselect:function(t,e){var e=e.item.data("ui-autocomplete-item"),i=this.previous;this.element[0]!==this.document[0].activeElement&&(this.element.trigger("focus"),this.previous=i),!1!==this._trigger("select",t,{item:e})&&this._value(e.value),this.term=this._value(),this.close(t),this.selectedItem=e}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=(t=(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))&&t[0]?t:this.element.closest(".ui-front, dialog")).length?t:this.document[0].body},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur()):this.menu[t](e):this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}}),x.ui.autocomplete}); \ No newline at end of file diff --git a/docs/apidocs/script.js b/docs/apidocs/script.js new file mode 100644 index 0000000..73cd8fa --- /dev/null +++ b/docs/apidocs/script.js @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2013, 2020, 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. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); + elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.getElementById(tableId + '.tabpanel') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} + +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + contentDiv.addEventListener("scroll", function(e) { + var timeoutID; + if (!timeoutID) { + timeoutID = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + timeoutID = null; + }, 100); + } + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/docs/apidocs/search.js b/docs/apidocs/search.js new file mode 100644 index 0000000..db3b2f4 --- /dev/null +++ b/docs/apidocs/search.js @@ -0,0 +1,354 @@ +/* + * Copyright (c) 2015, 2020, 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. + */ + +var noResult = {l: "No results found"}; +var loading = {l: "Loading search index..."}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Classes and Interfaces"; +var catMembers = "Members"; +var catSearchTags = "Search Tags"; +var highlight = "$&"; +var searchPattern = ""; +var fallbackPattern = ""; +var RANKING_THRESHOLD = 2; +var NO_MATCH = 0xffff; +var MIN_RESULTS = 3; +var MAX_RESULTS = 500; +var UNNAMED = ""; +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(item, matcher, fallbackMatcher) { + var escapedItem = escapeHtml(item); + var highlighted = escapedItem.replace(matcher, highlight); + if (highlighted === escapedItem) { + highlighted = escapedItem.replace(fallbackMatcher, highlight) + } + return highlighted; +} +function getURLPrefix(ui) { + var urlPrefix=""; + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if (ui.item.category === catTypes || ui.item.category === catMembers) { + if (ui.item.m) { + urlPrefix = ui.item.m + slash; + } else { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p === item.l) { + urlPrefix = item.m + slash; + } + }); + } + } + return urlPrefix; +} +function createSearchPattern(term) { + var pattern = ""; + var isWordToken = false; + term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { + if (index > 0) { + // whitespace between identifiers is significant + pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; + } + var tokens = w.split(/(?=[A-Z,.()<>[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + if (s === "") { + continue; + } + pattern += $.ui.autocomplete.escapeRegex(s); + isWordToken = /\w$/.test(s); + if (isWordToken) { + pattern += "([a-z0-9_$<>\\[\\]]*?)"; + } + } + }); + return pattern; +} +function createMatcher(pattern, flags) { + var isCamelCase = /[A-Z]/.test(pattern); + return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); +} +var watermark = 'Search'; +$(function() { + var search = $("#search-input"); + var reset = $("#reset-button"); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + search.val(watermark).addClass('watermark'); + search.blur(function() { + if ($(this).val().length === 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + search.on('click keydown paste', function() { + if ($(this).val() === watermark) { + $(this).val('').removeClass('watermark'); + } + }); + reset.click(function() { + search.val('').focus(); + }); + search.focus()[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this; + var currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + item.category + "
  • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "result-item"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "result-item"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + var matcher = createMatcher(escapeHtml(searchPattern), "g"); + var fallbackMatcher = new RegExp(fallbackPattern, "gi") + if (item.category === catModules) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catPackages) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catTypes) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catMembers) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else { + label = item.l; + } + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + if (item.category === catSearchTags && item.h) { + if (item.d) { + div.html(label + " (" + item.h + ")
    " + + item.d + "
    "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + if (item.m) { + div.html(item.m + "/" + label); + } else { + div.html(label); + } + } + return li; + } +}); +function rankMatch(match, category) { + if (!match) { + return NO_MATCH; + } + var index = match.index; + var input = match.input; + var leftBoundaryMatch = 2; + var periferalMatch = 0; + // make sure match is anchored on a left word boundary + if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { + leftBoundaryMatch = 0; + } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { + leftBoundaryMatch = 1; + } + var matchEnd = index + match[0].length; + var leftParen = input.indexOf("("); + var endOfName = leftParen > -1 ? leftParen : input.length; + // exclude peripheral matches + if (category !== catModules && category !== catSearchTags) { + var delim = category === catPackages ? "/" : "."; + if (leftParen > -1 && leftParen < index) { + periferalMatch += 2; + } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { + periferalMatch += 2; + } + } + var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match + for (var i = 1; i < match.length; i++) { + // lower ranking if parts of the name are missing + if (match[i]) + delta += match[i].length; + } + if (category === catTypes) { + // lower ranking if a type name contains unmatched camel-case parts + if (/[A-Z]/.test(input.substring(matchEnd))) + delta += 5; + if (/[A-Z]/.test(input.substring(0, index))) + delta += 5; + } + return leftBoundaryMatch + periferalMatch + (delta / 200); + +} +function doSearch(request, response) { + var result = []; + searchPattern = createSearchPattern(request.term); + fallbackPattern = createSearchPattern(request.term.toLowerCase()); + if (searchPattern === "") { + return this.close(); + } + var camelCaseMatcher = createMatcher(searchPattern, ""); + var fallbackMatcher = new RegExp(fallbackPattern, "i"); + + function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { + if (indexArray) { + var newResults = []; + $.each(indexArray, function (i, item) { + item.category = category; + var ranking = rankMatch(matcher.exec(nameFunc(item)), category); + if (ranking < RANKING_THRESHOLD) { + newResults.push({ranking: ranking, item: item}); + } + return newResults.length <= MAX_RESULTS; + }); + return newResults.sort(function(e1, e2) { + return e1.ranking - e2.ranking; + }).map(function(e) { + return e.item; + }); + } + return []; + } + function searchIndex(indexArray, category, nameFunc) { + var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); + result = result.concat(primaryResults); + if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { + var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); + result = result.concat(secondaryResults.filter(function (item) { + return primaryResults.indexOf(item) === -1; + })); + } + } + + searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); + searchIndex(packageSearchIndex, catPackages, function(item) { + return (item.m && request.term.indexOf("/") > -1) + ? (item.m + "/" + item.l) : item.l; + }); + searchIndex(typeSearchIndex, catTypes, function(item) { + return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; + }); + searchIndex(memberSearchIndex, catMembers, function(item) { + return request.term.indexOf(".") > -1 + ? item.p + "." + item.c + "." + item.l : item.l; + }); + searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); + + if (!indexFilesLoaded()) { + updateSearchResults = function() { + doSearch(request, response); + } + result.unshift(loading); + } else { + updateSearchResults = function() {}; + } + response(result); +} +$(function() { + $("#search-input").catcomplete({ + minLength: 1, + delay: 300, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.category) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + url += "module-summary.html"; + } else if (ui.item.category === catPackages) { + if (ui.item.u) { + url = ui.item.u; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.u) { + url = ui.item.u; + } else if (ui.item.p === UNNAMED) { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === UNNAMED) { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.u) { + url += ui.item.u; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search-input").focus(); + } + } + }); +}); diff --git a/docs/apidocs/serialized-form.html b/docs/apidocs/serialized-form.html new file mode 100644 index 0000000..1de03e7 --- /dev/null +++ b/docs/apidocs/serialized-form.html @@ -0,0 +1,87 @@ + + + + +Serialized Form (CloudflareDNS-java 0.5.0-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Serialized Form

    +
    + +
    +
    +
    + +
    +
    +
    + + diff --git a/docs/apidocs/stylesheet.css b/docs/apidocs/stylesheet.css new file mode 100644 index 0000000..4a576bd --- /dev/null +++ b/docs/apidocs/stylesheet.css @@ -0,0 +1,869 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; +} +h4 { + font-size:15px; +} +h5 { + font-size:14px; +} +h6 { + font-size:13px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +.summary-table dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0; + overflow:hidden; +} +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:11px; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + min-height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.sub-nav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.sub-nav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { + list-style:none; + float:left; + padding-top:10px; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.nav-bar-cell1-rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header and footer. + */ +.title { + color:#2c4557; + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; +} +ul.see-list li { + display: inline; +} +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0; + padding-top:10px; + padding-left:1px; + margin:0; + white-space:pre; +} +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { + color:#FFFFFF; +} +.caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:#dee3e9; + font-weight: bold; +} +.col-first, .col-first { + font-size:13px; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:13px; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { + font-weight:bold; +} +.table-sub-heading-color { + background-color:#EEEEFF; +} +.even-row-color, .even-row-color .table-header { + background-color:#FFFFFF; +} +.odd-row-color, .odd-row-color .table-header { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.deprecated-content { + margin:0; + padding:10px 0; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:0 10px 5px 0; + color:#474747; +} +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } +} diff --git a/docs/apidocs/tag-search-index.js b/docs/apidocs/tag-search-index.js new file mode 100644 index 0000000..bf10aaf --- /dev/null +++ b/docs/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/type-search-index.js b/docs/apidocs/type-search-index.js new file mode 100644 index 0000000..2a19781 --- /dev/null +++ b/docs/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"p":"codes.thischwa.cf.model","l":"AbstractEntity"},{"p":"codes.thischwa.cf.model","l":"AbstractMultipleResponse"},{"p":"codes.thischwa.cf.model","l":"AbstractResponse"},{"p":"codes.thischwa.cf.model","l":"AbstractSingleResponse"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"codes.thischwa.cf.model","l":"BatchEntry"},{"p":"codes.thischwa.cf.model","l":"BatchResponse"},{"p":"codes.thischwa.cf","l":"CfDnsClient"},{"p":"codes.thischwa.cf","l":"CfDnsClientBuilder"},{"p":"codes.thischwa.cf","l":"CfRequest"},{"p":"codes.thischwa.cf","l":"CloudflareApiException"},{"p":"codes.thischwa.cf","l":"CloudflareNotFoundException"},{"p":"codes.thischwa.cf.model","l":"ResponseResultInfo.Error"},{"p":"codes.thischwa.cf.model","l":"PagingRequest"},{"p":"codes.thischwa.cf.model","l":"RecordEntity"},{"p":"codes.thischwa.cf.model","l":"RecordMultipleResponse"},{"p":"codes.thischwa.cf.fluent","l":"RecordOperations"},{"p":"codes.thischwa.cf.fluent","l":"RecordOperationsImpl"},{"p":"codes.thischwa.cf.model","l":"RecordSingleResponse"},{"p":"codes.thischwa.cf.model","l":"RecordType"},{"p":"codes.thischwa.cf.model","l":"ResponseEntity"},{"p":"codes.thischwa.cf.model","l":"ResponseResultInfo"},{"p":"codes.thischwa.cf.model","l":"ResultInfo"},{"p":"codes.thischwa.cf.model","l":"ZoneEntity"},{"p":"codes.thischwa.cf.model","l":"ZoneMultipleResponse"},{"p":"codes.thischwa.cf.fluent","l":"ZoneOperations"},{"p":"codes.thischwa.cf.fluent","l":"ZoneOperationsImpl"}];updateSearchResults(); \ No newline at end of file diff --git a/pom.xml b/pom.xml index 4ab992e..68f7132 100644 --- a/pom.xml +++ b/pom.xml @@ -275,4 +275,33 @@ + + + + javadoc + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + generate-javadoc + prepare-package + + javadoc + + + ${project.basedir}/docs + ${project.build.directory}/delombok + + + + + + + + + From 0a47bb633815ca80f50847b5102263fc8b62f4e3 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 28 Jun 2026 19:09:53 +0200 Subject: [PATCH 10/10] remove javadoc --- docs/apidocs/allclasses-index.html | 185 ---- docs/apidocs/allpackages-index.html | 79 -- .../codes/thischwa/cf/CfDnsClient.html | 649 ------------- .../codes/thischwa/cf/CfDnsClientBuilder.html | 312 ------ docs/apidocs/codes/thischwa/cf/CfRequest.html | 324 ------- .../thischwa/cf/CloudflareApiException.html | 183 ---- .../cf/CloudflareNotFoundException.html | 166 ---- .../thischwa/cf/class-use/CfDnsClient.html | 120 --- .../cf/class-use/CfDnsClientBuilder.html | 108 --- .../thischwa/cf/class-use/CfRequest.html | 97 -- .../cf/class-use/CloudflareApiException.html | 283 ------ .../CloudflareNotFoundException.html | 62 -- .../thischwa/cf/fluent/RecordOperations.html | 212 ----- .../cf/fluent/RecordOperationsImpl.html | 275 ------ .../thischwa/cf/fluent/ZoneOperations.html | 194 ---- .../cf/fluent/ZoneOperationsImpl.html | 247 ----- .../cf/fluent/class-use/RecordOperations.html | 115 --- .../class-use/RecordOperationsImpl.html | 62 -- .../cf/fluent/class-use/ZoneOperations.html | 111 --- .../fluent/class-use/ZoneOperationsImpl.html | 62 -- .../thischwa/cf/fluent/package-summary.html | 153 --- .../thischwa/cf/fluent/package-tree.html | 84 -- .../codes/thischwa/cf/fluent/package-use.html | 109 --- .../thischwa/cf/model/AbstractEntity.html | 246 ----- .../cf/model/AbstractMultipleResponse.html | 246 ----- .../thischwa/cf/model/AbstractResponse.html | 239 ----- .../cf/model/AbstractSingleResponse.html | 247 ----- .../codes/thischwa/cf/model/BatchEntry.html | 322 ------- .../thischwa/cf/model/BatchResponse.html | 119 --- .../thischwa/cf/model/PagingRequest.html | 299 ------ .../codes/thischwa/cf/model/RecordEntity.html | 544 ----------- .../cf/model/RecordMultipleResponse.html | 151 --- .../cf/model/RecordSingleResponse.html | 152 --- .../codes/thischwa/cf/model/RecordType.html | 561 ----------- .../thischwa/cf/model/ResponseEntity.html | 144 --- .../cf/model/ResponseResultInfo.Error.html | 272 ------ .../thischwa/cf/model/ResponseResultInfo.html | 283 ------ .../codes/thischwa/cf/model/ResultInfo.html | 340 ------- .../codes/thischwa/cf/model/ZoneEntity.html | 419 -------- .../cf/model/ZoneMultipleResponse.html | 149 --- .../cf/model/class-use/AbstractEntity.html | 101 -- .../class-use/AbstractMultipleResponse.html | 97 -- .../cf/model/class-use/AbstractResponse.html | 119 --- .../class-use/AbstractSingleResponse.html | 97 -- .../cf/model/class-use/BatchEntry.html | 95 -- .../cf/model/class-use/BatchResponse.html | 62 -- .../cf/model/class-use/PagingRequest.html | 124 --- .../cf/model/class-use/RecordEntity.html | 332 ------- .../class-use/RecordMultipleResponse.html | 62 -- .../model/class-use/RecordSingleResponse.html | 62 -- .../cf/model/class-use/RecordType.html | 231 ----- .../cf/model/class-use/ResponseEntity.html | 123 --- .../class-use/ResponseResultInfo.Error.html | 98 -- .../model/class-use/ResponseResultInfo.html | 98 -- .../cf/model/class-use/ResultInfo.html | 98 -- .../cf/model/class-use/ZoneEntity.html | 230 ----- .../model/class-use/ZoneMultipleResponse.html | 62 -- .../thischwa/cf/model/package-summary.html | 183 ---- .../codes/thischwa/cf/model/package-tree.html | 126 --- .../codes/thischwa/cf/model/package-use.html | 188 ---- .../codes/thischwa/cf/package-summary.html | 133 --- .../codes/thischwa/cf/package-tree.html | 104 -- .../codes/thischwa/cf/package-use.html | 122 --- docs/apidocs/constant-values.html | 84 -- docs/apidocs/element-list | 3 - docs/apidocs/help-doc.html | 196 ---- docs/apidocs/index-all.html | 900 ------------------ docs/apidocs/index.html | 81 -- docs/apidocs/jquery-ui.overrides.css | 35 - docs/apidocs/legal/ADDITIONAL_LICENSE_INFO | 37 - docs/apidocs/legal/ASSEMBLY_EXCEPTION | 27 - docs/apidocs/legal/LICENSE | 347 ------- docs/apidocs/legal/jquery.md | 26 - docs/apidocs/legal/jqueryUI.md | 49 - docs/apidocs/member-search-index.js | 1 - docs/apidocs/module-search-index.js | 1 - docs/apidocs/overview-summary.html | 26 - docs/apidocs/overview-tree.html | 148 --- docs/apidocs/package-search-index.js | 1 - docs/apidocs/resources/glass.png | Bin 499 -> 0 bytes docs/apidocs/resources/x.png | Bin 394 -> 0 bytes docs/apidocs/script-dir/jquery-3.7.1.min.js | 2 - docs/apidocs/script-dir/jquery-ui.min.css | 6 - docs/apidocs/script-dir/jquery-ui.min.js | 6 - docs/apidocs/script.js | 132 --- docs/apidocs/search.js | 354 ------- docs/apidocs/serialized-form.html | 87 -- docs/apidocs/stylesheet.css | 869 ----------------- docs/apidocs/tag-search-index.js | 1 - docs/apidocs/type-search-index.js | 1 - docs/index.html | 15 - pom.xml | 29 - 92 files changed, 15336 deletions(-) delete mode 100644 docs/apidocs/allclasses-index.html delete mode 100644 docs/apidocs/allpackages-index.html delete mode 100644 docs/apidocs/codes/thischwa/cf/CfDnsClient.html delete mode 100644 docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html delete mode 100644 docs/apidocs/codes/thischwa/cf/CfRequest.html delete mode 100644 docs/apidocs/codes/thischwa/cf/CloudflareApiException.html delete mode 100644 docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html delete mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html delete mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html delete mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html delete mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html delete mode 100644 docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-summary.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-tree.html delete mode 100644 docs/apidocs/codes/thischwa/cf/fluent/package-use.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/BatchEntry.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/BatchResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/PagingRequest.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/RecordType.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ResultInfo.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/package-summary.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/package-tree.html delete mode 100644 docs/apidocs/codes/thischwa/cf/model/package-use.html delete mode 100644 docs/apidocs/codes/thischwa/cf/package-summary.html delete mode 100644 docs/apidocs/codes/thischwa/cf/package-tree.html delete mode 100644 docs/apidocs/codes/thischwa/cf/package-use.html delete mode 100644 docs/apidocs/constant-values.html delete mode 100644 docs/apidocs/element-list delete mode 100644 docs/apidocs/help-doc.html delete mode 100644 docs/apidocs/index-all.html delete mode 100644 docs/apidocs/index.html delete mode 100644 docs/apidocs/jquery-ui.overrides.css delete mode 100644 docs/apidocs/legal/ADDITIONAL_LICENSE_INFO delete mode 100644 docs/apidocs/legal/ASSEMBLY_EXCEPTION delete mode 100644 docs/apidocs/legal/LICENSE delete mode 100644 docs/apidocs/legal/jquery.md delete mode 100644 docs/apidocs/legal/jqueryUI.md delete mode 100644 docs/apidocs/member-search-index.js delete mode 100644 docs/apidocs/module-search-index.js delete mode 100644 docs/apidocs/overview-summary.html delete mode 100644 docs/apidocs/overview-tree.html delete mode 100644 docs/apidocs/package-search-index.js delete mode 100644 docs/apidocs/resources/glass.png delete mode 100644 docs/apidocs/resources/x.png delete mode 100644 docs/apidocs/script-dir/jquery-3.7.1.min.js delete mode 100644 docs/apidocs/script-dir/jquery-ui.min.css delete mode 100644 docs/apidocs/script-dir/jquery-ui.min.js delete mode 100644 docs/apidocs/script.js delete mode 100644 docs/apidocs/search.js delete mode 100644 docs/apidocs/serialized-form.html delete mode 100644 docs/apidocs/stylesheet.css delete mode 100644 docs/apidocs/tag-search-index.js delete mode 100644 docs/apidocs/type-search-index.js delete mode 100644 docs/index.html diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html deleted file mode 100644 index 1695b88..0000000 --- a/docs/apidocs/allclasses-index.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - -All Classes and Interfaces (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    All Classes and Interfaces

    -
    -
    -
    -
    -
    -
    Class
    -
    Description
    - -
    -
    Represents a base abstract entity class for modeling domain objects with a unique identifier.
    -
    - -
    -
    Abstract base class for response models that contain multiple result entries.
    -
    - -
    -
    Abstract base class for API response models.
    -
    - -
    -
    Represents a base abstract response model for handling single response entities within an API - response.
    -
    - -
    -
    Represents a batch entry containing different types of operations on getRecord entities.
    -
    - -
    -
    Represents a response that contains a single BatchEntry as the result.
    -
    - -
    -
    CfDnsClient is a client interface to interact with Cloudflare DNS service.
    -
    - -
    -
    Builder class for configuring and creating instances of CfDnsClient.
    -
    - -
    -
    Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a - cohesive and reusable manner.
    -
    - -
    -
    Represents a custom exception for errors encountered while interacting with the Cloudflare API.
    -
    - -
    -
    This exception is thrown to indicate that a requested resource was not found during interaction - with the Cloudflare API.
    -
    - -
    -
    Represents a request model for paginated data.
    -
    - -
    -
    Represents a DNS getRecord entity within a specific zone.
    -
    - -
    -
    Represents the API response of the Cloudflare API containing multiple RecordEntity - instances.
    -
    - -
    -
    Fluent interface for getRecord-level operations.
    -
    - -
    -
    Implementation of RecordOperations for fluent API access to getRecord-level operations.
    -
    - -
    -
    Represents the API response of the Cloudflare API containing a single RecordEntity - instance.
    -
    - -
    -
    Enum representing various DNS getRecord types.
    -
    - -
    -
    Represents a contract for entities that have a unique identifier.
    -
    - -
    -
    Represents the result of a response with metadata about its success and associated messages or - errors.
    -
    - -
    -
    Represents an error with a specific code and message.
    -
    - -
    -
    Represents metadata for paginated results.
    -
    - -
    -
    Represents a DNS zone entity in the Cloudflare DNS system.
    -
    - -
    -
    Represents a response model that contains multiple ZoneEntity instances.
    -
    - -
    -
    Fluent interface for zone-level operations.
    -
    - -
    -
    Implementation of ZoneOperations for fluent API access to zone-level operations.
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html deleted file mode 100644 index 67cabe8..0000000 --- a/docs/apidocs/allpackages-index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - -All Packages (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    All Packages

    -
    -
    Package Summary
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/CfDnsClient.html b/docs/apidocs/codes/thischwa/cf/CfDnsClient.html deleted file mode 100644 index f61b386..0000000 --- a/docs/apidocs/codes/thischwa/cf/CfDnsClient.html +++ /dev/null @@ -1,649 +0,0 @@ - - - - -CfDnsClient (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class CfDnsClient

    -
    -
    java.lang.Object -
    codes.thischwa.cf.CfDnsClient
    -
    -
    -
    -
    public class CfDnsClient -extends Object
    -
    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());
    - 
    - -

    Example with email/key authentication (legacy): -

    
    - CfDnsClient cfDnsClient = new CfDnsClientBuilder()
    -     .withEmailKeyAuth("email@example.com", "your-api-key")
    -     .build();
    - 
    - -

    Example with exception throwing enabled: -

    
    - // Throws exception when results are empty
    - CfDnsClient cfDnsClient = new CfDnsClientBuilder()
    -     .withApiTokenAuth("your-api-token")
    -     .withEmptyResultThrowsException(true)
    -     .build();
    - 
    - -

    Example with custom base URL: -

    
    - CfDnsClient cfDnsClient = new CfDnsClientBuilder()
    -     .withApiTokenAuth("your-api-token")
    -     .withBaseUrl("https://custom-api.example.com")
    -     .build();
    - 
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        groupRecordsByFqdn

        -
        public static Map<String,List<RecordEntity>> groupRecordsByFqdn(List<RecordEntity> records)
        -
        Groups a list of DNS records by their fully qualified domain name (FQDN).
        -
        -
        Parameters:
        -
        records - A list of RecordEntity objects to be grouped by FQDN.
        -
        Returns:
        -
        A map where the key is the FQDN (name field) and the value is a list of RecordEntity - objects that share that FQDN.
        -
        -
        -
      • -
      • -
        -

        zone

        -
        public ZoneOperations zone(String zoneName) - throws CloudflareApiException
        -
        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. - -

        Example: -

        
        - client.zone("example.com")
        -       .getRecord("api")
        -       .create(RecordType.A, "192.168.1.1", 60);
        - 
        -
        -
        Parameters:
        -
        zoneName - the name of the DNS zone (e.g., "example.com")
        -
        Returns:
        -
        a ZoneOperations instance for chaining operations
        -
        Throws:
        -
        CloudflareApiException - if the zone cannot be found or accessed
        -
        -
        -
      • -
      • -
        -

        zoneList

        -
        public List<ZoneEntity> zoneList() - throws CloudflareApiException
        -
        Retrieves a list of all zones from the Cloudflare API.
        -
        -
        Returns:
        -
        A list of ZoneEntity objects representing the zones retrieved from the Cloudflare API.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs during the API request or response handling.
        -
        -
        -
      • -
      • -
        -

        zoneList

        -
        public List<ZoneEntity> zoneList(PagingRequest pagingRequest) - throws CloudflareApiException
        -
        Retrieves a list of all DNS zones using the provided paging request parameters.
        -
        -
        Parameters:
        -
        pagingRequest - the pagination request object containing parameters for paging and - filtering zone data
        -
        Returns:
        -
        a list of ZoneEntity objects representing the DNS zones retrieved from the API
        -
        Throws:
        -
        CloudflareApiException - if there is an error during the API request or response - processing
        -
        -
        -
      • -
      • -
        -

        zoneGet

        -
        public ZoneEntity zoneGet(String name) - throws CloudflareApiException
        -
        Retrieves detailed information about a specific zone by its name.
        -
        -
        Parameters:
        -
        name - The name of the zone to retrieve information for.
        -
        Returns:
        -
        A ZoneEntity object that contains details of the specified zone.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs while making the API request or processing - the response.
        -
        -
        -
      • -
      • -
        -

        recordList

        -
        public List<RecordEntity> recordList(ZoneEntity zone) - throws CloudflareApiException
        -
        Retrieves a list of DNS records for a specified zone, with optional paging support.
        -
        -
        Parameters:
        -
        zone - The zone entity containing information about the target zone.
        -
        Returns:
        -
        A list of RecordEntity objects representing the DNS records of the specified zone.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs during the API request or response processing.
        -
        -
        -
      • -
      • -
        -

        recordList

        -
        public List<RecordEntity> recordList(ZoneEntity zone, - @Nullable - @Nullable PagingRequest pagingRequest) - throws CloudflareApiException
        -
        Retrieves a list of DNS records for a specified zone, with optional paging support.
        -
        -
        Parameters:
        -
        zone - The zone entity containing information about the target zone.
        -
        pagingRequest - The paging request containing parameters such as page size and number.
        -
        Returns:
        -
        A list of RecordEntity objects representing the DNS records of the specified zone.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs during the API request or response processing.
        -
        -
        -
      • -
      • -
        -

        recordList

        -
        public List<RecordEntity> recordList(ZoneEntity zone, - String sld) - throws CloudflareApiException
        -
        Retrieves DNS records for the specified second-level domain (SLD) within a zone.
        -
        -
        Parameters:
        -
        zone - the zone entity representing the DNS zone to query
        -
        sld - the second-level domain (SLD) to filter the records
        -
        Returns:
        -
        a list of RecordEntity objects that match the specified SLD within the zone
        -
        Throws:
        -
        CloudflareNotFoundException - if the specified SLD is not found in the zone
        -
        CloudflareApiException - if an error occurs while interacting with the Cloudflare API
        -
        -
        -
      • -
      • -
        -

        recordList

        -
        public List<RecordEntity> recordList(ZoneEntity zone, - String sld, - @Nullable - @Nullable RecordType... types) - throws CloudflareApiException
        -
        Retrieves DNS records for the specified second-level domain (SLD) within a zone. - Optionally, filters by one or more DNS getRecord types.
        -
        -
        Parameters:
        -
        zone - The zone entity containing information about the domain zone.
        -
        sld - The second-level domain (SLD) for which to retrieve DNS records.
        -
        types - Optional parameter specifying one or more DNS getRecord types to filter the results.
        -
        Returns:
        -
        A list of RecordEntity objects representing the DNS records for the specified domain.
        -
        Throws:
        -
        CloudflareNotFoundException - if the specified SLD is not found in the zone
        -
        CloudflareApiException - if an error occurs while interacting with the Cloudflare API
        -
        -
        -
      • -
      • -
        -

        recordList

        -
        public List<RecordEntity> recordList(ZoneEntity zone, - RecordType... types) - throws CloudflareApiException
        -
        Retrieves a list of all DNS records for a given zone. - Optionally, filters by one or more DNS getRecord types.
        -
        -
        Parameters:
        -
        zone - The zone entity containing information about the domain zone.
        -
        types - Optional parameter specifying one or more DNS getRecord types to filter the results.
        -
        Returns:
        -
        A list of RecordEntity objects representing the DNS records for the specified zone.
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while interacting with the Cloudflare API
        -
        -
        -
      • -
      • -
        -

        recordCreateSld

        -
        public RecordEntity recordCreateSld(ZoneEntity zone, - String sld, - int ttl, - RecordType type, - String content) - throws CloudflareApiException
        -
        Creates a new DNS getRecord for a given second-level domain (SLD) within the specified zone.
        -
        -
        Parameters:
        -
        zone - The ZoneEntity representing the DNS zone where the getRecord is to be created.
        -
        sld - The second-level domain (SLD) for which the DNS getRecord is being created.
        -
        ttl - The time-to-live (TTL) value for the DNS getRecord in seconds.
        -
        type - The RecordType specifying the type of the DNS getRecord (e.g., A, AAAA, CNAME).
        -
        content - The content of the DNS getRecord (e.g., IP address for A/AAAA records, target - domain for CNAME).
        -
        Returns:
        -
        The created RecordEntity object containing details of the newly created DNS getRecord.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs while communicating with the Cloudflare API - or creating the getRecord.
        -
        -
        -
      • -
      • -
        -

        recordCreate

        -
        public RecordEntity recordCreate(ZoneEntity zone, - String name, - int ttl, - RecordType type, - String content) - throws CloudflareApiException
        -
        Creates a DNS getRecord in the specified DNS zone with the provided details.
        -
        -
        Parameters:
        -
        zone - the DNS zone in which the getRecord will be created
        -
        name - the name of the DNS getRecord (e.g., www.example.com)
        -
        ttl - the time-to-live (TTL) value for the DNS getRecord
        -
        type - the type of the DNS getRecord (e.g., A, AAAA, CNAME)
        -
        content - the content or value of the DNS getRecord
        -
        Returns:
        -
        the created DNS getRecord as a RecordEntity object
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while interacting with the Cloudflare API
        -
        -
        -
      • -
      • -
        -

        recordCreate

        -
        public RecordEntity recordCreate(ZoneEntity zone, - RecordEntity rec) - throws CloudflareApiException
        -
        Creates a new DNS getRecord in the specified zone using the Cloudflare API.
        -
        -
        Parameters:
        -
        zone - The zone entity where the getRecord will be created. Contains details such as zone - ID.
        -
        rec - The getRecord entity representing the DNS getRecord to be created, including its - attributes.
        -
        Returns:
        -
        The created getRecord entity as returned by the Cloudflare API.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs while interacting with the Cloudflare API.
        -
        -
        -
      • -
      • -
        -

        recordDelete

        -
        public boolean recordDelete(ZoneEntity zone, - RecordEntity rec) - throws CloudflareApiException
        -
        Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
        -
        -
        Parameters:
        -
        zone - The zone entity that specifies the zone in which the getRecord exists.
        -
        rec - The getRecord entity that represents the DNS getRecord to be deleted.
        -
        Returns:
        -
        true if the DNS getRecord was successfully deleted; false otherwise.
        -
        Throws:
        -
        CloudflareApiException - if there is an issue during the API communication, or the - request fails for any reason.
        -
        -
        -
      • -
      • -
        -

        recordDelete

        -
        public boolean recordDelete(ZoneEntity zone, - String id) - throws CloudflareApiException
        -
        Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
        -
        -
        Parameters:
        -
        zone - The zone entity that specifies the zone in which the getRecord exists.
        -
        id - The getRecord entity that represents the DNS getRecord to be deleted.
        -
        Returns:
        -
        true if the DNS getRecord was successfully deleted; false otherwise.
        -
        Throws:
        -
        CloudflareApiException - if there is an issue during the API communication or the request - fails for any reason.
        -
        -
        -
      • -
      • -
        -

        recordUpdate

        -
        public RecordEntity recordUpdate(ZoneEntity zone, - RecordEntity rec) - throws CloudflareApiException
        -
        Updates an existing DNS getRecord in a specified Cloudflare zone.
        -
        -
        Parameters:
        -
        zone - the zone entity containing the ID of the target zone
        -
        rec - the getRecord entity containing the ID of the DNS getRecord to be updated and its updated - data
        -
        Returns:
        -
        the updated getRecord entity as returned by the Cloudflare API
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while interacting with the Cloudflare API
        -
        -
        -
      • -
      • -
        -

        recordDeleteTypeIfExists

        -
        public void recordDeleteTypeIfExists(ZoneEntity zone, - String sld, - RecordType... recordTypes) - throws CloudflareApiException
        -
        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.
        -
        Throws:
        -
        CloudflareApiException - If an error occurs during API communication.
        -
        -
        -
      • -
      • -
        -

        recordBatch

        -
        public BatchEntry recordBatch(ZoneEntity zone, - @Nullable - @Nullable List<RecordEntity> postRecords, - @Nullable - @Nullable List<RecordEntity> putRecords, - @Nullable - @Nullable List<RecordEntity> patchRecords, - @Nullable - @Nullable List<RecordEntity> deleteRecords) - throws CloudflareApiException
        -
        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.
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html b/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html deleted file mode 100644 index e372870..0000000 --- a/docs/apidocs/codes/thischwa/cf/CfDnsClientBuilder.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - -CfDnsClientBuilder (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class CfDnsClientBuilder

    -
    -
    java.lang.Object -
    codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    -
    -
    public class CfDnsClientBuilder -extends Object
    -
    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.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Field Details

      -
        -
      • -
        -

        DEFAULT_BASEURL

        -
        public static final String DEFAULT_BASEURL
        -
        The default base URL for the Cloudflare v4 API requests made by the CfDnsClient.
        -
        -
        See Also:
        -
        - -
        -
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        CfDnsClientBuilder

        -
        public CfDnsClientBuilder()
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        withEmptyResultThrowsException

        -
        public CfDnsClientBuilder withEmptyResultThrowsException(boolean emptyResultThrowsException)
        -
        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.
        -
        -
        -
      • -
      • -
        -

        withBaseUrl

        -
        public CfDnsClientBuilder withBaseUrl(String baseUrl)
        -
        Sets the base URL to be used by the CfDnsClient. - This method allows configuring the base URL for API requests, overriding any default value.
        -
        -
        Parameters:
        -
        baseUrl - the base URL to be used for API requests
        -
        Returns:
        -
        the current instance of CfDnsClientBuilder, enabling method chaining
        -
        -
        -
      • -
      • -
        -

        withApiTokenAuth

        -
        public CfDnsClientBuilder withApiTokenAuth(String apiToken)
        -
        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.
        -
        Throws:
        -
        IllegalArgumentException - if the apiToken is null or blank.
        -
        -
        -
      • -
      • -
        -

        withEmailKeyAuth

        -
        public CfDnsClientBuilder withEmailKeyAuth(String authEmail, - String authKey)
        -
        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.
        -
        Throws:
        -
        IllegalArgumentException - if authEmail or authKey is null or blank.
        -
        -
        -
      • -
      • -
        -

        build

        -
        public CfDnsClient build()
        -
        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.
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/CfRequest.html b/docs/apidocs/codes/thischwa/cf/CfRequest.html deleted file mode 100644 index 011cfd7..0000000 --- a/docs/apidocs/codes/thischwa/cf/CfRequest.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - -CfRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Enum Class CfRequest

    -
    -
    java.lang.Object -
    java.lang.Enum<CfRequest> -
    codes.thischwa.cf.CfRequest
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    Serializable, Comparable<CfRequest>, Constable
    -
    -
    -
    public enum CfRequest -extends Enum<CfRequest>
    -
    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

      -Enum.EnumDesc<E extends Enum<E>>
      -
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
      -
      Represents the API endpoint path for performing batch operations on DNS records within a specific zone.
      -
      - -
      -
      Represents the API endpoint path for creating a new DNS getRecord within a specific DNS zone.
      -
      - -
      -
      Represents the API endpoint path for deleting an existing DNS getRecord within a specific DNS - zone.
      -
      - -
      -
      Represents the API endpoint path for retrieving information about DNS records within a - specific DNS zone.
      -
      - -
      -
      Represents the API endpoint path for retrieving information about a DNS getRecord within a - specific DNS zone by its name.
      -
      - -
      -
      Represents the API endpoint path for updating an existing DNS getRecord within a specific DNS - zone.
      -
      - -
      -
      Represents the API endpoint path for retrieving information about a specific DNS zone by its - name.
      -
      - -
      -
      Represents the API endpoint path for retrieving the list of DNS zones.
      -
      -
      -
      -
    • - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
       
      -
      static CfRequest
      - -
      -
      Returns the enum constant of this class with the specified name.
      -
      -
      static CfRequest[]
      - -
      -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      -
      -
      - -
      -

      Methods inherited from class java.lang.Object

      -getClass, notify, notifyAll, wait, wait, wait
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Enum Constant Details

      -
        -
      • -
        -

        ZONE_LIST

        -
        public static final CfRequest ZONE_LIST
        -
        Represents the API endpoint path for retrieving the list of DNS zones.
        -
        -
      • -
      • -
        -

        ZONE_INFO

        -
        public static final CfRequest ZONE_INFO
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_LIST

        -
        public static final CfRequest RECORD_LIST
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_LIST_NAME

        -
        public static final CfRequest RECORD_LIST_NAME
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_CREATE

        -
        public static final CfRequest RECORD_CREATE
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_UPDATE

        -
        public static final CfRequest RECORD_UPDATE
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_BATCH

        -
        public static final CfRequest RECORD_BATCH
        -
        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.
        -
        -
      • -
      • -
        -

        RECORD_DELETE

        -
        public static final CfRequest RECORD_DELETE
        -
        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.
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        values

        -
        public static CfRequest[] values()
        -
        Returns an array containing the constants of this enum class, in -the order they are declared.
        -
        -
        Returns:
        -
        an array containing the constants of this enum class, in the order they are declared
        -
        -
        -
      • -
      • -
        -

        valueOf

        -
        public static CfRequest valueOf(String name)
        -
        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.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        IllegalArgumentException - if this enum class has no constant with the specified name
        -
        NullPointerException - if the argument is null
        -
        -
        -
      • -
      • -
        -

        getPath

        -
        public String getPath()
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html b/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html deleted file mode 100644 index d3dc565..0000000 --- a/docs/apidocs/codes/thischwa/cf/CloudflareApiException.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - -CloudflareApiException (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class CloudflareApiException

    -
    -
    java.lang.Object -
    java.lang.Throwable -
    java.lang.Exception -
    codes.thischwa.cf.CloudflareApiException
    -
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    Serializable
    -
    -
    -
    Direct Known Subclasses:
    -
    CloudflareNotFoundException
    -
    -
    -
    public class CloudflareApiException -extends Exception
    -
    Represents a custom exception for errors encountered while interacting with the Cloudflare API.
    -
    -
    See Also:
    -
    - -
    -
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        CloudflareApiException

        -
        public CloudflareApiException(String message)
        -
        Constructs a new CloudflareApiException with the specified detail message.
        -
        -
        Parameters:
        -
        message - the detail message, which provides more information about the exception.
        -
        -
        -
      • -
      • -
        -

        CloudflareApiException

        -
        public CloudflareApiException(String message, - Throwable cause)
        -
        Constructs a new CloudflareApiException with the specified detail message and cause.
        -
        -
        Parameters:
        -
        message - the detail message, which provides additional context or information about the - exception.
        -
        cause - the cause of this exception, which is the underlying throwable that triggered this - exception.
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html b/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html deleted file mode 100644 index 126e9e7..0000000 --- a/docs/apidocs/codes/thischwa/cf/CloudflareNotFoundException.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - -CloudflareNotFoundException (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class CloudflareNotFoundException

    -
    - -
    -
    -
    All Implemented Interfaces:
    -
    Serializable
    -
    -
    -
    public class CloudflareNotFoundException -extends CloudflareApiException
    -
    This exception is thrown to indicate that a requested resource was not found during interaction - with the Cloudflare API. - -

    It extends CloudflareApiException to provide specific errors related to situations - where Cloudflare responds with a "not found" operation.

    -
    -
    See Also:
    -
    - -
    -
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        CloudflareNotFoundException

        -
        public CloudflareNotFoundException(String message)
        -
        Constructs a new CloudflareNotFoundException with the specified detail message.
        -
        -
        Parameters:
        -
        message - the detail message, which provides additional context about the "not found" - error encountered during interaction with the Cloudflare API.
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html deleted file mode 100644 index 4fc731c..0000000 --- a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClient.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.CfDnsClient (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.CfDnsClient

    -
    -
    Packages that use CfDnsClient
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html b/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html deleted file mode 100644 index 7be09e4..0000000 --- a/docs/apidocs/codes/thischwa/cf/class-use/CfDnsClientBuilder.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.CfDnsClientBuilder (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.CfDnsClientBuilder

    -
    -
    Packages that use CfDnsClientBuilder
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html b/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html deleted file mode 100644 index 3bbfedc..0000000 --- a/docs/apidocs/codes/thischwa/cf/class-use/CfRequest.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - -Uses of Enum Class codes.thischwa.cf.CfRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Enum Class
    codes.thischwa.cf.CfRequest

    -
    -
    Packages that use CfRequest
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html deleted file mode 100644 index a70f451..0000000 --- a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareApiException.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.CloudflareApiException (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.CloudflareApiException

    -
    -
    Packages that use CloudflareApiException
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html b/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html deleted file mode 100644 index 761559e..0000000 --- a/docs/apidocs/codes/thischwa/cf/class-use/CloudflareNotFoundException.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.CloudflareNotFoundException (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.CloudflareNotFoundException

    -
    -No usage of codes.thischwa.cf.CloudflareNotFoundException
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html deleted file mode 100644 index 31c1b24..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperations.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - -RecordOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Interface RecordOperations

    -
    -
    -
    -
    All Known Implementing Classes:
    -
    RecordOperationsImpl
    -
    -
    -
    public interface RecordOperations
    -
    Fluent interface for getRecord-level operations. - Provides a chainable API for CRUD operations on DNS records.
    -
    -
    -
      - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - -
      create(RecordType type, - String content, - int ttl)
      -
      -
      Creates a new DNS getRecord with the specified parameters.
      -
      -
      void
      -
      delete(RecordType... types)
      -
      -
      Deletes DNS records of the specified types.
      -
      - -
      get()
      -
      -
      Retrieves DNS records for the selected subdomain.
      -
      - -
      update(String newContent)
      -
      -
      Updates an existing DNS getRecord with new content.
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        get

        - -
        Retrieves DNS records for the selected subdomain.
        -
        -
        Returns:
        -
        a list of RecordEntity objects matching the criteria
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while retrieving records
        -
        -
        -
      • -
      • -
        -

        create

        -
        RecordEntity create(RecordType type, - String content, - int ttl) - throws CloudflareApiException
        -
        Creates a new DNS getRecord with the specified parameters.
        -
        -
        Parameters:
        -
        type - the DNS getRecord type (e.g., A, AAAA, CNAME)
        -
        content - the content of the DNS getRecord (e.g., IP address)
        -
        ttl - the time-to-live value in seconds
        -
        Returns:
        -
        the created RecordEntity
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while creating the getRecord
        -
        -
        -
      • -
      • -
        -

        update

        -
        RecordEntity update(String newContent) - throws CloudflareApiException
        -
        Updates an existing DNS getRecord with new content.
        -
        -
        Parameters:
        -
        newContent - the new content for the DNS getRecord
        -
        Returns:
        -
        the updated RecordEntity
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while updating the getRecord
        -
        -
        -
      • -
      • -
        -

        delete

        -
        void delete(RecordType... types) - throws CloudflareApiException
        -
        Deletes DNS records of the specified types.
        -
        -
        Parameters:
        -
        types - the DNS getRecord types to delete
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while deleting records
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html deleted file mode 100644 index 1f7596f..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/RecordOperationsImpl.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - -RecordOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class RecordOperationsImpl

    -
    -
    java.lang.Object -
    codes.thischwa.cf.fluent.RecordOperationsImpl
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    RecordOperations
    -
    -
    -
    public class RecordOperationsImpl -extends Object -implements RecordOperations
    -
    Implementation of RecordOperations for fluent API access to getRecord-level operations.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        RecordOperationsImpl

        -
        public RecordOperationsImpl(CfDnsClient client, - ZoneEntity zone, - String sld, - @Nullable - @Nullable RecordType[] types)
        -
        Constructs a RecordOperationsImpl instance.
        -
        -
        Parameters:
        -
        client - the CfDnsClient instance to use for operations
        -
        zone - the ZoneEntity representing the DNS zone
        -
        sld - the subdomain (second-level domain) name
        -
        types - optional array of RecordType to filter by
        -
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      - -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html deleted file mode 100644 index dfcfda9..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperations.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - -ZoneOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Interface ZoneOperations

    -
    -
    -
    -
    All Known Implementing Classes:
    -
    ZoneOperationsImpl
    -
    -
    -
    public interface ZoneOperations
    -
    Fluent interface for zone-level operations. - Provides a chainable API for accessing and manipulating DNS records within a specific zone.
    -
    -
    -
      - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      -
      Selects a record (subdomain) within the zone for further operations.
      -
      - -
      getRecord(String sld, - @Nullable RecordType... types)
      -
      -
      Selects a record with specific types within the zone for further operations.
      -
      - -
      list(@Nullable RecordType... types)
      -
      -
      Lists all DNS records within the zone, optionally filtered by types.
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getRecord

        - -
        Selects a record (subdomain) within the zone for further operations.
        -
        -
        Parameters:
        -
        sld - the second-level domain (subdomain) name
        -
        Returns:
        -
        a RecordOperations instance for chaining record-specific operations
        -
        Throws:
        -
        CloudflareApiException - if the zone cannot be found or accessed
        -
        -
        -
      • -
      • -
        -

        getRecord

        -
        RecordOperations getRecord(String sld, - @Nullable - @Nullable RecordType... types) - throws CloudflareApiException
        -
        Selects a record with specific types within the zone for further operations.
        -
        -
        Parameters:
        -
        sld - the second-level domain (subdomain) name
        -
        types - optional DNS record types to filter by
        -
        Returns:
        -
        a RecordOperations instance for chaining record-specific operations
        -
        Throws:
        -
        CloudflareApiException - if the zone cannot be found or accessed
        -
        -
        -
      • -
      • -
        -

        list

        -
        List<RecordEntity> list(@Nullable - @Nullable RecordType... types) - throws CloudflareApiException
        -
        Lists all DNS records within the zone, optionally filtered by types.
        -
        -
        Parameters:
        -
        types - optional DNS record types to filter by
        -
        Returns:
        -
        a list of RecordEntity objects matching the criteria
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while retrieving records
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html deleted file mode 100644 index 914f711..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/ZoneOperationsImpl.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - -ZoneOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class ZoneOperationsImpl

    -
    -
    java.lang.Object -
    codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    ZoneOperations
    -
    -
    -
    public class ZoneOperationsImpl -extends Object -implements ZoneOperations
    -
    Implementation of ZoneOperations for fluent API access to zone-level operations.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ZoneOperationsImpl

        -
        public ZoneOperationsImpl(CfDnsClient client, - ZoneEntity zone)
        -
        Constructs a ZoneOperationsImpl instance.
        -
        -
        Parameters:
        -
        client - the CfDnsClient instance to use for operations
        -
        zone - the ZoneEntity representing the DNS zone
        -
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getRecord

        -
        public RecordOperations getRecord(String sld) - throws CloudflareApiException
        -
        Description copied from interface: ZoneOperations
        -
        Selects a record (subdomain) within the zone for further operations.
        -
        -
        Specified by:
        -
        getRecord in interface ZoneOperations
        -
        Parameters:
        -
        sld - the second-level domain (subdomain) name
        -
        Returns:
        -
        a RecordOperations instance for chaining record-specific operations
        -
        Throws:
        -
        CloudflareApiException - if the zone cannot be found or accessed
        -
        -
        -
      • -
      • -
        -

        getRecord

        -
        public RecordOperations getRecord(String sld, - @Nullable - @Nullable RecordType... types) - throws CloudflareApiException
        -
        Description copied from interface: ZoneOperations
        -
        Selects a record with specific types within the zone for further operations.
        -
        -
        Specified by:
        -
        getRecord in interface ZoneOperations
        -
        Parameters:
        -
        sld - the second-level domain (subdomain) name
        -
        types - optional DNS record types to filter by
        -
        Returns:
        -
        a RecordOperations instance for chaining record-specific operations
        -
        Throws:
        -
        CloudflareApiException - if the zone cannot be found or accessed
        -
        -
        -
      • -
      • -
        -

        list

        -
        public List<RecordEntity> list(@Nullable - @Nullable RecordType... types) - throws CloudflareApiException
        -
        Description copied from interface: ZoneOperations
        -
        Lists all DNS records within the zone, optionally filtered by types.
        -
        -
        Specified by:
        -
        list in interface ZoneOperations
        -
        Parameters:
        -
        types - optional DNS record types to filter by
        -
        Returns:
        -
        a list of RecordEntity objects matching the criteria
        -
        Throws:
        -
        CloudflareApiException - if an error occurs while retrieving records
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html deleted file mode 100644 index 8dcf57f..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperations.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - -Uses of Interface codes.thischwa.cf.fluent.RecordOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Interface
    codes.thischwa.cf.fluent.RecordOperations

    -
    -
    Packages that use RecordOperations
    -
    -
    Package
    -
    Description
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html deleted file mode 100644 index 805d40d..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/class-use/RecordOperationsImpl.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.fluent.RecordOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.fluent.RecordOperationsImpl

    -
    -No usage of codes.thischwa.cf.fluent.RecordOperationsImpl
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html deleted file mode 100644 index 4c1ddd6..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperations.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - -Uses of Interface codes.thischwa.cf.fluent.ZoneOperations (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Interface
    codes.thischwa.cf.fluent.ZoneOperations

    -
    -
    Packages that use ZoneOperations
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html b/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html deleted file mode 100644 index cf35ca6..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/class-use/ZoneOperationsImpl.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.fluent.ZoneOperationsImpl (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.fluent.ZoneOperationsImpl

    -
    -No usage of codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html b/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html deleted file mode 100644 index 92fffdd..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/package-summary.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - -codes.thischwa.cf.fluent (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Package codes.thischwa.cf.fluent

    -
    -
    -
    package codes.thischwa.cf.fluent
    -
    -
    Fluent API interfaces and implementations for chainable DNS operations. - -

    This package provides a fluent, chainable interface for interacting with Cloudflare DNS - records, making code more readable and concise. - -

    Example usage: -

    
    - // Create a DNS getRecord
    - client.zone("example.com")
    -       .getRecord("api")
    -       .create(RecordType.A, "192.168.1.1", 60);
    -
    - // Get DNS records
    - List<RecordEntity> records = client.zone("example.com")
    -                                      .getRecord("www", RecordType.A)
    -                                      .get();
    -
    - // Update a DNS getRecord
    - client.zone("example.com")
    -       .getRecord("api", RecordType.A)
    -       .update("192.168.1.2");
    -
    - // Delete DNS records
    - client.zone("example.com")
    -       .getRecord("old-service")
    -       .delete(RecordType.A, RecordType.AAAA);
    - 
    -
    -
    -
      -
    • - -
    • -
    • -
      -
      -
      -
      -
      Class
      -
      Description
      - -
      -
      Fluent interface for getRecord-level operations.
      -
      - -
      -
      Implementation of RecordOperations for fluent API access to getRecord-level operations.
      -
      - -
      -
      Fluent interface for zone-level operations.
      -
      - -
      -
      Implementation of ZoneOperations for fluent API access to zone-level operations.
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html b/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html deleted file mode 100644 index 5b91622..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/package-tree.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - -codes.thischwa.cf.fluent Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For Package codes.thischwa.cf.fluent

    -Package Hierarchies: - -
    -
    -

    Class Hierarchy

    - -
    -
    -

    Interface Hierarchy

    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/fluent/package-use.html b/docs/apidocs/codes/thischwa/cf/fluent/package-use.html deleted file mode 100644 index b49397d..0000000 --- a/docs/apidocs/codes/thischwa/cf/fluent/package-use.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - -Uses of Package codes.thischwa.cf.fluent (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Package
    codes.thischwa.cf.fluent

    -
    -
    Packages that use codes.thischwa.cf.fluent
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html b/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html deleted file mode 100644 index 668e2e9..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/AbstractEntity.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - -AbstractEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class AbstractEntity

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractEntity
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    ResponseEntity
    -
    -
    -
    Direct Known Subclasses:
    -
    BatchEntry, RecordEntity, ZoneEntity
    -
    -
    -
    public class AbstractEntity -extends Object -implements ResponseEntity
    -
    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.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        AbstractEntity

        -
        public AbstractEntity()
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getId

        -
        public String getId()
        -
        Description copied from interface: ResponseEntity
        -
        Retrieves the unique identifier of the entity.
        -
        -
        Specified by:
        -
        getId in interface ResponseEntity
        -
        Returns:
        -
        the unique identifier as a String
        -
        -
        -
      • -
      • -
        -

        setId

        -
        public void setId(String id)
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Object
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html deleted file mode 100644 index fcc19e4..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/AbstractMultipleResponse.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - -AbstractMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class AbstractMultipleResponse<T extends ResponseEntity>

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractResponse -
    codes.thischwa.cf.model.AbstractMultipleResponse<T>
    -
    -
    -
    -
    -
    Type Parameters:
    -
    T - Represents the type of entities contained within the response. For this class, it is - expected to be ResponseEntity.
    -
    -
    -
    Direct Known Subclasses:
    -
    RecordMultipleResponse, ZoneMultipleResponse
    -
    -
    -
    public abstract class AbstractMultipleResponse<T extends ResponseEntity> -extends AbstractResponse
    -
    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.

    -
    -
    - -
    -
    - -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html deleted file mode 100644 index f163670..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/AbstractResponse.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - -AbstractResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class AbstractResponse

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractResponse
    -
    -
    -
    -
    Direct Known Subclasses:
    -
    AbstractMultipleResponse, AbstractSingleResponse
    -
    -
    -
    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: - -

      -
    1. success: Indicates whether the API request was successful. -
    2. errors: A list of error messages, if any, returned by the API. -
    3. 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.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        AbstractResponse

        -
        public AbstractResponse()
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getResponseResultInfo

        -
        public ResponseResultInfo getResponseResultInfo()
        -
        -
      • -
      • -
        -

        setResponseResultInfo

        -
        public void setResponseResultInfo(ResponseResultInfo responseResultInfo)
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Object
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html deleted file mode 100644 index 5d3625a..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/AbstractSingleResponse.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - -AbstractSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class AbstractSingleResponse<T extends ResponseEntity>

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractResponse -
    codes.thischwa.cf.model.AbstractSingleResponse<T>
    -
    -
    -
    -
    -
    Type Parameters:
    -
    T - The type of the response entity that extends ResponseEntity.
    -
    -
    -
    Direct Known Subclasses:
    -
    BatchResponse, RecordSingleResponse
    -
    -
    -
    public abstract class AbstractSingleResponse<T extends ResponseEntity> -extends AbstractResponse
    -
    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.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        AbstractSingleResponse

        -
        public AbstractSingleResponse()
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      - -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html b/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html deleted file mode 100644 index bce2c99..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/BatchEntry.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - -BatchEntry (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class BatchEntry

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractEntity -
    codes.thischwa.cf.model.BatchEntry
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    ResponseEntity
    -
    -
    -
    public class BatchEntry -extends AbstractEntity
    -
    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.

    -
    -
    - -
    -
    - -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html b/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html deleted file mode 100644 index b1516b0..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/BatchResponse.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - -BatchResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class BatchResponse

    -
    - -
    -
    -
    public class BatchResponse -extends AbstractSingleResponse<BatchEntry>
    -
    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.

    -
    -
    - -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html b/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html deleted file mode 100644 index cd5ee43..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/PagingRequest.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - -PagingRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class PagingRequest

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.PagingRequest
    -
    -
    -
    -
    public class PagingRequest -extends Object
    -
    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. -
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        of

        -
        public static PagingRequest of(int page, - int perPage)
        -
        Creates a new PagingRequest instance with the specified page number and items per page.
        -
        -
        Parameters:
        -
        page - the page number to be requested
        -
        perPage - the number of items to be included per page
        -
        Returns:
        -
        a new PagingRequest instance with the provided parameters
        -
        -
        -
      • -
      • -
        -

        defaultPaging

        -
        public static PagingRequest defaultPaging()
        -
        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
        -
        -
        -
      • -
      • -
        -

        getPagingParams

        -
        public Map<String,String> getPagingParams()
        -
        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.
        -
        -
        -
      • -
      • -
        -

        addQueryString

        -
        public String addQueryString(String endpoint)
        -
        Appends a query string with pagination parameters (page and perPage) to the provided endpoint.
        -
        -
        Parameters:
        -
        endpoint - the base URL or API endpoint to which the query string will be appended
        -
        Returns:
        -
        the complete URL with the appended query string for pagination
        -
        -
        -
      • -
      • -
        -

        getPage

        -
        public int getPage()
        -
        -
      • -
      • -
        -

        getPerPage

        -
        public int getPerPage()
        -
        -
      • -
      • -
        -

        setPage

        -
        public void setPage(int page)
        -
        -
      • -
      • -
        -

        setPerPage

        -
        public void setPerPage(int perPage)
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Object
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html b/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html deleted file mode 100644 index 55bae65..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/RecordEntity.html +++ /dev/null @@ -1,544 +0,0 @@ - - - - -RecordEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class RecordEntity

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractEntity -
    codes.thischwa.cf.model.RecordEntity
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    ResponseEntity
    -
    -
    -
    public class RecordEntity -extends AbstractEntity
    -
    Represents a DNS getRecord entity within a specific zone. - -

    Attributes defined in this class include: - -

      -
    • DNS getRecord type such as "A" or "CNAME". -
    • Name of the DNS getRecord. -
    • Content of the DNS getRecord, such as an IP address. -
    • Flags indicating whether the getRecord is proxiable or proxied. -
    • TTL (Time-To-Live) for the DNS getRecord. -
    • A locked status to indicate the immutability of the getRecord. -
    • Zone-specific metadata including zone ID and name. -
    • Timestamps for creation and modification. -
    - -

    Provides a static factory method build for creating a DNS getRecord with specific - attributes.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        RecordEntity

        -
        public RecordEntity()
        -
        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.
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        build

        -
        public static RecordEntity build(String name, - RecordType type, - Integer ttl, - String content)
        -
        Builds and returns a RecordEntity instance with the specified attributes.
        -
        -
        Parameters:
        -
        name - the name of the DNS getRecord
        -
        type - the RecordType of the DNS getRecord
        -
        ttl - the time-to-live (TTL) value for the DNS getRecord
        -
        content - the content of the DNS getRecord, typically an IP address
        -
        Returns:
        -
        a RecordEntity populated with the provided attributes
        -
        -
        -
      • -
      • -
        -

        build

        -
        public static RecordEntity build(String id, - String content)
        -
        Builds and returns a RecordEntity instance with the specified ID and content.
        -
        -
        Parameters:
        -
        id - the unique identifier for the DNS getRecord
        -
        content - the content of the DNS getRecord, typically an IP address or other getRecord data
        -
        Returns:
        -
        a RecordEntity populated with the provided ID and content
        -
        -
        -
      • -
      • -
        -

        build

        -
        public static RecordEntity build(String id, - String name, - String type, - Integer ttl, - String content)
        -
        Builds and returns a RecordEntity instance with the specified attributes.
        -
        -
        Parameters:
        -
        id - the unique identifier for the DNS getRecord
        -
        name - the name of the DNS getRecord
        -
        type - the type of the DNS getRecord, represented as a string (e.g., "A", "CNAME")
        -
        ttl - the time-to-live (TTL) value for the DNS getRecord
        -
        content - the content of the DNS getRecord, typically an IP address or other getRecord data
        -
        Returns:
        -
        a RecordEntity populated with the provided attributes
        -
        Throws:
        -
        IllegalArgumentException - if the type string is not a valid RecordType
        -
        -
        -
      • -
      • -
        -

        getSld

        -
        public String getSld()
        -
        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
        -
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
        Overrides:
        -
        canEqual in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        getType

        -
        public String getType()
        -
        -
      • -
      • -
        -

        getName

        -
        public String getName()
        -
        -
      • -
      • -
        -

        getContent

        -
        public String getContent()
        -
        -
      • -
      • -
        -

        getProxiable

        -
        public Boolean getProxiable()
        -
        -
      • -
      • -
        -

        getProxied

        -
        public Boolean getProxied()
        -
        -
      • -
      • -
        -

        getTtl

        -
        public Integer getTtl()
        -
        -
      • -
      • -
        -

        getLocked

        -
        public Boolean getLocked()
        -
        -
      • -
      • -
        -

        getZoneId

        -
        @Nullable -public @Nullable String getZoneId()
        -
        -
      • -
      • -
        -

        getZoneName

        -
        @Nullable -public @Nullable String getZoneName()
        -
        -
      • -
      • -
        -

        getModifiedOn

        -
        @Nullable -public @Nullable LocalDateTime getModifiedOn()
        -
        -
      • -
      • -
        -

        getCreatedOn

        -
        @Nullable -public @Nullable LocalDateTime getCreatedOn()
        -
        -
      • -
      • -
        -

        setType

        -
        public void setType(String type)
        -
        -
      • -
      • -
        -

        setName

        -
        public void setName(String name)
        -
        -
      • -
      • -
        -

        setContent

        -
        public void setContent(String content)
        -
        -
      • -
      • -
        -

        setProxiable

        -
        public void setProxiable(Boolean proxiable)
        -
        -
      • -
      • -
        -

        setProxied

        -
        public void setProxied(Boolean proxied)
        -
        -
      • -
      • -
        -

        setTtl

        -
        public void setTtl(Integer ttl)
        -
        -
      • -
      • -
        -

        setLocked

        -
        public void setLocked(Boolean locked)
        -
        -
      • -
      • -
        -

        setZoneId

        -
        public void setZoneId(@Nullable - @Nullable String zoneId)
        -
        -
      • -
      • -
        -

        setZoneName

        -
        public void setZoneName(@Nullable - @Nullable String zoneName)
        -
        -
      • -
      • -
        -

        setModifiedOn

        -
        public void setModifiedOn(@Nullable - @Nullable LocalDateTime modifiedOn)
        -
        -
      • -
      • -
        -

        setCreatedOn

        -
        public void setCreatedOn(@Nullable - @Nullable LocalDateTime createdOn)
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class AbstractEntity
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html deleted file mode 100644 index 40006a7..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/RecordMultipleResponse.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - -RecordMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class RecordMultipleResponse

    -
    - -
    -
    -
    public class RecordMultipleResponse -extends AbstractMultipleResponse<RecordEntity>
    -
    Represents the API response of the Cloudflare API containing multiple RecordEntity - instances.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        RecordMultipleResponse

        -
        public RecordMultipleResponse()
        -
        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.

        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html deleted file mode 100644 index 4c46e13..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/RecordSingleResponse.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - -RecordSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class RecordSingleResponse

    -
    - -
    -
    -
    public class RecordSingleResponse -extends AbstractSingleResponse<RecordEntity>
    -
    Represents the API response of the Cloudflare API containing a single RecordEntity - instance.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        RecordSingleResponse

        -
        public RecordSingleResponse()
        -
        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.

        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/RecordType.html b/docs/apidocs/codes/thischwa/cf/model/RecordType.html deleted file mode 100644 index 4235f70..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/RecordType.html +++ /dev/null @@ -1,561 +0,0 @@ - - - - -RecordType (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Enum Class RecordType

    -
    -
    java.lang.Object -
    java.lang.Enum<RecordType> -
    codes.thischwa.cf.model.RecordType
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    Serializable, Comparable<RecordType>, Constable
    -
    -
    -
    public enum RecordType -extends Enum<RecordType>
    -
    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

      -Enum.EnumDesc<E extends Enum<E>>
      -
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
      -
      Represents the DNS A getRecord type.
      -
      - -
      -
      Represents the DNS AAAA getRecord type.
      -
      - -
      -
      Represents the DNS CAA (Certificate Authority Authorization) getRecord type.
      -
      - -
      -
      Represents the DNS CERT getRecord type.
      -
      - -
      -
      Represents the DNS CNAME (Canonical Name) getRecord type.
      -
      - -
      -
      Represents the DNSKEY getRecord type.
      -
      - -
      -
      Represents the DNS DS (Delegation Signer) getRecord type.
      -
      - -
      -
      Represents the DNS HTTPS (HTTP Service) getRecord type.
      -
      - -
      -
      Represents the DNS LOC (Location) getRecord type.
      -
      - -
      -
      Represents the DNS MX (Mail Exchange) getRecord type.
      -
      - -
      -
      Represents the NAPTR getRecord type for DNS configurations.
      -
      - -
      -
      Represents the namespace or identifier `"NS"` within the domain model.
      -
      - -
      -
      Represents the "OPENPGPKEY" DNS getRecord type.
      -
      - -
      -
      Represents a DNS getRecord type.
      -
      - -
      -
      Represents the SMIMEA DNS getRecord type.
      -
      - -
      -
      Represents a service getRecord (SRV) type in the DNS configuration model.
      -
      - -
      -
      Represents the DNS getRecord type "SSHFP" (SSH Fingerprint), used in DNS to store cryptographic - fingerprints associated with SSH host keys.
      -
      - -
      -
      Represents the Service Binding (SVCB) DNS getRecord type.
      -
      - -
      -
      Represents a constant for the DNS-based Authentication of Named Entities (DANE) TLSA getRecord - type.
      -
      - -
      -
      Represents the TXT DNS getRecord type.
      -
      - -
      -
      Represents a Uniform Resource Identifier (URI).
      -
      -
      -
      -
    • - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
       
      - - -
       
      -
      static RecordType
      - -
      -
      Returns the enum constant of this class with the specified name.
      -
      -
      static RecordType[]
      - -
      -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      -
      -
      -
      -

      Methods inherited from class java.lang.Enum

      -clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      -
      -

      Methods inherited from class java.lang.Object

      -getClass, notify, notifyAll, wait, wait, wait
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Enum Constant Details

      -
        -
      • -
        -

        A

        -
        public static final RecordType A
        -
        Represents the DNS A getRecord type. - -

        The "A" getRecord type is used to map a domain name to an IPv4 address.

        -
        -
      • -
      • -
        -

        AAAA

        -
        public static final RecordType AAAA
        -
        Represents the DNS AAAA getRecord type. - -

        The "AAAA" getRecord type maps a domain name to an IPv6 address.

        -
        -
      • -
      • -
        -

        CAA

        -
        public static final RecordType CAA
        -
        Represents the DNS CAA (Certificate Authority Authorization) getRecord type. - -

        The "CAA" getRecord type is used to specify which certificate authorities (CAs) are allowed to - issue SSL/TLS certificates for a domain.

        -
        -
      • -
      • -
        -

        CERT

        -
        public static final RecordType CERT
        -
        Represents the DNS CERT getRecord type. - -

        The "CERT" getRecord type is used to store certificates and related certificate revocation - lists or certificate authority data in DNS zones.

        -
        -
      • -
      • -
        -

        CNAME

        -
        public static final RecordType CNAME
        -
        Represents the DNS CNAME (Canonical Name) getRecord type. - -

        The "CNAME" getRecord type is used to alias one domain name to another.

        -
        -
      • -
      • -
        -

        DNSKEY

        -
        public static final RecordType DNSKEY
        -
        Represents the DNSKEY getRecord type. - -

        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.

        -
        -
      • -
      • -
        -

        DS

        -
        public static final RecordType DS
        -
        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.

        -
        -
      • -
      • -
        -

        HTTPS

        -
        public static final RecordType HTTPS
        -
        Represents the DNS HTTPS (HTTP Service) getRecord type. - -

        The "HTTPS" getRecord type is used to specify information about the HTTP/3 and related services - offered by a domain.

        -
        -
      • -
      • -
        -

        LOC

        -
        public static final RecordType LOC
        -
        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.

        -
        -
      • -
      • -
        -

        MX

        -
        public static final RecordType MX
        -
        Represents the DNS MX (Mail Exchange) getRecord type. - -

        The "MX" getRecord type is used to specify the mail servers responsible for receiving email - messages on behalf of a domain.

        -
        -
      • -
      • -
        -

        NAPTR

        -
        public static final RecordType NAPTR
        -
        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.

        -
        -
      • -
      • -
        -

        NS

        -
        public static final RecordType NS
        -
        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.

        -
        -
      • -
      • -
        -

        OPENPGPKEY

        -
        public static final RecordType OPENPGPKEY
        -
        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.

        -
        -
      • -
      • -
        -

        PTR

        -
        public static final RecordType PTR
        -
        Represents a DNS getRecord type. - -

        The `PTR` value specifically refers to a "pointer getRecord" in the DNS system, which is - typically used for reverse DNS lookups.

        -
        -
      • -
      • -
        -

        SMIMEA

        -
        public static final RecordType SMIMEA
        -
        Represents the SMIMEA DNS getRecord 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. -
        -
        -
      • -
      • -
        -

        SRV

        -
        public static final RecordType SRV
        -
        Represents a service getRecord (SRV) type in the DNS configuration model. - -

        This constant may be used to identify and work with SRV getRecord types in various DNS-related - operations or integrations.

        -
        -
      • -
      • -
        -

        SSHFP

        -
        public static final RecordType SSHFP
        -
        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.

        -
        -
      • -
      • -
        -

        SVCB

        -
        public static final RecordType SVCB
        -
        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.

        -
        -
      • -
      • -
        -

        TLSA

        -
        public static final RecordType TLSA
        -
        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.

        -
        -
      • -
      • -
        -

        TXT

        -
        public static final RecordType TXT
        -
        Represents the TXT DNS getRecord type. - -

        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).

        -
        -
      • -
      • -
        -

        URI

        -
        public static final RecordType URI
        -
        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.

        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        values

        -
        public static RecordType[] values()
        -
        Returns an array containing the constants of this enum class, in -the order they are declared.
        -
        -
        Returns:
        -
        an array containing the constants of this enum class, in the order they are declared
        -
        -
        -
      • -
      • -
        -

        valueOf

        -
        public static RecordType valueOf(String name)
        -
        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.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        IllegalArgumentException - if this enum class has no constant with the specified name
        -
        NullPointerException - if the argument is null
        -
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Enum<RecordType>
        -
        -
        -
      • -
      • -
        -

        getType

        -
        public String getType()
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html b/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html deleted file mode 100644 index 537a075..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ResponseEntity.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - -ResponseEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Interface ResponseEntity

    -
    -
    -
    -
    All Known Implementing Classes:
    -
    AbstractEntity, BatchEntry, RecordEntity, ZoneEntity
    -
    -
    -
    public interface ResponseEntity
    -
    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.

    -
    -
    -
      - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      -
      Retrieves the unique identifier of the entity.
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getId

        -
        String getId()
        -
        Retrieves the unique identifier of the entity.
        -
        -
        Returns:
        -
        the unique identifier as a String
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html deleted file mode 100644 index 0b33760..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.Error.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - -ResponseResultInfo.Error (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class ResponseResultInfo.Error

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.ResponseResultInfo.Error
    -
    -
    -
    -
    Enclosing class:
    -
    ResponseResultInfo
    -
    -
    -
    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.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        Error

        -
        public Error()
        -
        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.

        -
        -
      • -
      • -
        -

        Error

        -
        public Error(int code, - String message)
        -
        Constructs an instance of the Error class with a specified error code and message.
        -
        -
        Parameters:
        -
        code - the numerical code representing the error
        -
        message - the descriptive message providing details about the error
        -
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Object
        -
        -
        -
      • -
      • -
        -

        getCode

        -
        public int getCode()
        -
        -
      • -
      • -
        -

        getMessage

        -
        public String getMessage()
        -
        -
      • -
      • -
        -

        setCode

        -
        public void setCode(int code)
        -
        -
      • -
      • -
        -

        setMessage

        -
        public void setMessage(String message)
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html deleted file mode 100644 index d6c5a1e..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ResponseResultInfo.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - -ResponseResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class ResponseResultInfo

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.ResponseResultInfo
    -
    -
    -
    -
    public class ResponseResultInfo -extends Object
    -
    Represents the result of a response with metadata about its success and associated messages or - errors. - -

    This class provides a structure to capture the outcome of an operation, including: -

      -
    • Whether the operation was successful. -
    • A list of error messages if the operation failed. -
    • A list of informational or success messages. -
    - It can be used to standardize the response format in an application.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ResponseResultInfo

        -
        public ResponseResultInfo()
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        isSuccess

        -
        public boolean isSuccess()
        -
        -
      • -
      • -
        -

        getErrors

        -
        public List<ResponseResultInfo.Error> getErrors()
        -
        -
      • -
      • -
        -

        getMessages

        -
        public List<String> getMessages()
        -
        -
      • -
      • -
        -

        setSuccess

        -
        public void setSuccess(boolean success)
        -
        -
      • -
      • -
        -

        setErrors

        -
        public void setErrors(List<ResponseResultInfo.Error> errors)
        -
        -
      • -
      • -
        -

        setMessages

        -
        public void setMessages(List<String> messages)
        -
        -
      • -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class Object
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html deleted file mode 100644 index e121298..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ResultInfo.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - -ResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Record Class ResultInfo

    -
    -
    java.lang.Object -
    java.lang.Record -
    codes.thischwa.cf.model.ResultInfo
    -
    -
    -
    -
    -
    Record Components:
    -
    page - The current page number.
    -
    perPage - The number of results per page.
    -
    totalPages - The total number of pages available.
    -
    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.

    -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      -
      ResultInfo(int totalCount)
      -
      -
      Constructs a ResultInfo instance with the specified total count and default values for other - fields.
      -
      -
      ResultInfo(int page, - int perPage, - int totalPages, - int count, - int totalCount)
      -
      -
      Creates an instance of a ResultInfo record class.
      -
      -
      -
      -
    • - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      int
      - -
      -
      Returns the value of the count record component.
      -
      -
      final boolean
      - -
      -
      Indicates whether some other object is "equal to" this one.
      -
      -
      final int
      - -
      -
      Returns a hash code value for this object.
      -
      -
      int
      - -
      -
      Returns the value of the page record component.
      -
      -
      int
      - -
      -
      Returns the value of the perPage record component.
      -
      -
      final String
      - -
      -
      Returns a string representation of this record class.
      -
      -
      int
      - -
      -
      Returns the value of the totalCount record component.
      -
      -
      int
      - -
      -
      Returns the value of the totalPages record component.
      -
      -
      -
      -
      -
      -

      Methods inherited from class java.lang.Object

      -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      -
      -
    • -
    -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ResultInfo

        -
        public ResultInfo(int totalCount)
        -
        Constructs a ResultInfo instance with the specified total count and default values for other - fields. Just to use in tests!
        -
        -
        Parameters:
        -
        totalCount - the total number of results across all pages
        -
        -
        -
      • -
      • -
        -

        ResultInfo

        -
        public ResultInfo(int page, - int perPage, - int totalPages, - int count, - int totalCount)
        -
        Creates an instance of a ResultInfo record class.
        -
        -
        Parameters:
        -
        page - the value for the page record component
        -
        perPage - the value for the perPage record component
        -
        totalPages - the value for the totalPages record component
        -
        count - the value for the count record component
        -
        totalCount - the value for the totalCount record component
        -
        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        toString

        -
        public final String toString()
        -
        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.
        -
        -
        Specified by:
        -
        toString in class Record
        -
        Returns:
        -
        a string representation of this object
        -
        -
        -
      • -
      • -
        -

        hashCode

        -
        public final int hashCode()
        -
        Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
        -
        -
        Specified by:
        -
        hashCode in class Record
        -
        Returns:
        -
        a hash code value for this object
        -
        -
        -
      • -
      • -
        -

        equals

        -
        public final boolean equals(Object o)
        -
        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 '=='.
        -
        -
        Specified by:
        -
        equals in class Record
        -
        Parameters:
        -
        o - the object with which to compare
        -
        Returns:
        -
        true if this object is the same as the o argument; false otherwise.
        -
        -
        -
      • -
      • -
        -

        page

        -
        public int page()
        -
        Returns the value of the page record component.
        -
        -
        Returns:
        -
        the value of the page record component
        -
        -
        -
      • -
      • -
        -

        perPage

        -
        public int perPage()
        -
        Returns the value of the perPage record component.
        -
        -
        Returns:
        -
        the value of the perPage record component
        -
        -
        -
      • -
      • -
        -

        totalPages

        -
        public int totalPages()
        -
        Returns the value of the totalPages record component.
        -
        -
        Returns:
        -
        the value of the totalPages record component
        -
        -
        -
      • -
      • -
        -

        count

        -
        public int count()
        -
        Returns the value of the count record component.
        -
        -
        Returns:
        -
        the value of the count record component
        -
        -
        -
      • -
      • -
        -

        totalCount

        -
        public int totalCount()
        -
        Returns the value of the totalCount record component.
        -
        -
        Returns:
        -
        the value of the totalCount record component
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html b/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html deleted file mode 100644 index b4454f0..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ZoneEntity.html +++ /dev/null @@ -1,419 +0,0 @@ - - - - -ZoneEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class ZoneEntity

    -
    -
    java.lang.Object -
    codes.thischwa.cf.model.AbstractEntity -
    codes.thischwa.cf.model.ZoneEntity
    -
    -
    -
    -
    -
    All Implemented Interfaces:
    -
    ResponseEntity
    -
    -
    -
    public class ZoneEntity -extends AbstractEntity
    -
    Represents a DNS zone entity in the Cloudflare DNS system.
    - -

    This class encapsulates all relevant data and metadata associated with a zone, including but - not limited to the following attributes: - -

      -
    • Zone name. -
    • Development mode status. -
    • Active and original name servers linked to the zone. -
    • Timestamps indicating when the zone was created, modified, or activated. -
    • Current operational status of the zone (e.g., active, inactive). -
    • Boolean flag indicating whether the zone is paused. -
    • Zone type, representing the nature of the DNS zone (e.g., full, partial). -
    - -

    This class extends AbstractEntity to inherit basic entity properties and to provide a - consistent interface across domain models.

    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ZoneEntity

        -
        public ZoneEntity()
        -
        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.

        -
        -
      • -
      -
      -
    • - -
    • -
      -

      Method Details

      -
        -
      • -
        -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        canEqual

        -
        protected boolean canEqual(Object other)
        -
        -
        Overrides:
        -
        canEqual in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class AbstractEntity
        -
        -
        -
      • -
      • -
        -

        getName

        -
        public String getName()
        -
        -
      • -
      • -
        -

        getDevelopmentMode

        -
        public Integer getDevelopmentMode()
        -
        -
      • -
      • -
        -

        getNameServers

        -
        public Set<String> getNameServers()
        -
        -
      • -
      • -
        -

        getOriginalNameServers

        -
        public Set<String> getOriginalNameServers()
        -
        -
      • -
      • -
        -

        getCreatedOn

        -
        public LocalDateTime getCreatedOn()
        -
        -
      • -
      • -
        -

        getModifiedOn

        -
        public LocalDateTime getModifiedOn()
        -
        -
      • -
      • -
        -

        getActivatedOn

        -
        public LocalDateTime getActivatedOn()
        -
        -
      • -
      • -
        -

        getStatus

        -
        public String getStatus()
        -
        -
      • -
      • -
        -

        getPaused

        -
        public Boolean getPaused()
        -
        -
      • -
      • -
        -

        getType

        -
        public String getType()
        -
        -
      • -
      • -
        -

        setName

        -
        public void setName(String name)
        -
        -
      • -
      • -
        -

        setDevelopmentMode

        -
        public void setDevelopmentMode(Integer developmentMode)
        -
        -
      • -
      • -
        -

        setNameServers

        -
        public void setNameServers(Set<String> nameServers)
        -
        -
      • -
      • -
        -

        setOriginalNameServers

        -
        public void setOriginalNameServers(Set<String> originalNameServers)
        -
        -
      • -
      • -
        -

        setCreatedOn

        -
        public void setCreatedOn(LocalDateTime createdOn)
        -
        -
      • -
      • -
        -

        setModifiedOn

        -
        public void setModifiedOn(LocalDateTime modifiedOn)
        -
        -
      • -
      • -
        -

        setActivatedOn

        -
        public void setActivatedOn(LocalDateTime activatedOn)
        -
        -
      • -
      • -
        -

        setStatus

        -
        public void setStatus(String status)
        -
        -
      • -
      • -
        -

        setPaused

        -
        public void setPaused(Boolean paused)
        -
        -
      • -
      • -
        -

        setType

        -
        public void setType(String type)
        -
        -
      • -
      • -
        -

        toString

        -
        public String toString()
        -
        -
        Overrides:
        -
        toString in class AbstractEntity
        -
        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html deleted file mode 100644 index 7c4cab2..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/ZoneMultipleResponse.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - -ZoneMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    - -
    - -

    Class ZoneMultipleResponse

    -
    - -
    -
    -
    public class ZoneMultipleResponse -extends AbstractMultipleResponse<ZoneEntity>
    -
    Represents a response model that contains multiple ZoneEntity instances.
    -
    -
    - -
    -
    -
      - -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ZoneMultipleResponse

        -
        public ZoneMultipleResponse()
        -
        Constructs a new ZoneMultipleResponse object. - -

        This constructor initializes an instance of ZoneMultipleResponse, which serves as a response - model containing multiple ZoneEntity instances.

        -
        -
      • -
      -
      -
    • -
    -
    - -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html deleted file mode 100644 index 9b2c118..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractEntity.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.AbstractEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.AbstractEntity

    -
    -
    Packages that use AbstractEntity
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html deleted file mode 100644 index 7e8d5e4..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractMultipleResponse.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.AbstractMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.AbstractMultipleResponse

    -
    -
    Packages that use AbstractMultipleResponse
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html deleted file mode 100644 index 83d4248..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractResponse.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.AbstractResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.AbstractResponse

    -
    -
    Packages that use AbstractResponse
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html deleted file mode 100644 index ff550f6..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/AbstractSingleResponse.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.AbstractSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.AbstractSingleResponse

    -
    -
    Packages that use AbstractSingleResponse
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html deleted file mode 100644 index ad6b95c..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchEntry.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.BatchEntry (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.BatchEntry

    -
    -
    Packages that use BatchEntry
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html deleted file mode 100644 index 553fc6a..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/BatchResponse.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.BatchResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.BatchResponse

    -
    -No usage of codes.thischwa.cf.model.BatchResponse
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html b/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html deleted file mode 100644 index 4f82c90..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/PagingRequest.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.PagingRequest (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.PagingRequest

    -
    -
    Packages that use PagingRequest
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html deleted file mode 100644 index 01510f5..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordEntity.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.RecordEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.RecordEntity

    -
    -
    Packages that use RecordEntity
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html deleted file mode 100644 index 93a93ee..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordMultipleResponse.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.RecordMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.RecordMultipleResponse

    -
    -No usage of codes.thischwa.cf.model.RecordMultipleResponse
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html deleted file mode 100644 index 31f0c98..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordSingleResponse.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.RecordSingleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.RecordSingleResponse

    -
    -No usage of codes.thischwa.cf.model.RecordSingleResponse
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html b/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html deleted file mode 100644 index dfecbda..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/RecordType.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - -Uses of Enum Class codes.thischwa.cf.model.RecordType (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Enum Class
    codes.thischwa.cf.model.RecordType

    -
    -
    Packages that use RecordType
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html deleted file mode 100644 index ce51740..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseEntity.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - -Uses of Interface codes.thischwa.cf.model.ResponseEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Interface
    codes.thischwa.cf.model.ResponseEntity

    -
    -
    Packages that use ResponseEntity
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html deleted file mode 100644 index 906d801..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.Error.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.ResponseResultInfo.Error (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.ResponseResultInfo.Error

    -
    -
    Packages that use ResponseResultInfo.Error
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html deleted file mode 100644 index 4142f23..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ResponseResultInfo.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.ResponseResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.ResponseResultInfo

    -
    -
    Packages that use ResponseResultInfo
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html deleted file mode 100644 index efd8154..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ResultInfo.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - -Uses of Record Class codes.thischwa.cf.model.ResultInfo (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Record Class
    codes.thischwa.cf.model.ResultInfo

    -
    -
    Packages that use ResultInfo
    -
    -
    Package
    -
    Description
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html deleted file mode 100644 index 0227a03..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneEntity.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.ZoneEntity (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.ZoneEntity

    -
    -
    Packages that use ZoneEntity
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html b/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html deleted file mode 100644 index f76cde5..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/class-use/ZoneMultipleResponse.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - -Uses of Class codes.thischwa.cf.model.ZoneMultipleResponse (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    codes.thischwa.cf.model.ZoneMultipleResponse

    -
    -No usage of codes.thischwa.cf.model.ZoneMultipleResponse
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/package-summary.html b/docs/apidocs/codes/thischwa/cf/model/package-summary.html deleted file mode 100644 index 9795128..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/package-summary.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - -codes.thischwa.cf.model (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Package codes.thischwa.cf.model

    -
    -
    -
    package codes.thischwa.cf.model
    -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
      -
    • - -
    • -
    • -
      -
      -
      -
      -
      Class
      -
      Description
      - -
      -
      Represents a base abstract entity class for modeling domain objects with a unique identifier.
      -
      - -
      -
      Abstract base class for response models that contain multiple result entries.
      -
      - -
      -
      Abstract base class for API response models.
      -
      - -
      -
      Represents a base abstract response model for handling single response entities within an API - response.
      -
      - -
      -
      Represents a batch entry containing different types of operations on getRecord entities.
      -
      - -
      -
      Represents a response that contains a single BatchEntry as the result.
      -
      - -
      -
      Represents a request model for paginated data.
      -
      - -
      -
      Represents a DNS getRecord entity within a specific zone.
      -
      - -
      -
      Represents the API response of the Cloudflare API containing multiple RecordEntity - instances.
      -
      - -
      -
      Represents the API response of the Cloudflare API containing a single RecordEntity - instance.
      -
      - -
      -
      Enum representing various DNS getRecord types.
      -
      - -
      -
      Represents a contract for entities that have a unique identifier.
      -
      - -
      -
      Represents the result of a response with metadata about its success and associated messages or - errors.
      -
      - -
      -
      Represents an error with a specific code and message.
      -
      - -
      -
      Represents metadata for paginated results.
      -
      - -
      -
      Represents a DNS zone entity in the Cloudflare DNS system.
      -
      - -
      -
      Represents a response model that contains multiple ZoneEntity instances.
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/package-tree.html b/docs/apidocs/codes/thischwa/cf/model/package-tree.html deleted file mode 100644 index 3a5c6a1..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/package-tree.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - -codes.thischwa.cf.model Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For Package codes.thischwa.cf.model

    -Package Hierarchies: - -
    -
    -

    Class Hierarchy

    - -
    -
    -

    Interface Hierarchy

    - -
    -
    -

    Enum Class Hierarchy

    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/model/package-use.html b/docs/apidocs/codes/thischwa/cf/model/package-use.html deleted file mode 100644 index 3ade64d..0000000 --- a/docs/apidocs/codes/thischwa/cf/model/package-use.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - -Uses of Package codes.thischwa.cf.model (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Package
    codes.thischwa.cf.model

    -
    -
    Packages that use codes.thischwa.cf.model
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/package-summary.html b/docs/apidocs/codes/thischwa/cf/package-summary.html deleted file mode 100644 index 80db893..0000000 --- a/docs/apidocs/codes/thischwa/cf/package-summary.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - -codes.thischwa.cf (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Package codes.thischwa.cf

    -
    -
    -
    package codes.thischwa.cf
    -
    -
    The base package of CloudflareDNS-java.
    -
    -
    -
      -
    • - -
    • -
    • -
      -
      -
      -
      -
      Class
      -
      Description
      - -
      -
      CfDnsClient is a client interface to interact with Cloudflare DNS service.
      -
      - -
      -
      Builder class for configuring and creating instances of CfDnsClient.
      -
      - -
      -
      Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a - cohesive and reusable manner.
      -
      - -
      -
      Represents a custom exception for errors encountered while interacting with the Cloudflare API.
      -
      - -
      -
      This exception is thrown to indicate that a requested resource was not found during interaction - with the Cloudflare API.
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/package-tree.html b/docs/apidocs/codes/thischwa/cf/package-tree.html deleted file mode 100644 index 13e8223..0000000 --- a/docs/apidocs/codes/thischwa/cf/package-tree.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - -codes.thischwa.cf Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For Package codes.thischwa.cf

    -Package Hierarchies: - -
    -
    -

    Class Hierarchy

    - -
    -
    -

    Enum Class Hierarchy

    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/codes/thischwa/cf/package-use.html b/docs/apidocs/codes/thischwa/cf/package-use.html deleted file mode 100644 index 55fec87..0000000 --- a/docs/apidocs/codes/thischwa/cf/package-use.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - -Uses of Package codes.thischwa.cf (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Package
    codes.thischwa.cf

    -
    -
    Packages that use codes.thischwa.cf
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    -
    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/constant-values.html b/docs/apidocs/constant-values.html deleted file mode 100644 index d0d766d..0000000 --- a/docs/apidocs/constant-values.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - -Constant Field Values (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Constant Field Values

    -
    -

    Contents

    - -
    -
    -
    -

    codes.thischwa.*

    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/element-list b/docs/apidocs/element-list deleted file mode 100644 index 959dcb9..0000000 --- a/docs/apidocs/element-list +++ /dev/null @@ -1,3 +0,0 @@ -codes.thischwa.cf -codes.thischwa.cf.fluent -codes.thischwa.cf.model diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html deleted file mode 100644 index af310d4..0000000 --- a/docs/apidocs/help-doc.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - -API Help (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -

    JavaDoc Help

    - -
    -
    -

    Navigation

    -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 - -
    -
    -
    -

    Kinds of Pages

    -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.
    • -
    -
    -
    -

    Constant Field Values

    -

    The Constant Field Values page lists the static final fields and their values.

    -
    -
    -

    Serialized Form

    -

    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.
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/index-all.html b/docs/apidocs/index-all.html deleted file mode 100644 index c15e159..0000000 --- a/docs/apidocs/index-all.html +++ /dev/null @@ -1,900 +0,0 @@ - - - - -Index (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E G H I L M N O P R S T U V W Z 
    All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form -

    A

    -
    -
    A - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS A getRecord type.
    -
    -
    AAAA - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS AAAA getRecord type.
    -
    -
    AbstractEntity - Class in codes.thischwa.cf.model
    -
    -
    Represents a base abstract entity class for modeling domain objects with a unique identifier.
    -
    -
    AbstractEntity() - Constructor for class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    AbstractMultipleResponse<T extends ResponseEntity> - Class in codes.thischwa.cf.model
    -
    -
    Abstract base class for response models that contain multiple result entries.
    -
    -
    AbstractResponse - Class in codes.thischwa.cf.model
    -
    -
    Abstract base class for API response models.
    -
    -
    AbstractResponse() - Constructor for class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    AbstractSingleResponse<T extends ResponseEntity> - Class in codes.thischwa.cf.model
    -
    -
    Represents a base abstract response model for handling single response entities within an API - response.
    -
    -
    AbstractSingleResponse() - Constructor for class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    addQueryString(String) - Method in class codes.thischwa.cf.model.PagingRequest
    -
    -
    Appends a query string with pagination parameters (page and perPage) to the provided endpoint.
    -
    -
    -

    B

    -
    -
    BatchEntry - Class in codes.thischwa.cf.model
    -
    -
    Represents a batch entry containing different types of operations on getRecord entities.
    -
    -
    BatchEntry() - Constructor for class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    BatchResponse - Class in codes.thischwa.cf.model
    -
    -
    Represents a response that contains a single BatchEntry as the result.
    -
    -
    build() - Method in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    Builds and returns a configured instance of CfDnsClient.
    -
    -
    build(String, RecordType, Integer, String) - Static method in class codes.thischwa.cf.model.RecordEntity
    -
    -
    Builds and returns a RecordEntity instance with the specified attributes.
    -
    -
    build(String, String) - Static method in class codes.thischwa.cf.model.RecordEntity
    -
    -
    Builds and returns a RecordEntity instance with the specified ID and content.
    -
    -
    build(String, String, String, Integer, String) - Static method in class codes.thischwa.cf.model.RecordEntity
    -
    -
    Builds and returns a RecordEntity instance with the specified attributes.
    -
    -
    -

    C

    -
    -
    CAA - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS CAA (Certificate Authority Authorization) getRecord type.
    -
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    canEqual(Object) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    CERT - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS CERT getRecord type.
    -
    -
    CfDnsClient - Class in codes.thischwa.cf
    -
    -
    CfDnsClient is a client interface to interact with Cloudflare DNS service.
    -
    -
    CfDnsClientBuilder - Class in codes.thischwa.cf
    -
    -
    Builder class for configuring and creating instances of CfDnsClient.
    -
    -
    CfDnsClientBuilder() - Constructor for class codes.thischwa.cf.CfDnsClientBuilder
    -
     
    -
    CfRequest - Enum Class in codes.thischwa.cf
    -
    -
    Enum CfRequest encapsulates various API endpoint paths for managing DNS zones and records in a - cohesive and reusable manner.
    -
    -
    CloudflareApiException - Exception in codes.thischwa.cf
    -
    -
    Represents a custom exception for errors encountered while interacting with the Cloudflare API.
    -
    -
    CloudflareApiException(String) - Constructor for exception codes.thischwa.cf.CloudflareApiException
    -
    -
    Constructs a new CloudflareApiException with the specified detail message.
    -
    -
    CloudflareApiException(String, Throwable) - Constructor for exception codes.thischwa.cf.CloudflareApiException
    -
    -
    Constructs a new CloudflareApiException with the specified detail message and cause.
    -
    -
    CloudflareNotFoundException - Exception in codes.thischwa.cf
    -
    -
    This exception is thrown to indicate that a requested resource was not found during interaction - with the Cloudflare API.
    -
    -
    CloudflareNotFoundException(String) - Constructor for exception codes.thischwa.cf.CloudflareNotFoundException
    -
    -
    Constructs a new CloudflareNotFoundException with the specified detail message.
    -
    -
    CNAME - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS CNAME (Canonical Name) getRecord type.
    -
    -
    codes.thischwa.cf - package codes.thischwa.cf
    -
    -
    The base package of CloudflareDNS-java.
    -
    -
    codes.thischwa.cf.fluent - package codes.thischwa.cf.fluent
    -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    -
    codes.thischwa.cf.model - package codes.thischwa.cf.model
    -
    -
    The model of CloudflareDNS-java.
    -
    -
    count() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns the value of the count record component.
    -
    -
    create(RecordType, String, int) - Method in interface codes.thischwa.cf.fluent.RecordOperations
    -
    -
    Creates a new DNS getRecord with the specified parameters.
    -
    -
    create(RecordType, String, int) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
    -
     
    -
    -

    D

    -
    -
    DEFAULT_BASEURL - Static variable in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    The default base URL for the Cloudflare v4 API requests made by the CfDnsClient.
    -
    -
    defaultPaging() - Static method in class codes.thischwa.cf.model.PagingRequest
    -
    -
    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.
    -
    -
    delete(RecordType...) - Method in interface codes.thischwa.cf.fluent.RecordOperations
    -
    -
    Deletes DNS records of the specified types.
    -
    -
    delete(RecordType...) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
    -
     
    -
    DNSKEY - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNSKEY getRecord type.
    -
    -
    DS - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS DS (Delegation Signer) getRecord type.
    -
    -
    -

    E

    -
    -
    equals(Object) - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    equals(Object) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    equals(Object) - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Indicates whether some other object is "equal to" this one.
    -
    -
    equals(Object) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    Error() - Constructor for class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
    -
    Constructs a new instance of the Error class with default values for its properties.
    -
    -
    Error(int, String) - Constructor for class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
    -
    Constructs an instance of the Error class with a specified error code and message.
    -
    -
    -

    G

    -
    -
    get() - Method in interface codes.thischwa.cf.fluent.RecordOperations
    -
    -
    Retrieves DNS records for the selected subdomain.
    -
    -
    get() - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
    -
     
    -
    getActivatedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    getContent() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getCreatedOn() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getCreatedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getDeletes() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    getDevelopmentMode() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getErrors() - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    getId() - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    getId() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    getId() - Method in interface codes.thischwa.cf.model.ResponseEntity
    -
    -
    Retrieves the unique identifier of the entity.
    -
    -
    getLocked() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getMessage() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    getMessages() - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    getModifiedOn() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getModifiedOn() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getName() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getName() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getNameServers() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getOriginalNameServers() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getPage() - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    getPagingParams() - Method in class codes.thischwa.cf.model.PagingRequest
    -
    -
    Retrieves the pagination parameters in a key-value map format.
    -
    -
    getPatches() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    getPath() - Method in enum class codes.thischwa.cf.CfRequest
    -
     
    -
    getPaused() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getPerPage() - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    getPosts() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    getProxiable() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getProxied() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getPuts() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    getRecord(String) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
    -
    -
    Selects a record (subdomain) within the zone for further operations.
    -
    -
    getRecord(String) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
     
    -
    getRecord(String, RecordType...) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
    -
    -
    Selects a record with specific types within the zone for further operations.
    -
    -
    getRecord(String, RecordType...) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
     
    -
    getResponseResultInfo() - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    getResult() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    getResult() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    getResultInfo() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    getSld() - Method in class codes.thischwa.cf.model.RecordEntity
    -
    -
    Retrieves the short name (subdomain) of the DNS getRecord.
    -
    -
    getStatus() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getTtl() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getType() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getType() - Method in enum class codes.thischwa.cf.model.RecordType
    -
     
    -
    getType() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    getZoneId() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    getZoneName() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    groupRecordsByFqdn(List<RecordEntity>) - Static method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Groups a list of DNS records by their fully qualified domain name (FQDN).
    -
    -
    -

    H

    -
    -
    hashCode() - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    hashCode() - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    hashCode() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns a hash code value for this object.
    -
    -
    hashCode() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    HTTPS - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS HTTPS (HTTP Service) getRecord type.
    -
    -
    -

    I

    -
    -
    isSuccess() - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    -

    L

    -
    -
    list(RecordType...) - Method in interface codes.thischwa.cf.fluent.ZoneOperations
    -
    -
    Lists all DNS records within the zone, optionally filtered by types.
    -
    -
    list(RecordType...) - Method in class codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
     
    -
    LOC - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS LOC (Location) getRecord type.
    -
    -
    -

    M

    -
    -
    MX - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS MX (Mail Exchange) getRecord type.
    -
    -
    -

    N

    -
    -
    NAPTR - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the NAPTR getRecord type for DNS configurations.
    -
    -
    NS - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the namespace or identifier `"NS"` within the domain model.
    -
    -
    -

    O

    -
    -
    of(int, int) - Static method in class codes.thischwa.cf.model.PagingRequest
    -
    -
    Creates a new PagingRequest instance with the specified page number and items per page.
    -
    -
    OPENPGPKEY - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the "OPENPGPKEY" DNS getRecord type.
    -
    -
    -

    P

    -
    -
    page() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns the value of the page record component.
    -
    -
    PagingRequest - Class in codes.thischwa.cf.model
    -
    -
    Represents a request model for paginated data.
    -
    -
    perPage() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns the value of the perPage record component.
    -
    -
    PTR - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents a DNS getRecord type.
    -
    -
    -

    R

    -
    -
    RECORD_BATCH - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for performing batch operations on DNS records within a specific zone.
    -
    -
    RECORD_CREATE - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for creating a new DNS getRecord within a specific DNS zone.
    -
    -
    RECORD_DELETE - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for deleting an existing DNS getRecord within a specific DNS - zone.
    -
    -
    RECORD_LIST - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for retrieving information about DNS records within a - specific DNS zone.
    -
    -
    RECORD_LIST_NAME - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for retrieving information about a DNS getRecord within a - specific DNS zone by its name.
    -
    -
    RECORD_UPDATE - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for updating an existing DNS getRecord within a specific DNS - zone.
    -
    -
    recordBatch(ZoneEntity, List<RecordEntity>, List<RecordEntity>, List<RecordEntity>, List<RecordEntity>) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Processes a batch of DNS getRecord operations (POST, PUT, PATCH, DELETE) for a specified zone.
    -
    -
    recordCreate(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Creates a new DNS getRecord in the specified zone using the Cloudflare API.
    -
    -
    recordCreate(ZoneEntity, String, int, RecordType, String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Creates a DNS getRecord in the specified DNS zone with the provided details.
    -
    -
    recordCreateSld(ZoneEntity, String, int, RecordType, String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Creates a new DNS getRecord for a given second-level domain (SLD) within the specified zone.
    -
    -
    recordDelete(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
    -
    -
    recordDelete(ZoneEntity, String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Deletes a DNS getRecord of the specified type within a given zone on the Cloudflare API.
    -
    -
    recordDeleteTypeIfExists(ZoneEntity, String, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Deletes DNS records of a specific type within a given zone if they exist.
    -
    -
    RecordEntity - Class in codes.thischwa.cf.model
    -
    -
    Represents a DNS getRecord entity within a specific zone.
    -
    -
    RecordEntity() - Constructor for class codes.thischwa.cf.model.RecordEntity
    -
    -
    Initializes a new instance of the RecordEntity class and invokes the parent constructor from - the AbstractEntity class.
    -
    -
    recordList(ZoneEntity) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves a list of DNS records for a specified zone, with optional paging support.
    -
    -
    recordList(ZoneEntity, PagingRequest) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves a list of DNS records for a specified zone, with optional paging support.
    -
    -
    recordList(ZoneEntity, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves a list of all DNS records for a given zone.
    -
    -
    recordList(ZoneEntity, String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves DNS records for the specified second-level domain (SLD) within a zone.
    -
    -
    recordList(ZoneEntity, String, RecordType...) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves DNS records for the specified second-level domain (SLD) within a zone.
    -
    -
    RecordMultipleResponse - Class in codes.thischwa.cf.model
    -
    -
    Represents the API response of the Cloudflare API containing multiple RecordEntity - instances.
    -
    -
    RecordMultipleResponse() - Constructor for class codes.thischwa.cf.model.RecordMultipleResponse
    -
    -
    Constructs an instance of RecordMultipleResponse.
    -
    -
    RecordOperations - Interface in codes.thischwa.cf.fluent
    -
    -
    Fluent interface for getRecord-level operations.
    -
    -
    RecordOperationsImpl - Class in codes.thischwa.cf.fluent
    -
    -
    Implementation of RecordOperations for fluent API access to getRecord-level operations.
    -
    -
    RecordOperationsImpl(CfDnsClient, ZoneEntity, String, RecordType[]) - Constructor for class codes.thischwa.cf.fluent.RecordOperationsImpl
    -
    -
    Constructs a RecordOperationsImpl instance.
    -
    -
    RecordSingleResponse - Class in codes.thischwa.cf.model
    -
    -
    Represents the API response of the Cloudflare API containing a single RecordEntity - instance.
    -
    -
    RecordSingleResponse() - Constructor for class codes.thischwa.cf.model.RecordSingleResponse
    -
    -
    Constructs a new instance of the RecordSingleResponse class.
    -
    -
    RecordType - Enum Class in codes.thischwa.cf.model
    -
    -
    Enum representing various DNS getRecord types.
    -
    -
    recordUpdate(ZoneEntity, RecordEntity) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Updates an existing DNS getRecord in a specified Cloudflare zone.
    -
    -
    ResponseEntity - Interface in codes.thischwa.cf.model
    -
    -
    Represents a contract for entities that have a unique identifier.
    -
    -
    ResponseResultInfo - Class in codes.thischwa.cf.model
    -
    -
    Represents the result of a response with metadata about its success and associated messages or - errors.
    -
    -
    ResponseResultInfo() - Constructor for class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    ResponseResultInfo.Error - Class in codes.thischwa.cf.model
    -
    -
    Represents an error with a specific code and message.
    -
    -
    ResultInfo - Record Class in codes.thischwa.cf.model
    -
    -
    Represents metadata for paginated results.
    -
    -
    ResultInfo(int) - Constructor for record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Constructs a ResultInfo instance with the specified total count and default values for other - fields.
    -
    -
    ResultInfo(int, int, int, int, int) - Constructor for record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Creates an instance of a ResultInfo record class.
    -
    -
    -

    S

    -
    -
    setActivatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setCode(int) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    setContent(String) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setCreatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setCreatedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setDeletes(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    setDevelopmentMode(Integer) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setErrors(List<ResponseResultInfo.Error>) - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    setId(String) - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    setLocked(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setMessage(String) - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    setMessages(List<String>) - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    setModifiedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setModifiedOn(LocalDateTime) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setName(String) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setName(String) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setNameServers(Set<String>) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setOriginalNameServers(Set<String>) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setPage(int) - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    setPatches(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    setPaused(Boolean) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setPerPage(int) - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    setPosts(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    setProxiable(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setProxied(Boolean) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setPuts(List<RecordEntity>) - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    setResponseResultInfo(ResponseResultInfo) - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    setResult(List<T>) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    setResult(T) - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    setResultInfo(ResultInfo) - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    setStatus(String) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setSuccess(boolean) - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    setTtl(Integer) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setType(String) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setType(String) - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    setZoneId(String) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    setZoneName(String) - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    SMIMEA - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the SMIMEA DNS getRecord type.
    -
    -
    SRV - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents a service getRecord (SRV) type in the DNS configuration model.
    -
    -
    SSHFP - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the DNS getRecord type "SSHFP" (SSH Fingerprint), used in DNS to store cryptographic - fingerprints associated with SSH host keys.
    -
    -
    SVCB - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the Service Binding (SVCB) DNS getRecord type.
    -
    -
    -

    T

    -
    -
    TLSA - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents a constant for the DNS-based Authentication of Named Entities (DANE) TLSA getRecord - type.
    -
    -
    toString() - Method in class codes.thischwa.cf.model.AbstractEntity
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.AbstractMultipleResponse
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.AbstractResponse
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.AbstractSingleResponse
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.BatchEntry
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.PagingRequest
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.RecordEntity
    -
     
    -
    toString() - Method in enum class codes.thischwa.cf.model.RecordType
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.ResponseResultInfo.Error
    -
     
    -
    toString() - Method in class codes.thischwa.cf.model.ResponseResultInfo
    -
     
    -
    toString() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns a string representation of this record class.
    -
    -
    toString() - Method in class codes.thischwa.cf.model.ZoneEntity
    -
     
    -
    totalCount() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns the value of the totalCount record component.
    -
    -
    totalPages() - Method in record class codes.thischwa.cf.model.ResultInfo
    -
    -
    Returns the value of the totalPages record component.
    -
    -
    TXT - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents the TXT DNS getRecord type.
    -
    -
    -

    U

    -
    -
    update(String) - Method in interface codes.thischwa.cf.fluent.RecordOperations
    -
    -
    Updates an existing DNS getRecord with new content.
    -
    -
    update(String) - Method in class codes.thischwa.cf.fluent.RecordOperationsImpl
    -
     
    -
    URI - Enum constant in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Represents a Uniform Resource Identifier (URI).
    -
    -
    -

    V

    -
    -
    valueOf(String) - Static method in enum class codes.thischwa.cf.CfRequest
    -
    -
    Returns the enum constant of this class with the specified name.
    -
    -
    valueOf(String) - Static method in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Returns the enum constant of this class with the specified name.
    -
    -
    values() - Static method in enum class codes.thischwa.cf.CfRequest
    -
    -
    Returns an array containing the constants of this enum class, in -the order they are declared.
    -
    -
    values() - Static method in enum class codes.thischwa.cf.model.RecordType
    -
    -
    Returns an array containing the constants of this enum class, in -the order they are declared.
    -
    -
    -

    W

    -
    -
    withApiTokenAuth(String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    Configures the authentication method for the CfDnsClient to use an API token.
    -
    -
    withBaseUrl(String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    Sets the base URL to be used by the CfDnsClient.
    -
    -
    withEmailKeyAuth(String, String) - Method in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    Configures the authentication method for the CfDnsClient to use an email and API key.
    -
    -
    withEmptyResultThrowsException(boolean) - Method in class codes.thischwa.cf.CfDnsClientBuilder
    -
    -
    Configures whether an exception should be thrown when an empty result is encountered - during operations performed by the `CfDnsClient`.
    -
    -
    -

    Z

    -
    -
    zone(String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Provides fluent API access to operations in a specific zone.
    -
    -
    ZONE_INFO - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for retrieving information about a specific DNS zone by its - name.
    -
    -
    ZONE_LIST - Enum constant in enum class codes.thischwa.cf.CfRequest
    -
    -
    Represents the API endpoint path for retrieving the list of DNS zones.
    -
    -
    ZoneEntity - Class in codes.thischwa.cf.model
    -
    -
    Represents a DNS zone entity in the Cloudflare DNS system.
    -
    -
    ZoneEntity() - Constructor for class codes.thischwa.cf.model.ZoneEntity
    -
    -
    Default no-argument constructor for the ZoneEntity class.
    -
    -
    zoneGet(String) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves detailed information about a specific zone by its name.
    -
    -
    zoneList() - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves a list of all zones from the Cloudflare API.
    -
    -
    zoneList(PagingRequest) - Method in class codes.thischwa.cf.CfDnsClient
    -
    -
    Retrieves a list of all DNS zones using the provided paging request parameters.
    -
    -
    ZoneMultipleResponse - Class in codes.thischwa.cf.model
    -
    -
    Represents a response model that contains multiple ZoneEntity instances.
    -
    -
    ZoneMultipleResponse() - Constructor for class codes.thischwa.cf.model.ZoneMultipleResponse
    -
    -
    Constructs a new ZoneMultipleResponse object.
    -
    -
    ZoneOperations - Interface in codes.thischwa.cf.fluent
    -
    -
    Fluent interface for zone-level operations.
    -
    -
    ZoneOperationsImpl - Class in codes.thischwa.cf.fluent
    -
    -
    Implementation of ZoneOperations for fluent API access to zone-level operations.
    -
    -
    ZoneOperationsImpl(CfDnsClient, ZoneEntity) - Constructor for class codes.thischwa.cf.fluent.ZoneOperationsImpl
    -
    -
    Constructs a ZoneOperationsImpl instance.
    -
    -
    -A B C D E G H I L M N O P R S T U V W Z 
    All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html deleted file mode 100644 index 9c0ae44..0000000 --- a/docs/apidocs/index.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - -Overview (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    CloudflareDNS-java 0.5.0-SNAPSHOT API

    -
    -
    -
    Packages
    -
    -
    Package
    -
    Description
    - -
    -
    The base package of CloudflareDNS-java.
    -
    - -
    -
    Fluent API interfaces and implementations for chainable DNS operations.
    -
    - -
    -
    The model of CloudflareDNS-java.
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    - - 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 - - - - - - - - - - - -
    - -

    index.html

    -
    - - diff --git a/docs/apidocs/overview-tree.html b/docs/apidocs/overview-tree.html deleted file mode 100644 index 2955923..0000000 --- a/docs/apidocs/overview-tree.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - -Class Hierarchy (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Hierarchy For All Packages

    -Package Hierarchies: - -
    -
    -

    Class Hierarchy

    - -
    -
    -

    Interface Hierarchy

    - -
    -
    -

    Enum Class Hierarchy

    - -
    -
    -
    -
    - -
    -
    -
    - - diff --git a/docs/apidocs/package-search-index.js b/docs/apidocs/package-search-index.js deleted file mode 100644 index 9b674d6..0000000 --- a/docs/apidocs/package-search-index.js +++ /dev/null @@ -1 +0,0 @@ -packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"codes.thischwa.cf"},{"l":"codes.thischwa.cf.fluent"},{"l":"codes.thischwa.cf.model"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/resources/glass.png b/docs/apidocs/resources/glass.png deleted file mode 100644 index a7f591f467a1c0c949bbc510156a0c1afb860a6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmVJoRsvExf%rEN>jUL}qZ_~k#FbE+Q;{`;0FZwVNX2n-^JoI; zP;4#$8DIy*Yk-P>VN(DUKmPse7mx+ExD4O|;?E5D0Z5($mjO3`*anwQU^s{ZDK#Lz zj>~{qyaIx5K!t%=G&2IJNzg!ChRpyLkO7}Ry!QaotAHAMpbB3AF(}|_f!G-oI|uK6 z`id_dumai5K%C3Y$;tKS_iqMPHg<*|-@e`liWLAggVM!zAP#@l;=c>S03;{#04Z~5 zN_+ss=Yg6*hTr59mzMwZ@+l~q!+?ft!fF66AXT#wWavHt30bZWFCK%!BNk}LN?0Hg z1VF_nfs`Lm^DjYZ1(1uD0u4CSIr)XAaqW6IT{!St5~1{i=i}zAy76p%_|w8rh@@c0Axr!ns=D-X+|*sY6!@wacG9%)Qn*O zl0sa739kT-&_?#oVxXF6tOnqTD)cZ}2vi$`ZU8RLAlo8=_z#*P3xI~i!lEh+Pdu-L zx{d*wgjtXbnGX_Yf@Tc7Q3YhLhPvc8noGJs2DA~1DySiA&6V{5JzFt ojAY1KXm~va;tU{v7C?Xj0BHw!K;2aXV*mgE07*qoM6N<$f;4TDA^-pY diff --git a/docs/apidocs/script-dir/jquery-3.7.1.min.js b/docs/apidocs/script-dir/jquery-3.7.1.min.js deleted file mode 100644 index 7f37b5d..0000000 --- a/docs/apidocs/script-dir/jquery-3.7.1.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0{"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(x){x.ui=x.ui||{};x.ui.version="1.14.1";var n,s,C,k,o,l,a,r,u,i,h=0,c=Array.prototype.hasOwnProperty,d=Array.prototype.slice;x.cleanData=(n=x.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=x._data(i,"events"))&&e.remove&&x(i).triggerHandler("remove");n(t)}),x.widget=function(t,i,e){var s,n,o,l,a={},r=t.split(".")[0];return"__proto__"===(t=t.split(".")[1])||"constructor"===t?x.error("Invalid widget name: "+t):(l=r+"-"+t,e||(e=i,i=x.Widget),Array.isArray(e)&&(e=x.extend.apply(null,[{}].concat(e))),x.expr.pseudos[l.toLowerCase()]=function(t){return!!x.data(t,l)},x[r]=x[r]||{},s=x[r][t],n=x[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},x.extend(n,s,{version:e.version,_proto:x.extend({},e),_childConstructors:[]}),(o=new i).options=x.widget.extend({},o.options),x.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"!=typeof s?s:function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}}),n.prototype=x.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(x.each(s._childConstructors,function(t,e){var i=e.prototype;x.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),x.widget.bridge(t,n),n)},x.widget.extend=function(t){for(var e,i,s=d.call(arguments,1),n=0,o=s.length;n",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n{var i=[];n.element.each(function(t,e){x.map(l.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),l._on(x(i),{remove:"_untrackClassesElement"})})(),x(x.uniqueSort(i.get().concat(n.element.get())))):x(i.not(n.element).get()),l.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=x.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;x.each(s.classesElementLookup,function(t,e){-1!==x.inArray(i.target,e)&&(s.classesElementLookup[t]=x(e.not(i.target).get()))}),this._off(x(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,e={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return e.element.toggleClass(this._classes(e),s),this},_on:function(n,o,t){var l,a=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=l=x(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,l=this.widget()),x.each(t,function(t,e){function i(){if(n||!0!==a.options.disabled&&!x(this).hasClass("ui-state-disabled"))return("string"==typeof e?a[e]:e).apply(a,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||x.guid++);var t=t.match(/^([\w:-]*)\s*(.*)$/),s=t[1]+a.eventNamespace,t=t[2];t?l.on(s,t,i):o.on(s,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=x(this.bindings.not(t).get()),this.focusable=x(this.focusable.not(t).get()),this.hoverable=x(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(x(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(x(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=x.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},x.each({show:"fadeIn",hide:"fadeOut"},function(o,l){x.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||l:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!x.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&x.effects&&x.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){x(this)[o](),i&&i.call(e[0]),t()})}}),x.widget;function E(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function T(t,e){return parseInt(x.css(t,e),10)||0}function W(t){return null!=t&&t===t.window}C=Math.max,k=Math.abs,o=/left|center|right/,l=/top|center|bottom/,a=/[\+\-]\d+(\.[\d]+)?%?/,r=/^\w+/,u=/%$/,i=x.fn.position,x.position={scrollbarWidth:function(){var t,e,i;return void 0!==s?s:(i=(e=x("
    ")).children()[0],x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i)},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(k(s),k(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})):i.apply(this,arguments)},x.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,s=s.width,o=t.left-e.collisionPosition.marginLeft,l=n-o,a=o+e.collisionWidth-s-n;s",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(this.document[0].activeElement);!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active)&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]!==i[0])||i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),t=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(t,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),e=(i=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(i,"ui-menu-item")._addClass(e,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(e=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,i=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-e-i,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&"true"===this.element.prop("contentEditable"),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)i=!1,this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault();else if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){n?(n=!1,t.preventDefault()):this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
      ").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent)&&/^mouse/.test(t.originalEvent.type)?(this.menu.blur(),this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)})):(s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
      ").text(i))},100)))},menuselect:function(t,e){var e=e.item.data("ui-autocomplete-item"),i=this.previous;this.element[0]!==this.document[0].activeElement&&(this.element.trigger("focus"),this.previous=i),!1!==this._trigger("select",t,{item:e})&&this._value(e.value),this.term=this._value(),this.close(t),this.selectedItem=e}}),this.liveRegion=x("
      ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=(t=(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))&&t[0]?t:this.element.closest(".ui-front, dialog")).length?t:this.document[0].body},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
      ").text(e.label)).appendTo(t)},_move:function(t,e){this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur()):this.menu[t](e):this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}}),x.ui.autocomplete}); \ No newline at end of file diff --git a/docs/apidocs/script.js b/docs/apidocs/script.js deleted file mode 100644 index 73cd8fa..0000000 --- a/docs/apidocs/script.js +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Copyright (c) 2013, 2020, 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. - */ - -var moduleSearchIndex; -var packageSearchIndex; -var typeSearchIndex; -var memberSearchIndex; -var tagSearchIndex; -function loadScripts(doc, tag) { - createElem(doc, tag, 'search.js'); - - createElem(doc, tag, 'module-search-index.js'); - createElem(doc, tag, 'package-search-index.js'); - createElem(doc, tag, 'type-search-index.js'); - createElem(doc, tag, 'member-search-index.js'); - createElem(doc, tag, 'tag-search-index.js'); -} - -function createElem(doc, tag, path) { - var script = doc.createElement(tag); - var scriptElement = doc.getElementsByTagName(tag)[0]; - script.src = pathtoroot + path; - scriptElement.parentNode.insertBefore(script, scriptElement); -} - -function show(tableId, selected, columns) { - if (tableId !== selected) { - document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') - .forEach(function(elem) { - elem.style.display = 'none'; - }); - } - document.querySelectorAll('div.' + selected) - .forEach(function(elem, index) { - elem.style.display = ''; - var isEvenRow = index % (columns * 2) < columns; - elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); - elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); - }); - updateTabs(tableId, selected); -} - -function updateTabs(tableId, selected) { - document.getElementById(tableId + '.tabpanel') - .setAttribute('aria-labelledby', selected); - document.querySelectorAll('button[id^="' + tableId + '"]') - .forEach(function(tab, index) { - if (selected === tab.id || (tableId === selected && index === 0)) { - tab.className = activeTableTab; - tab.setAttribute('aria-selected', true); - tab.setAttribute('tabindex',0); - } else { - tab.className = tableTab; - tab.setAttribute('aria-selected', false); - tab.setAttribute('tabindex',-1); - } - }); -} - -function switchTab(e) { - var selected = document.querySelector('[aria-selected=true]'); - if (selected) { - if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { - // left or up arrow key pressed: move focus to previous tab - selected.previousSibling.click(); - selected.previousSibling.focus(); - e.preventDefault(); - } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { - // right or down arrow key pressed: move focus to next tab - selected.nextSibling.click(); - selected.nextSibling.focus(); - e.preventDefault(); - } - } -} - -var updateSearchResults = function() {}; - -function indexFilesLoaded() { - return moduleSearchIndex - && packageSearchIndex - && typeSearchIndex - && memberSearchIndex - && tagSearchIndex; -} - -// Workaround for scroll position not being included in browser history (8249133) -document.addEventListener("DOMContentLoaded", function(e) { - var contentDiv = document.querySelector("div.flex-content"); - window.addEventListener("popstate", function(e) { - if (e.state !== null) { - contentDiv.scrollTop = e.state; - } - }); - window.addEventListener("hashchange", function(e) { - history.replaceState(contentDiv.scrollTop, document.title); - }); - contentDiv.addEventListener("scroll", function(e) { - var timeoutID; - if (!timeoutID) { - timeoutID = setTimeout(function() { - history.replaceState(contentDiv.scrollTop, document.title); - timeoutID = null; - }, 100); - } - }); - if (!location.hash) { - history.replaceState(contentDiv.scrollTop, document.title); - } -}); diff --git a/docs/apidocs/search.js b/docs/apidocs/search.js deleted file mode 100644 index db3b2f4..0000000 --- a/docs/apidocs/search.js +++ /dev/null @@ -1,354 +0,0 @@ -/* - * Copyright (c) 2015, 2020, 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. - */ - -var noResult = {l: "No results found"}; -var loading = {l: "Loading search index..."}; -var catModules = "Modules"; -var catPackages = "Packages"; -var catTypes = "Classes and Interfaces"; -var catMembers = "Members"; -var catSearchTags = "Search Tags"; -var highlight = "$&"; -var searchPattern = ""; -var fallbackPattern = ""; -var RANKING_THRESHOLD = 2; -var NO_MATCH = 0xffff; -var MIN_RESULTS = 3; -var MAX_RESULTS = 500; -var UNNAMED = ""; -function escapeHtml(str) { - return str.replace(//g, ">"); -} -function getHighlightedText(item, matcher, fallbackMatcher) { - var escapedItem = escapeHtml(item); - var highlighted = escapedItem.replace(matcher, highlight); - if (highlighted === escapedItem) { - highlighted = escapedItem.replace(fallbackMatcher, highlight) - } - return highlighted; -} -function getURLPrefix(ui) { - var urlPrefix=""; - var slash = "/"; - if (ui.item.category === catModules) { - return ui.item.l + slash; - } else if (ui.item.category === catPackages && ui.item.m) { - return ui.item.m + slash; - } else if (ui.item.category === catTypes || ui.item.category === catMembers) { - if (ui.item.m) { - urlPrefix = ui.item.m + slash; - } else { - $.each(packageSearchIndex, function(index, item) { - if (item.m && ui.item.p === item.l) { - urlPrefix = item.m + slash; - } - }); - } - } - return urlPrefix; -} -function createSearchPattern(term) { - var pattern = ""; - var isWordToken = false; - term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { - if (index > 0) { - // whitespace between identifiers is significant - pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; - } - var tokens = w.split(/(?=[A-Z,.()<>[\/])/); - for (var i = 0; i < tokens.length; i++) { - var s = tokens[i]; - if (s === "") { - continue; - } - pattern += $.ui.autocomplete.escapeRegex(s); - isWordToken = /\w$/.test(s); - if (isWordToken) { - pattern += "([a-z0-9_$<>\\[\\]]*?)"; - } - } - }); - return pattern; -} -function createMatcher(pattern, flags) { - var isCamelCase = /[A-Z]/.test(pattern); - return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); -} -var watermark = 'Search'; -$(function() { - var search = $("#search-input"); - var reset = $("#reset-button"); - search.val(''); - search.prop("disabled", false); - reset.prop("disabled", false); - search.val(watermark).addClass('watermark'); - search.blur(function() { - if ($(this).val().length === 0) { - $(this).val(watermark).addClass('watermark'); - } - }); - search.on('click keydown paste', function() { - if ($(this).val() === watermark) { - $(this).val('').removeClass('watermark'); - } - }); - reset.click(function() { - search.val('').focus(); - }); - search.focus()[0].setSelectionRange(0, 0); -}); -$.widget("custom.catcomplete", $.ui.autocomplete, { - _create: function() { - this._super(); - this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); - }, - _renderMenu: function(ul, items) { - var rMenu = this; - var currentCategory = ""; - rMenu.menu.bindings = $(); - $.each(items, function(index, item) { - var li; - if (item.category && item.category !== currentCategory) { - ul.append("
    • " + item.category + "
    • "); - currentCategory = item.category; - } - li = rMenu._renderItemData(ul, item); - if (item.category) { - li.attr("aria-label", item.category + " : " + item.l); - li.attr("class", "result-item"); - } else { - li.attr("aria-label", item.l); - li.attr("class", "result-item"); - } - }); - }, - _renderItem: function(ul, item) { - var label = ""; - var matcher = createMatcher(escapeHtml(searchPattern), "g"); - var fallbackMatcher = new RegExp(fallbackPattern, "gi") - if (item.category === catModules) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catPackages) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catTypes) { - label = (item.p && item.p !== UNNAMED) - ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) - : getHighlightedText(item.l, matcher, fallbackMatcher); - } else if (item.category === catMembers) { - label = (item.p && item.p !== UNNAMED) - ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) - : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); - } else if (item.category === catSearchTags) { - label = getHighlightedText(item.l, matcher, fallbackMatcher); - } else { - label = item.l; - } - var li = $("
    • ").appendTo(ul); - var div = $("
      ").appendTo(li); - if (item.category === catSearchTags && item.h) { - if (item.d) { - div.html(label + " (" + item.h + ")
      " - + item.d + "
      "); - } else { - div.html(label + " (" + item.h + ")"); - } - } else { - if (item.m) { - div.html(item.m + "/" + label); - } else { - div.html(label); - } - } - return li; - } -}); -function rankMatch(match, category) { - if (!match) { - return NO_MATCH; - } - var index = match.index; - var input = match.input; - var leftBoundaryMatch = 2; - var periferalMatch = 0; - // make sure match is anchored on a left word boundary - if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { - leftBoundaryMatch = 0; - } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { - leftBoundaryMatch = 1; - } - var matchEnd = index + match[0].length; - var leftParen = input.indexOf("("); - var endOfName = leftParen > -1 ? leftParen : input.length; - // exclude peripheral matches - if (category !== catModules && category !== catSearchTags) { - var delim = category === catPackages ? "/" : "."; - if (leftParen > -1 && leftParen < index) { - periferalMatch += 2; - } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { - periferalMatch += 2; - } - } - var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match - for (var i = 1; i < match.length; i++) { - // lower ranking if parts of the name are missing - if (match[i]) - delta += match[i].length; - } - if (category === catTypes) { - // lower ranking if a type name contains unmatched camel-case parts - if (/[A-Z]/.test(input.substring(matchEnd))) - delta += 5; - if (/[A-Z]/.test(input.substring(0, index))) - delta += 5; - } - return leftBoundaryMatch + periferalMatch + (delta / 200); - -} -function doSearch(request, response) { - var result = []; - searchPattern = createSearchPattern(request.term); - fallbackPattern = createSearchPattern(request.term.toLowerCase()); - if (searchPattern === "") { - return this.close(); - } - var camelCaseMatcher = createMatcher(searchPattern, ""); - var fallbackMatcher = new RegExp(fallbackPattern, "i"); - - function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { - if (indexArray) { - var newResults = []; - $.each(indexArray, function (i, item) { - item.category = category; - var ranking = rankMatch(matcher.exec(nameFunc(item)), category); - if (ranking < RANKING_THRESHOLD) { - newResults.push({ranking: ranking, item: item}); - } - return newResults.length <= MAX_RESULTS; - }); - return newResults.sort(function(e1, e2) { - return e1.ranking - e2.ranking; - }).map(function(e) { - return e.item; - }); - } - return []; - } - function searchIndex(indexArray, category, nameFunc) { - var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); - result = result.concat(primaryResults); - if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { - var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); - result = result.concat(secondaryResults.filter(function (item) { - return primaryResults.indexOf(item) === -1; - })); - } - } - - searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); - searchIndex(packageSearchIndex, catPackages, function(item) { - return (item.m && request.term.indexOf("/") > -1) - ? (item.m + "/" + item.l) : item.l; - }); - searchIndex(typeSearchIndex, catTypes, function(item) { - return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; - }); - searchIndex(memberSearchIndex, catMembers, function(item) { - return request.term.indexOf(".") > -1 - ? item.p + "." + item.c + "." + item.l : item.l; - }); - searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); - - if (!indexFilesLoaded()) { - updateSearchResults = function() { - doSearch(request, response); - } - result.unshift(loading); - } else { - updateSearchResults = function() {}; - } - response(result); -} -$(function() { - $("#search-input").catcomplete({ - minLength: 1, - delay: 300, - source: doSearch, - response: function(event, ui) { - if (!ui.content.length) { - ui.content.push(noResult); - } else { - $("#search-input").empty(); - } - }, - autoFocus: true, - focus: function(event, ui) { - return false; - }, - position: { - collision: "flip" - }, - select: function(event, ui) { - if (ui.item.category) { - var url = getURLPrefix(ui); - if (ui.item.category === catModules) { - url += "module-summary.html"; - } else if (ui.item.category === catPackages) { - if (ui.item.u) { - url = ui.item.u; - } else { - url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; - } - } else if (ui.item.category === catTypes) { - if (ui.item.u) { - url = ui.item.u; - } else if (ui.item.p === UNNAMED) { - url += ui.item.l + ".html"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; - } - } else if (ui.item.category === catMembers) { - if (ui.item.p === UNNAMED) { - url += ui.item.c + ".html" + "#"; - } else { - url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; - } - if (ui.item.u) { - url += ui.item.u; - } else { - url += ui.item.l; - } - } else if (ui.item.category === catSearchTags) { - url += ui.item.u; - } - if (top !== window) { - parent.classFrame.location = pathtoroot + url; - } else { - window.location.href = pathtoroot + url; - } - $("#search-input").focus(); - } - } - }); -}); diff --git a/docs/apidocs/serialized-form.html b/docs/apidocs/serialized-form.html deleted file mode 100644 index 1de03e7..0000000 --- a/docs/apidocs/serialized-form.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - -Serialized Form (CloudflareDNS-java 0.5.0-SNAPSHOT API) - - - - - - - - - - - - - - - -
      - -
      -
      -
      -

      Serialized Form

      -
      - -
      -
      -
      - -
      -
      -
      - - diff --git a/docs/apidocs/stylesheet.css b/docs/apidocs/stylesheet.css deleted file mode 100644 index 4a576bd..0000000 --- a/docs/apidocs/stylesheet.css +++ /dev/null @@ -1,869 +0,0 @@ -/* - * Javadoc style sheet - */ - -@import url('resources/fonts/dejavu.css'); - -/* - * Styles for individual HTML elements. - * - * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular - * HTML element throughout the page. - */ - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; - padding:0; - height:100%; - width:100%; -} -iframe { - margin:0; - padding:0; - height:100%; - width:100%; - overflow-y:scroll; - border:none; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a[href]:hover, a[href]:focus { - text-decoration:none; - color:#bb7a2a; -} -a[name] { - color:#353833; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; -} -h4 { - font-size:15px; -} -h5 { - font-size:14px; -} -h6 { - font-size:13px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; -} -:not(h1, h2, h3, h4, h5, h6) > code, -:not(h1, h2, h3, h4, h5, h6) > tt { - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -.summary-table dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} -button { - font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size: 14px; -} -/* - * Styles for HTML generated by javadoc. - * - * These are style classes that are used by the standard doclet to generate HTML documentation. - */ - -/* - * Styles for document title and copyright. - */ -.clear { - clear:both; - height:0; - overflow:hidden; -} -.about-language { - float:right; - padding:0 21px 8px 8px; - font-size:11px; - margin-top:-9px; - height:2.9em; -} -.legal-copy { - margin-left:.5em; -} -.tab { - background-color:#0066FF; - color:#ffffff; - padding:8px; - width:5em; - font-weight:bold; -} -/* - * Styles for navigation bar. - */ -@media screen { - .flex-box { - position:fixed; - display:flex; - flex-direction:column; - height: 100%; - width: 100%; - } - .flex-header { - flex: 0 0 auto; - } - .flex-content { - flex: 1 1 auto; - overflow-y: auto; - } -} -.top-nav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - min-height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.sub-nav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.sub-nav div { - clear:left; - float:left; - padding:0 0 5px 6px; - text-transform:uppercase; -} -.sub-nav .nav-list { - padding-top:5px; -} -ul.nav-list { - display:block; - margin:0 25px 0 0; - padding:0; -} -ul.sub-nav-list { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.nav-list li { - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -.sub-nav .nav-list-search { - float:right; - margin:0 0 0 0; - padding:5px 6px; - clear:none; -} -.nav-list-search label { - position:relative; - right:-16px; -} -ul.sub-nav-list li { - list-style:none; - float:left; - padding-top:10px; -} -.top-nav a:link, .top-nav a:active, .top-nav a:visited { - color:#FFFFFF; - text-decoration:none; - text-transform:uppercase; -} -.top-nav a:hover { - text-decoration:none; - color:#bb7a2a; - text-transform:uppercase; -} -.nav-bar-cell1-rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skip-nav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* - * Hide navigation links and search box in print layout - */ -@media print { - ul.nav-list, div.sub-nav { - display:none; - } -} -/* - * Styles for page header and footer. - */ -.title { - color:#2c4557; - margin:10px 0; -} -.sub-title { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.header ul li, .footer ul li { - list-style:none; - font-size:13px; -} -/* - * Styles for headings. - */ -body.class-declaration-page .summary h2, -body.class-declaration-page .details h2, -body.class-use-page h2, -body.module-declaration-page .block-list h2 { - font-style: italic; - padding:0; - margin:15px 0; -} -body.class-declaration-page .summary h3, -body.class-declaration-page .details h3, -body.class-declaration-page .summary .inherited-list h2 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -/* - * Styles for page layout containers. - */ -main { - clear:both; - padding:10px 20px; - position:relative; -} -dl.notes > dt { - font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -dl.notes > dd { - margin:5px 10px 10px 0; - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -dl.name-value > dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -dl.name-value > dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* - * Styles for lists. - */ -li.circle { - list-style:circle; -} -ul.horizontal li { - display:inline; - font-size:0.9em; -} -div.inheritance { - margin:0; - padding:0; -} -div.inheritance div.inheritance { - margin-left:2em; -} -ul.block-list, -ul.details-list, -ul.member-list, -ul.summary-list { - margin:10px 0 10px 0; - padding:0; -} -ul.block-list > li, -ul.details-list > li, -ul.member-list > li, -ul.summary-list > li { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -.summary-table dl, .summary-table dl dt, .summary-table dl dd { - margin-top:0; - margin-bottom:1px; -} -ul.see-list, ul.see-list-long { - padding-left: 0; - list-style: none; -} -ul.see-list li { - display: inline; -} -ul.see-list li:not(:last-child):after, -ul.see-list-long li:not(:last-child):after { - content: ", "; - white-space: pre-wrap; -} -/* - * Styles for tables. - */ -.summary-table, .details-table { - width:100%; - border-spacing:0; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; - padding:0; -} -.caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0; - padding-top:10px; - padding-left:1px; - margin:0; - white-space:pre; -} -.caption a:link, .caption a:visited { - color:#1f389c; -} -.caption a:hover, -.caption a:active { - color:#FFFFFF; -} -.caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -div.table-tabs { - padding:10px 0 0 1px; - margin:0; -} -div.table-tabs > button { - border: none; - cursor: pointer; - padding: 5px 12px 7px 12px; - font-weight: bold; - margin-right: 3px; -} -div.table-tabs > button.active-table-tab { - background: #F8981D; - color: #253441; -} -div.table-tabs > button.table-tab { - background: #4D7A97; - color: #FFFFFF; -} -.two-column-summary { - display: grid; - grid-template-columns: minmax(15%, max-content) minmax(15%, auto); -} -.three-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); -} -.four-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); -} -@media screen and (max-width: 600px) { - .two-column-summary { - display: grid; - grid-template-columns: 1fr; - } -} -@media screen and (max-width: 800px) { - .three-column-summary { - display: grid; - grid-template-columns: minmax(10%, max-content) minmax(25%, auto); - } - .three-column-summary .col-last { - grid-column-end: span 2; - } -} -@media screen and (max-width: 1000px) { - .four-column-summary { - display: grid; - grid-template-columns: minmax(15%, max-content) minmax(15%, auto); - } -} -.summary-table > div, .details-table > div { - text-align:left; - padding: 8px 3px 3px 7px; -} -.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { - vertical-align:top; - padding-right:0; - padding-top:8px; - padding-bottom:3px; -} -.table-header { - background:#dee3e9; - font-weight: bold; -} -.col-first, .col-first { - font-size:13px; -} -.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { - font-size:13px; -} -.col-first, .col-second, .col-constructor-name { - vertical-align:top; - overflow: auto; -} -.col-last { - white-space:normal; -} -.col-first a:link, .col-first a:visited, -.col-second a:link, .col-second a:visited, -.col-first a:link, .col-first a:visited, -.col-second a:link, .col-second a:visited, -.col-constructor-name a:link, .col-constructor-name a:visited, -.col-summary-item-name a:link, .col-summary-item-name a:visited, -.constant-values-container a:link, .constant-values-container a:visited, -.all-classes-container a:link, .all-classes-container a:visited, -.all-packages-container a:link, .all-packages-container a:visited { - font-weight:bold; -} -.table-sub-heading-color { - background-color:#EEEEFF; -} -.even-row-color, .even-row-color .table-header { - background-color:#FFFFFF; -} -.odd-row-color, .odd-row-color .table-header { - background-color:#EEEEEF; -} -/* - * Styles for contents. - */ -.deprecated-content { - margin:0; - padding:10px 0; -} -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} -.col-last div { - padding-top:0; -} -.col-last a { - padding-bottom:3px; -} -.module-signature, -.package-signature, -.type-signature, -.member-signature { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - margin:14px 0; - white-space: pre-wrap; -} -.module-signature, -.package-signature, -.type-signature { - margin-top: 0; -} -.member-signature .type-parameters-long, -.member-signature .parameters, -.member-signature .exceptions { - display: inline-block; - vertical-align: top; - white-space: pre; -} -.member-signature .type-parameters { - white-space: normal; -} -/* - * Styles for formatting effect. - */ -.source-line-no { - color:green; - padding:0 30px 0 0; -} -h1.hidden { - visibility:hidden; - overflow:hidden; - font-size:10px; -} -.block { - display:block; - margin:0 10px 5px 0; - color:#474747; -} -.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, -.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, -.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { - font-weight:bold; -} -.deprecation-comment, .help-footnote, .preview-comment { - font-style:italic; -} -.deprecation-block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - border-style:solid; - border-width:thin; - border-radius:10px; - padding:10px; - margin-bottom:10px; - margin-right:10px; - display:inline-block; -} -.preview-block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; - border-style:solid; - border-width:thin; - border-radius:10px; - padding:10px; - margin-bottom:10px; - margin-right:10px; - display:inline-block; -} -div.block div.deprecation-comment { - font-style:normal; -} -/* - * Styles specific to HTML5 elements. - */ -main, nav, header, footer, section { - display:block; -} -/* - * Styles for javadoc search. - */ -.ui-autocomplete-category { - font-weight:bold; - font-size:15px; - padding:7px 0 7px 3px; - background-color:#4D7A97; - color:#FFFFFF; -} -.result-item { - font-size:13px; -} -.ui-autocomplete { - max-height:85%; - max-width:65%; - overflow-y:scroll; - overflow-x:scroll; - white-space:nowrap; - box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); -} -ul.ui-autocomplete { - position:fixed; - z-index:999999; - background-color: #FFFFFF; -} -ul.ui-autocomplete li { - float:left; - clear:both; - width:100%; -} -.result-highlight { - font-weight:bold; -} -.ui-autocomplete .result-item { - font-size: inherit; -} -#search-input { - background-image:url('resources/glass.png'); - background-size:13px; - background-repeat:no-repeat; - background-position:2px 3px; - padding-left:20px; - position:relative; - right:-18px; - width:400px; -} -#reset-button { - background-color: rgb(255,255,255); - background-image:url('resources/x.png'); - background-position:center; - background-repeat:no-repeat; - background-size:12px; - border:0 none; - width:16px; - height:16px; - position:relative; - left:-4px; - top:-4px; - font-size:0px; -} -.watermark { - color:#545454; -} -.search-tag-desc-result { - font-style:italic; - font-size:11px; -} -.search-tag-holder-result { - font-style:italic; - font-size:12px; -} -.search-tag-result:target { - background-color:yellow; -} -.module-graph span { - display:none; - position:absolute; -} -.module-graph:hover span { - display:block; - margin: -100px 0 0 100px; - z-index: 1; -} -.inherited-list { - margin: 10px 0 10px 0; -} -section.class-description { - line-height: 1.4; -} -.summary section[class$="-summary"], .details section[class$="-details"], -.class-uses .detail, .serialized-class-details { - padding: 0px 20px 5px 10px; - border: 1px solid #ededed; - background-color: #f8f8f8; -} -.inherited-list, section[class$="-details"] .detail { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -.vertical-separator { - padding: 0 5px; -} -ul.help-section-list { - margin: 0; -} -ul.help-subtoc > li { - display: inline-block; - padding-right: 5px; - font-size: smaller; -} -ul.help-subtoc > li::before { - content: "\2022" ; - padding-right:2px; -} -span.help-note { - font-style: italic; -} -/* - * Indicator icon for external links. - */ -main a[href*="://"]::after { - content:""; - display:inline-block; - background-image:url('data:image/svg+xml; utf8, \ - \ - \ - '); - background-size:100% 100%; - width:7px; - height:7px; - margin-left:2px; - margin-bottom:4px; -} -main a[href*="://"]:hover::after, -main a[href*="://"]:focus::after { - background-image:url('data:image/svg+xml; utf8, \ - \ - \ - '); -} - -/* - * Styles for user-provided tables. - * - * borderless: - * No borders, vertical margins, styled caption. - * This style is provided for use with existing doc comments. - * In general, borderless tables should not be used for layout purposes. - * - * plain: - * Plain borders around table and cells, vertical margins, styled caption. - * Best for small tables or for complex tables for tables with cells that span - * rows and columns, when the "striped" style does not work well. - * - * striped: - * Borders around the table and vertical borders between cells, striped rows, - * vertical margins, styled caption. - * Best for tables that have a header row, and a body containing a series of simple rows. - */ - -table.borderless, -table.plain, -table.striped { - margin-top: 10px; - margin-bottom: 10px; -} -table.borderless > caption, -table.plain > caption, -table.striped > caption { - font-weight: bold; - font-size: smaller; -} -table.borderless th, table.borderless td, -table.plain th, table.plain td, -table.striped th, table.striped td { - padding: 2px 5px; -} -table.borderless, -table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, -table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { - border: none; -} -table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { - background-color: transparent; -} -table.plain { - border-collapse: collapse; - border: 1px solid black; -} -table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { - background-color: transparent; -} -table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, -table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { - border: 1px solid black; -} -table.striped { - border-collapse: collapse; - border: 1px solid black; -} -table.striped > thead { - background-color: #E3E3E3; -} -table.striped > thead > tr > th, table.striped > thead > tr > td { - border: 1px solid black; -} -table.striped > tbody > tr:nth-child(even) { - background-color: #EEE -} -table.striped > tbody > tr:nth-child(odd) { - background-color: #FFF -} -table.striped > tbody > tr > th, table.striped > tbody > tr > td { - border-left: 1px solid black; - border-right: 1px solid black; -} -table.striped > tbody > tr > th { - font-weight: normal; -} -/** - * Tweak font sizes and paddings for small screens. - */ -@media screen and (max-width: 1050px) { - #search-input { - width: 300px; - } -} -@media screen and (max-width: 800px) { - #search-input { - width: 200px; - } - .top-nav, - .bottom-nav { - font-size: 11px; - padding-top: 6px; - } - .sub-nav { - font-size: 11px; - } - .about-language { - padding-right: 16px; - } - ul.nav-list li, - .sub-nav .nav-list-search { - padding: 6px; - } - ul.sub-nav-list li { - padding-top: 5px; - } - main { - padding: 10px; - } - .summary section[class$="-summary"], .details section[class$="-details"], - .class-uses .detail, .serialized-class-details { - padding: 0 8px 5px 8px; - } - body { - -webkit-text-size-adjust: none; - } -} -@media screen and (max-width: 500px) { - #search-input { - width: 150px; - } - .top-nav, - .bottom-nav { - font-size: 10px; - } - .sub-nav { - font-size: 10px; - } - .about-language { - font-size: 10px; - padding-right: 12px; - } -} diff --git a/docs/apidocs/tag-search-index.js b/docs/apidocs/tag-search-index.js deleted file mode 100644 index bf10aaf..0000000 --- a/docs/apidocs/tag-search-index.js +++ /dev/null @@ -1 +0,0 @@ -tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/type-search-index.js b/docs/apidocs/type-search-index.js deleted file mode 100644 index 2a19781..0000000 --- a/docs/apidocs/type-search-index.js +++ /dev/null @@ -1 +0,0 @@ -typeSearchIndex = [{"p":"codes.thischwa.cf.model","l":"AbstractEntity"},{"p":"codes.thischwa.cf.model","l":"AbstractMultipleResponse"},{"p":"codes.thischwa.cf.model","l":"AbstractResponse"},{"p":"codes.thischwa.cf.model","l":"AbstractSingleResponse"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"codes.thischwa.cf.model","l":"BatchEntry"},{"p":"codes.thischwa.cf.model","l":"BatchResponse"},{"p":"codes.thischwa.cf","l":"CfDnsClient"},{"p":"codes.thischwa.cf","l":"CfDnsClientBuilder"},{"p":"codes.thischwa.cf","l":"CfRequest"},{"p":"codes.thischwa.cf","l":"CloudflareApiException"},{"p":"codes.thischwa.cf","l":"CloudflareNotFoundException"},{"p":"codes.thischwa.cf.model","l":"ResponseResultInfo.Error"},{"p":"codes.thischwa.cf.model","l":"PagingRequest"},{"p":"codes.thischwa.cf.model","l":"RecordEntity"},{"p":"codes.thischwa.cf.model","l":"RecordMultipleResponse"},{"p":"codes.thischwa.cf.fluent","l":"RecordOperations"},{"p":"codes.thischwa.cf.fluent","l":"RecordOperationsImpl"},{"p":"codes.thischwa.cf.model","l":"RecordSingleResponse"},{"p":"codes.thischwa.cf.model","l":"RecordType"},{"p":"codes.thischwa.cf.model","l":"ResponseEntity"},{"p":"codes.thischwa.cf.model","l":"ResponseResultInfo"},{"p":"codes.thischwa.cf.model","l":"ResultInfo"},{"p":"codes.thischwa.cf.model","l":"ZoneEntity"},{"p":"codes.thischwa.cf.model","l":"ZoneMultipleResponse"},{"p":"codes.thischwa.cf.fluent","l":"ZoneOperations"},{"p":"codes.thischwa.cf.fluent","l":"ZoneOperationsImpl"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index ed6d157..0000000 --- a/docs/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Cloudflare DNS Client - java - - -

      Cloudflare DNS Client - java

      -

      A Java-based client for interacting with the Cloudflare DNS API.

      -

      - View API Documentation -

      - - \ No newline at end of file diff --git a/pom.xml b/pom.xml index 68f7132..4ab992e 100644 --- a/pom.xml +++ b/pom.xml @@ -275,33 +275,4 @@ - - - - javadoc - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - generate-javadoc - prepare-package - - javadoc - - - ${project.basedir}/docs - ${project.build.directory}/delombok - - - - - - - - -