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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
- **Improvement:** Support additional properties in models
- `serverupdate`: [v0.1.2](services/serverupdate/CHANGELOG.md#v012)
- **Improvement:** Support additional properties in models
- `sfs`: [v0.1.0](services/sfs/CHANGELOG.md#v010)
- Initial onboarding of STACKIT Java SDK for STACKIT File Storage (SFS) service

## Release (2026-01-27)
- `core`: [v0.4.1](core/CHANGELOG.md/#v041)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public static void main(String[] args) throws IOException {
httpClient
.newBuilder()
.authenticator(authenticator)
// The object storage requests are sychronous and may take a few seconds.
// To prevent an timeout, we increase the read timeout to 15 seconds
// The object storage requests are synchronous and may take a few seconds.
// To prevent a timeout, we increase the read timeout to 15 seconds
.readTimeout(Duration.ofSeconds(15))
.build();

Expand Down
6 changes: 6 additions & 0 deletions examples/sfs/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies {
implementation project (':services:sfs')
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
}

ext.mainClassName = 'cloud.stackit.sdk.sfs.examples.SfsExample'
Loading