-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: regions endpoint signature changes (#81)
Co-authored-by: Glaucio Jannotti <[email protected]>
- Loading branch information
1 parent
e62bf09
commit 3084b54
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
extensions/core-ionos-s3/src/main/java/com/ionos/edc/extension/s3/api/S3Regions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2024 IONOS | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* IONOS | ||
* | ||
*/ | ||
|
||
package com.ionos.edc.extension.s3.api; | ||
|
||
import java.util.List; | ||
|
||
public class S3Regions { | ||
|
||
private List<S3Region> items; | ||
|
||
public List<S3Region> getItems() { | ||
return items; | ||
} | ||
|
||
public void setItems(List<S3Region> items) { | ||
this.items = items; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters