1/* 2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/** 17 * @file 18 * @kit MDMKit 19 */ 20 21import accountManager from '@ohos.enterprise.accountManager'; 22import adminManager from '@ohos.enterprise.adminManager'; 23import applicationManager from '@ohos.enterprise.applicationManager'; 24import bluetoothManager from '@ohos.enterprise.bluetoothManager'; 25import browser from '@ohos.enterprise.browser'; 26import bundleManager from '@ohos.enterprise.bundleManager'; 27import dateTimeManager from '@ohos.enterprise.dateTimeManager'; 28import deviceControl from '@ohos.enterprise.deviceControl'; 29import deviceInfo from '@ohos.enterprise.deviceInfo'; 30import deviceSettings from '@ohos.enterprise.deviceSettings'; 31import EnterpriseAdminExtensionAbility from '@ohos.enterprise.EnterpriseAdminExtensionAbility'; 32import locationManager from '@ohos.enterprise.locationManager'; 33import networkManager from '@ohos.enterprise.networkManager'; 34import restrictions from '@ohos.enterprise.restrictions'; 35import securityManager from '@ohos.enterprise.securityManager'; 36import systemManager from '@ohos.enterprise.systemManager'; 37import usbManager from '@ohos.enterprise.usbManager'; 38import wifiManager from '@ohos.enterprise.wifiManager'; 39import telephonyManager from '@ohos.enterprise.telephonyManager'; 40 41export { 42 EnterpriseAdminExtensionAbility, accountManager, adminManager, applicationManager, bluetoothManager, browser, 43 bundleManager, dateTimeManager, deviceControl, deviceInfo, deviceSettings, locationManager, 44 networkManager, restrictions, securityManager, systemManager, usbManager, wifiManager, telephonyManager 45}; 46