Package com.amazonaws.services.glacier

Examples of com.amazonaws.services.glacier.AmazonGlacierClient


     *            The AWS credentials provider used to authenticate requests.
     * @param clientConfiguration
     *            Client specific options, such as proxy settings, retries, and timeouts.
     */
    public ArchiveTransferManager(AWSCredentialsProvider credentialsProvider, ClientConfiguration clientConfiguration) {
        this(new AmazonGlacierClient(credentialsProvider, clientConfiguration), credentialsProvider, clientConfiguration);
    }
View Full Code Here


  public AbstractCommand(final URL endpoint, final File credentials) throws IOException {
    this.log = LogFactory.getLog(this.getClass());

    if (credentials != null) {
      this.credentials = new PropertiesCredentials(credentials);
      this.client = new AmazonGlacierClient(this.credentials);
      this.sqs = new AmazonSQSClient(this.credentials);
      this.sns = new AmazonSNSClient(this.credentials);
    }

    if (endpoint != null) {
View Full Code Here

TOP

Related Classes of com.amazonaws.services.glacier.AmazonGlacierClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.