forked from molgenis/molgenis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Format source code using mvn fmt:format
- Loading branch information
Showing
1,752 changed files
with
157,618 additions
and
165,241 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
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
20 changes: 13 additions & 7 deletions
20
...nis-amazon-bucket/src/main/java/org/molgenis/amazon/bucket/client/AmazonBucketClient.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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
package org.molgenis.amazon.bucket.client; | ||
|
||
import com.amazonaws.services.s3.AmazonS3; | ||
import org.molgenis.data.file.FileStore; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import org.molgenis.data.file.FileStore; | ||
|
||
public interface AmazonBucketClient | ||
{ | ||
AmazonS3 getClient(String accessKey, String secretKey, String region); | ||
public interface AmazonBucketClient { | ||
AmazonS3 getClient(String accessKey, String secretKey, String region); | ||
|
||
File downloadFile(AmazonS3 s3Client, FileStore fileStore, String jobIdentifier, String bucketName, String keyName, | ||
String extension, boolean isExpression, String targetEntityType) throws IOException; | ||
File downloadFile( | ||
AmazonS3 s3Client, | ||
FileStore fileStore, | ||
String jobIdentifier, | ||
String bucketName, | ||
String keyName, | ||
String extension, | ||
boolean isExpression, | ||
String targetEntityType) | ||
throws IOException; | ||
} |
Oops, something went wrong.