blob: 3f783d7b39e9752f8ee1d148c210ebb8afb63001 [file] [log] [blame]
/**
* Copyright (c) 2022 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Parts of MTRControllerFactory that are not part of the framework API.
* Mostly for use from MTRDeviceController.
*/
#import <Foundation/Foundation.h>
#import "MTRControllerFactory.h"
class MTRPersistentStorageDelegateBridge;
namespace chip {
namespace Credentials {
class GroupDataProvider;
class DeviceAttestationVerifier;
} // namespace Credentials
} // namespace chip
@class MTRDeviceController;
NS_ASSUME_NONNULL_BEGIN
@interface MTRControllerFactory (InternalMethods)
- (void)controllerShuttingDown:(MTRDeviceController *)controller;
@property (readonly) MTRPersistentStorageDelegateBridge * storageDelegateBridge;
@property (readonly) chip::Credentials::GroupDataProvider * groupData;
@property (readonly) chip::Credentials::DeviceAttestationVerifier * deviceAttestationVerifier;
@end
NS_ASSUME_NONNULL_END