com.amazonaws.services.s3.S3ResponseMetadata Java Examples
The following examples show how to use
com.amazonaws.services.s3.S3ResponseMetadata.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DummyS3Client.java From ignite with Apache License 2.0 | 4 votes |
/** Unsupported Operation. */ @Override public S3ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest req) { throw new UnsupportedOperationException("Operation not supported"); }
Example #2
Source File: MockAmazonS3.java From tajo with Apache License 2.0 | 4 votes |
@Override public S3ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request) { throw new TajoInternalError(new UnsupportedException()); }
Example #3
Source File: AmazonS3Stub.java From aws-java-sdk-stubs with Apache License 2.0 | 4 votes |
@Override public S3ResponseMetadata getCachedResponseMetadata(final AmazonWebServiceRequest request) { throw new UnsupportedOperationException(); }
Example #4
Source File: AmazonS3Mock.java From Scribengin with GNU Affero General Public License v3.0 | 4 votes |
@Override public S3ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request) { // TODO Auto-generated method stub return null; }