mirror of https://github.com/apache/jclouds.git
Added dummy method implementation to meet new reqs imposed by JetS3t version 0.7.1
git-svn-id: http://jclouds.googlecode.com/svn/trunk@825 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
9998e6a40c
commit
60c25b0a8d
|
@ -35,6 +35,7 @@ import org.jets3t.service.acl.AccessControlList;
|
|||
import org.jets3t.service.model.S3Bucket;
|
||||
import org.jets3t.service.model.S3BucketLoggingStatus;
|
||||
import org.jets3t.service.model.S3Object;
|
||||
import org.jets3t.service.model.S3Owner;
|
||||
import org.jets3t.service.security.AWSCredentials;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -47,6 +48,7 @@ import java.util.concurrent.TimeUnit;
|
|||
* A JetS3t S3Service implemented by JClouds
|
||||
*
|
||||
* @author Adrian Cole
|
||||
* @author James Murty
|
||||
*/
|
||||
public class JCloudsS3Service extends S3Service {
|
||||
|
||||
|
@ -278,4 +280,10 @@ public class JCloudsS3Service extends S3Service {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
protected S3Owner getAccountOwnerImpl() throws S3ServiceException {
|
||||
// TODO Unimplemented
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue