hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
//  TWTRAuthConfigStore.h
//  TwitterCore
//
//  Created by Chase Latta on 10/8/15.
//  Copyright © 2015 Twitter Inc. All rights reserved.
//
 
#import <Foundation/Foundation.h>
@class TWTRAuthConfig;
 
NS_ASSUME_NONNULL_BEGIN
 
@interface TWTRAuthConfigStore : NSObject
 
- (instancetype)init NS_UNAVAILABLE;
 
/**
 * Initializes the auth config store
 *
 * @param nameSpace the namespace to associate with this store.
 */
- (instancetype)initWithNameSpace:(NSString *)nameSpace;
 
/**
 * Saves the given auth config replacing the last saved config.
 */
- (void)saveAuthConfig:(TWTRAuthConfig *)authConfig;
 
/**
 * Returns the auth config object that was last saved or nil
 * if there is none.
 */
- (nullable TWTRAuthConfig *)lastSavedAuthConfig;
 
/**
 * Removes the last saved auth config.
 */
- (void)forgetAuthConfig;
 
@end
 
NS_ASSUME_NONNULL_END