-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathODWPrivacyConcernMetadataProvider.mm
More file actions
51 lines (38 loc) · 1.32 KB
/
ODWPrivacyConcernMetadataProvider.mm
File metadata and controls
51 lines (38 loc) · 1.32 KB
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
44
45
46
47
48
49
50
51
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
#import <Foundation/Foundation.h>
#import "ODWPrivacyConcernMetadataProvider.h"
/*!
@brief Represents a metadata provider for privacy concern events.
*/
@implementation ODWPrivacyConcernMetadataProvider : NSObject
- (NSString *)getDatabaseNameForRecord:(id)record {
return @""; // Default implementation
}
- (NSString *)getServerNameForRecord:(id)record {
return @""; // Default implementation
}
- (NSString *)getEventLocatorNameForRecord:(id)record {
return @"BaseType"; // Default implementation
}
- (NSString *)getEventLocatorValueForRecord:(id)record {
return [record baseType]; // Example assuming `record` has a `baseType` property
}
- (int64_t)getPrivacyGuardEventTimeOverrideForRecord:(id)record {
return [record time]; // Example assuming `record` has a `time` property
}
- (BOOL)getShouldIgnoreOverrideForRecord:(id)record {
return NO; // Default implementation
}
- (NSString *)getAssociatedTenantForRecord:(id)record {
return [record iKey]; // Example assuming `record` has an `iKey` property
}
- (NSString *)getEnvironmentForRecord:(id)record {
return @""; // Default implementation
}
- (NSString *)getMetadataForRecord:(id)record {
return @""; // Default implementation
}
@end