CocoaShare/Classes/Dropbox/DropboxSDK/MPOAuth/MPOAuthURLResponse.m

42 lines
741 B
Mathematica
Raw Normal View History

2011-02-01 09:51:02 -06:00
//
// MPOAuthURLResponse.m
// MPOAuthConnection
//
// Created by Karl Adam on 08.12.05.
// Copyright 2008 matrixPointer. All rights reserved.
//
#import "MPOAuthURLResponse.h"
@implementation MPOAuthURLResponse
- (id)init {
if (self = [super init]) {
}
return self;
}
- (void)dealloc {
[urlResponse release];
[oauthParameters release];
[super dealloc];
}
- (void)setResponse:(NSURLResponse *)theResponse {
[urlResponse release];
urlResponse = [theResponse retain];
}
- (NSURLResponse *)response {
return urlResponse;
}
- (void)setOauthParameters:(NSDictionary *)theParameters {
[oauthParameters release];
oauthParameters = [theParameters retain];
}
- (NSDictionary *)oauthParameters {
return oauthParameters;
}
@end