1/** 2 * Copyright (c) 2024-2024 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 16export enum NavEntryKey { 17 HOME_ENTRY = 'home_page', 18 CA_CERTIFICATE_ENTRY = 'ca_cert', 19 CREDENTIAL_LIST_ENTRY = 'cred_list', 20 INSTALL_ENTRY = 'install_from_storage', 21 CA_SYSTEM_DETAIL_ENTRY = 'ca_system_detail', 22 CA_USER_DETAIL_ENTRY = 'ca_user_detail', 23 CRED_SYSTEM_DETAIL_ENTRY = 'cred_system_detail', 24 CRED_USER_DETAIL_ENTRY = 'cred_user_detail', 25 AUTHORIZED_APP_ENTRY = 'authorized_app_management', 26 CRED_PWD_INPUT_ENTRY = 'cred_pwd_input', 27 28 POP = 'pop' 29}