- Move mapping key from Protected to PNObject
This commit is contained in:
parent
83bec2d75a
commit
9e63928c8b
@ -8,14 +8,6 @@
|
||||
|
||||
#import "PNObject.h"
|
||||
|
||||
#pragma mark MappingSelector Keys
|
||||
|
||||
extern NSString* _Nonnull const PNObjectMappingKey;
|
||||
extern NSString* _Nonnull const PNObjectMappingType;
|
||||
extern NSString* _Nonnull const PNObjectMappingSelector;
|
||||
|
||||
#pragma mark -
|
||||
|
||||
@interface PNObject (Protected)
|
||||
/**
|
||||
* <#Description#>
|
||||
|
||||
@ -11,13 +11,7 @@
|
||||
#import <NSDate_Utils/NSDate+NSDate_Util.h>
|
||||
#import "objc/runtime.h"
|
||||
|
||||
extern NSString* _Nonnull const PNObjectMappingKey;
|
||||
extern NSString* _Nonnull const PNObjectMappingType;
|
||||
extern NSString* _Nonnull const PNObjectMappingSelector;
|
||||
|
||||
NSString * const PNObjectMappingKey = @"PNObjectLocalNotificationRefreshTokenClientCredentialSuccess";
|
||||
NSString * const PNObjectMappingType = @"PNObjectLocalNotificationRefreshTokenClientCredentialFail";
|
||||
NSString * const PNObjectMappingSelector = @"PNObjectLocalNotificationRefreshTokenClientCredentialFail";
|
||||
|
||||
@implementation PNObject (Protected)
|
||||
|
||||
@ -51,8 +45,8 @@ NSString * const PNObjectMappingSelector = @"PNObjectLocalNotificationRefreshTok
|
||||
id mappingValue = [[[self class] objcetMapping] valueForKey:propertyName];
|
||||
|
||||
if([mappingValue isKindOfClass:NSDictionary.class]) {
|
||||
mappedJSONKey = [mappingValue valueForKey:@"key"];
|
||||
mappedJSONType = [mappingValue valueForKey:@"type"];
|
||||
mappedJSONKey = [mappingValue valueForKey:PNObjectMappingKey];
|
||||
mappedJSONType = [mappingValue valueForKey:PNObjectMappingType];
|
||||
} else {
|
||||
mappedJSONKey = mappingValue;
|
||||
}
|
||||
|
||||
@ -10,6 +10,14 @@
|
||||
#import "PNObjectConfig.h"
|
||||
#import "PNObjectModel.h"
|
||||
|
||||
#pragma mark MappingSelector Keys
|
||||
|
||||
extern NSString* _Nonnull const PNObjectMappingKey;
|
||||
extern NSString* _Nonnull const PNObjectMappingType;
|
||||
extern NSString* _Nonnull const PNObjectMappingSelector;
|
||||
|
||||
#pragma mark -
|
||||
|
||||
@protocol PNObjectSubclassing <NSObject>
|
||||
|
||||
@required
|
||||
|
||||
@ -17,6 +17,10 @@
|
||||
|
||||
#define PNOBJECT_DIR @"PNObjects"
|
||||
|
||||
NSString * const PNObjectMappingKey = @"key";
|
||||
NSString * const PNObjectMappingType = @"type";
|
||||
NSString * const PNObjectMappingSelector = @"selector";
|
||||
|
||||
|
||||
@interface PNObject() <PNObjectPersistency,PNObjectSubclassing>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user