Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
* <p>
* 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 {

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
*/
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading