/* * Copyright (c) 2023-2023 Huawei Device Co., Ltd. * 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. */ export class GlobalThisStorageKey { static readonly KEY_SERVICE_CONNECT_OPTIONS: string = 'ServiceConnectOptions'; static readonly KEY_JOB_ID: string = 'JobId'; static readonly KEY_MEDIA_SIZE_UTIL: string = 'mediaSizeUtil'; static readonly KEY_PRINT_ADAPTER: string = 'printAdapter'; static readonly KEY_PREFERENCES_ADAPTER: string = 'preferencesAdapter'; static readonly KEY_MAIN_ABILITY_CONTEXT: string = 'mainAbilityContext'; static readonly KEY_MAIN_ABILITY_WINDOW_STAGE: string = 'mainAbilityWindowStage'; static readonly KEY_JOB_MANAGER_ABILITY_CONTEXT: string = 'jobManagerAbilityContext'; static readonly KEY_NOTIFICATION_PRINTER_NAME: string = 'notificationPrinterName'; static readonly KEY_SERVICE_FIRST_START: string = 'serviceFirstStart'; static readonly KEY_PRINTER_SELECT_DIALOG_OPEN: string = 'printerSelectDialogOpen'; static readonly KEY_CURRENT_PIXELMAP: string = 'currentPixelMap'; static readonly KEY_XGATE_USERNAME: string = 'xGateUserName'; static readonly KEY_SECURITY_GUARD: string = 'securityGuard'; static readonly KEY_IMAGE_ERROR_COUNT: string = 'imageErrorCount'; static readonly KEY_IMAGE_ERROR_NAME: string = 'imageErrorName'; static readonly KEY_ABILITY_CONTEXT: string = 'abilityContext'; static readonly KEY_FILES_DIR: string = 'filesDir'; }