File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed
MSAL/src/configuration/external/ios Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ @interface MSALLegacySharedADALAccount()
39
39
@property (nonatomic , readwrite ) NSString *environment;
40
40
@property (nonatomic , readwrite ) NSString *identifier;
41
41
@property (nonatomic , readwrite ) NSDictionary *accountClaims;
42
+ @property (nonatomic , readwrite ) NSArray <MSALTenantProfile *> *tenantProfiles;
43
+ @property (nonatomic , readwrite ) MSALAccountId *homeAccountId;
44
+ @property (nonatomic , readwrite ) BOOL isSSOAccount;
42
45
43
46
@end
44
47
Original file line number Diff line number Diff line change 25
25
26
26
@class MSIDJsonObject;
27
27
@class MSALAccountEnumerationParameters;
28
- @class MSALAccountId;
29
28
@protocol MSALAccount;
30
29
31
30
// Every time there's a new field added, version update is required
@@ -57,9 +56,6 @@ NS_ASSUME_NONNULL_BEGIN
57
56
@property (nonatomic , readonly ) NSString *accountIdentifier;
58
57
@property (nonatomic , readonly ) NSDictionary *signinStatusDictionary;
59
58
@property (nonatomic , readonly ) NSString *username;
60
- @property (nonatomic , readonly ) NSArray <MSALTenantProfile *> *tenantProfiles;
61
- @property (nonatomic , readonly ) MSALAccountId *homeAccountId;
62
- @property (nonatomic , readonly ) BOOL isSSOAccount;
63
59
64
60
- (nullable instancetype )initWithJSONDictionary : (NSDictionary *)jsonDictionary error : (NSError * _Nullable * _Nullable)error ;
65
61
- (BOOL )matchesParameters : (MSALAccountEnumerationParameters *)parameters ;
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ @interface MSALLegacySharedAccount()
31
31
32
32
@property (nonatomic , readwrite ) NSDictionary *jsonDictionary;
33
33
@property (nonatomic , readwrite ) NSString *username;
34
- @property (nonatomic , readwrite ) NSArray <MSALTenantProfile *> *tenantProfiles;
35
- @property (nonatomic , readwrite ) MSALAccountId *homeAccountId;
36
- @property (nonatomic , readwrite ) BOOL isSSOAccount;
37
34
@end
38
35
39
36
static NSDateFormatter *s_updateDateFormatter = nil ;
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ @interface MSALLegacySharedMSAAccount()
37
37
@property (nonatomic , readwrite ) NSString *environment;
38
38
@property (nonatomic , readwrite ) NSString *identifier;
39
39
@property (nonatomic , readwrite ) NSDictionary *accountClaims;
40
-
40
+ @property (nonatomic , readwrite ) NSArray <MSALTenantProfile *> *tenantProfiles;
41
+ @property (nonatomic , readwrite ) MSALAccountId *homeAccountId;
42
+ @property (nonatomic , readwrite ) BOOL isSSOAccount;
41
43
@end
42
44
43
45
static NSString *kDefaultCacheAuthority = @" https://login.windows.net/common" ;
You can’t perform that action at this time.
0 commit comments