public interface S3Service
Modifier and Type | Method and Description |
---|---|
CopyObjectResult |
copyObject(String bucket,
String srcKey,
String dstKey)
Create a copy of an object inside a bucket
|
boolean |
exists(String bucket,
String key)
Return true if this key exists in this bucket.
|
String |
getRegion()
Return the region we are operating on
|
PutObjectResult |
putFile(String bucket,
String key,
File file)
Copy a file from the local file system to a bucket using UTF8
|
PutObjectResult |
putFile(String bucket,
String key,
File file,
String encoding)
Copy a file from the local file system to a bucket using the indicated encoding
|
String |
readObjectToString(String bucket,
String key)
Read the contents of an object into a string using UTF8
|
PutObjectResult |
writeStringToObject(String bucket,
String key,
String data)
Write a string to a bucket using UTF8
|
CopyObjectResult copyObject(String bucket, String srcKey, String dstKey)
String readObjectToString(String bucket, String key)
PutObjectResult writeStringToObject(String bucket, String key, String data)
PutObjectResult putFile(String bucket, String key, File file)
PutObjectResult putFile(String bucket, String key, File file, String encoding)
Copyright © 2004–2014 The Kuali Foundation. All rights reserved.