mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-03 10:45:51 +00:00
20 lines
473 B
Objective-C
20 lines
473 B
Objective-C
//
|
|
// RemoteS3Signer.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 12/30/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
|
|
#import "S3Signer.h"
|
|
|
|
@interface RemoteS3Signer : NSObject <S3Signer> {
|
|
NSString *accessKey;
|
|
NSURL *url;
|
|
NSString *account;
|
|
NSString *password;
|
|
}
|
|
+ (NSString *)errorDomain;
|
|
- (id)initWithAccessKey:(NSString *)theAccessKey url:(NSURL *)theURL account:(NSString *)theAccount password:(NSString *)thePassword;
|
|
@end
|