NetIQ Mobile SDK for iOS  2.0
Access Manager iOS Framework for OAuth & OIDC
MFConstants.h
1 //
2 // MFConstants.h
3 // MFAuthLib
4 //
5 // Created by MicroFocus on 4/28/17.
6 // Copyright © 2017 Microfocus. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface MFConstants : NSObject
12 
13 #
14 extern NSString *const kNIDP_ISSUER_PATH;
15 extern NSString *const kOAUTH_AUTHZ_EP;
16 extern NSString *const kOAUTH_TOKEN_EP;
17 extern NSString *const kOAUTH_REVOKE_EP;
18 extern NSString *const kOAUTH_USERINFO_EP;
19 
20 extern NSString *const kNIDP_LOGOUT_EP;
21 
22 extern NSString *const kAppAuthExampleAuthStateKey;
23 
24 #
25 extern NSString * const kRevocationEndpointKey;
26 extern NSString * const kUserinfoEndpointKey;
27 extern NSString * const kBrowserLogoutEndpointKey;
28 
29 #
30 
31 
32 @end
Definition: MFConstants.m:11