Package org.jclouds.glacier.util

Examples of org.jclouds.glacier.util.AWSRequestSignerV4


   @Inject
   public RequestAuthorizeSignature(@TimeStamp Provider<String> timeStampProvider,
         @org.jclouds.location.Provider Supplier<Credentials> creds, Crypto crypto, HttpUtils utils) {
      checkNotNull(creds, "creds");
      this.signer = new AWSRequestSignerV4(creds.get().identity, creds.get().credential, checkNotNull(crypto, "crypto"));
      this.timeStampProvider = checkNotNull(timeStampProvider, "timeStampProvider");
      this.utils = checkNotNull(utils, "utils");
   }
View Full Code Here

TOP

Related Classes of org.jclouds.glacier.util.AWSRequestSignerV4

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.