Skip to content

Commit

Permalink
Readme fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 committed Feb 18, 2025
1 parent 121a50f commit 457a81d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Operation-Expiration.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Every operation should have an expiration time. An expired operation cannot be c
## Retrieving Expiration Time

### UserOperation
The `UserOperation` provided by the `IOperations` service has its expiration time inside the `expires` property.
The `UserOperation` provided by the `OperationService` has its expiration time inside the `expires` property.

### Custom Operation
If you're creating your own custom operation by implementing the `IOperation` interface, you need to provide the expiration time by yourself. The expiration time is optional because it's not part of the operation signature.
Expand Down Expand Up @@ -38,7 +38,7 @@ Utility class that will observe operations and inform you when it expires.

```kotlin
// Sample implementation of a class that's using the OperationExpirationWatcher
class OperationsManager(private val ops: IOperationsService) {
class OperationsManager(private val ops: OperationsService) {

private val operationWatcher = OperationExpirationWatcher()

Expand Down
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ If you need to upgrade the Wultra Mobile Token SDK for Android to a newer versio
<!-- begin remove -->
## Integration Tutorials
- [SDK Integration](SDK-Integration.md)
- [Example Usage](./Example-Usage.md)
- [Using Operations Service](Using-Operations-Service.md)
- [Using Push Service](Using-Push-Service.md)
- [Using Inbox Service](Using-Inbox-Service.md)
Expand Down
3 changes: 3 additions & 0 deletions docs/_Sidebar.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
**Tutorials**

- [SDK Integration](./SDK-Integration.md)
- [Example Usage](./Example-Usage.md)
- [Using Operations Service](./Using-Operations-Service.md)
- [Using Push Service](./Using-Push-Service.md)
- [Using Inbox Service](./Using-Inbox-Service.md)
- [Using OIDC Service](./Using-OIDC-Service.md)
- [Operation Expiration Handling](Operation-Expiration.md)
- [Error Handling](./Error-Handling.md)
- [Language Configuration](./Language-Configuration.md)
- [Logging](Logging.md)

**Other**

Expand Down

0 comments on commit 457a81d

Please sign in to comment.