Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
MPOAuthURLRequest.h
Go to the documentation of this file.
1 //
2 // MPOAuthURLRequest.h
3 // MPOAuthConnection
4 //
5 // Created by Karl Adam on 08.12.05.
6 // Copyright 2008 matrixPointer. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 @interface MPOAuthURLRequest : NSObject {
13 @private
14  NSURL *_url;
15  NSString *_httpMethod;
16  NSURLRequest *_urlRequest;
17  NSMutableArray *_parameters;
18 }
19 
20 @property (nonatomic, readwrite, retain) NSURL *url;
21 @property (nonatomic, readwrite, retain) NSString *HTTPMethod;
22 @property (nonatomic, readonly, retain) NSURLRequest *urlRequest;
23 @property (nonatomic, readwrite, retain) NSMutableArray *parameters;
24 
25 - (id)initWithURL:(NSURL *)inURL andParameters:(NSArray *)parameters;
26 - (id)initWithURLRequest:(NSURLRequest *)inRequest;
27 
28 - (void)addParameters:(NSArray *)inParameters;
29 
30 - (NSMutableURLRequest*)urlRequestSignedWithSecret:(NSString *)inSecret usingMethod:(NSString *)inScheme;
31 
32 @end