From ebfc07b00cffdd5bc8b52ba388a73edb4e37b7c3 Mon Sep 17 00:00:00 2001 From: zHd4 <38856321+zHd4@users.noreply.github.com> Date: Fri, 24 Jul 2026 17:53:58 +0200 Subject: [PATCH 1/2] Fix Javadoc to use authentication instead of authorization in AndroidServiceEntry --- .../src/main/java/app/notesr/service/AndroidServiceEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/java/app/notesr/service/AndroidServiceEntry.java b/service/src/main/java/app/notesr/service/AndroidServiceEntry.java index 57d15345..72bc3f54 100644 --- a/service/src/main/java/app/notesr/service/AndroidServiceEntry.java +++ b/service/src/main/java/app/notesr/service/AndroidServiceEntry.java @@ -53,7 +53,7 @@ public final class AndroidServiceEntry { private boolean autoStart; /** - * Indicates whether the service requires user authorization before it + * Indicates whether the service requires user authentication before it * can be started or accessed. */ @JsonProperty(index = 5) From 85032b5806bd6ef8094c6b9f2aa4403668224bba Mon Sep 17 00:00:00 2001 From: zHd4 <38856321+zHd4@users.noreply.github.com> Date: Fri, 24 Jul 2026 17:54:02 +0200 Subject: [PATCH 2/2] Fix Javadoc to use authentication instead of authorization in AndroidServiceBootstrapper --- .../java/app/notesr/service/AndroidServiceBootstrapper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service/src/main/java/app/notesr/service/AndroidServiceBootstrapper.java b/service/src/main/java/app/notesr/service/AndroidServiceBootstrapper.java index 0388683f..ec9335ed 100644 --- a/service/src/main/java/app/notesr/service/AndroidServiceBootstrapper.java +++ b/service/src/main/java/app/notesr/service/AndroidServiceBootstrapper.java @@ -17,7 +17,7 @@ *

* This class handles the initialization and execution of services registered in the * {@link AndroidServiceRegistry}, distinguishing between those that can run immediately - * and those that require user authorization (and thus access to {@link CryptoSecrets}). + * and those that require user authentication (and thus access to {@link CryptoSecrets}). */ @RequiredArgsConstructor public final class AndroidServiceBootstrapper { @@ -25,7 +25,7 @@ public final class AndroidServiceBootstrapper { private final AndroidServiceRegistry registry; /** - * Starts all auto-start services that do not require authorization. + * Starts all auto-start services that do not require authentication. * * @param context the Android application context used to initialize services */ @@ -38,7 +38,7 @@ public void startServicesPreAuth(Context context) { } /** - * Starts all auto-start services that require authorization. + * Starts all auto-start services that require authentication. * * @param context the Android application context used to initialize services * @param secrets the cryptographic secrets required for authenticated services