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
4 changes: 3 additions & 1 deletion docs/Libraries/java/cap-ams.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ cds:
security:
authorization:
ams:
edge-service:
url: http://localhost:8080 # Edge service URL (optional)
bundle-loader:
polling-interval: 20000 # Bundle update polling interval in ms (default: 20000)
initial-retry-delay: 1000 # Initial retry delay after failure in ms (default: 1000)
max-retry-delay: 20000 # Maximum retry delay in ms (default: 20000)
retry-delay-factor: 2 # Exponential backoff factor (default: 2)
features:
generateExists: true # Generate EXISTS predicates for filter attributes behind 1:N associations (default: true)
```
```
6 changes: 6 additions & 0 deletions docs/Libraries/java/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Version 4

### 4.1.0

- Feature: added configuration option for fetching authorization bundles from an AMS Edge Service.
- Fix: Support for multiple Mock Policy Assignment sources (file-path, map structure) has been added to prevent startup errors when a file-path is configured in the Spring properties.
- Fix: added DEBUG log when the AMS CAP Plugin falls back to `UserInfo#getTenant` or `UserInfo#getId` because `app_tid` and/or `scim_id` claims cannot be found on `UserInfo` to allow analysis when policy assignments of a user unexpectedly do not apply.

### 4.0.7

- Fix: Read Number constants from DCN as `Double` instead of `Long/Int` to avoid runtime errors when comparing with `Double` attribute input
Expand Down
5 changes: 4 additions & 1 deletion docs/Libraries/java/spring-boot-ams.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ Configure the starter in `application.yml`:
```yaml
sap:
ams:
edge-service:
url: http://localhost:8080 # Edge service URL (optional)

bundle-loader:
polling-interval: 20000 # Bundle update polling interval in ms (default: 20000)
initial-retry-delay: 1000 # Initial retry delay after failure in ms (default: 1000)
Expand All @@ -185,4 +188,4 @@ sap:
enabled: true # Enable health indicator (default: true)
readiness:
enabled: true # Enable readiness state contributor (default: true)
```
```
Loading