| /////////////////////////////////////////////////////////////////////////////// |
| // // |
| // Copyright (c) 2000-2019 Ericsson Telecom AB // |
| // // |
| // All rights reserved. This program and the accompanying materials // |
| // are made available under the terms of the Eclipse Public License v2.0 // |
| // which accompanies this distribution, and is available at // |
| // https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html // |
| /////////////////////////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| // Module: EPTF_CLL_LGenBase_ILog_Definitions |
| // |
| // Purpose: |
| // This module contains type definitions for EPTF_CLL_ILog feature |
| // |
| // Module Parameters: |
| // tsp_EPTF_LGenBase_enableILog - *boolean* |
| // |
| // Module depends on: |
| // <EPTF_CLL_ILogBase_Definitions> |
| // |
| // Current Owner: |
| // Jozsef Gyurusi (ethjgi) |
| // |
| // Last Review Date: |
| // - |
| // |
| // Detailed Comments: |
| // - |
| /////////////////////////////////////////////////////////// |
| |
| module EPTF_CLL_LGenBase_ILog_Definitions { |
| |
| import from EPTF_CLL_ILog_Definitions all; |
| |
| modulepar boolean tsp_EPTF_LGenBase_ILog_enableILog := true; |
| |
| type integer EPTF_LGenBase_ILog_chainIdIdx; |
| |
| const EPTF_LGenBase_ILog_chainIdIdx c_EPTF_LGenBase_ILog_chainIdDetailed := enum2int(valueof(EPTF_ILog_chainType:detailed)); |
| const EPTF_LGenBase_ILog_chainIdIdx c_EPTF_LGenBase_ILog_chainIdShort := enum2int(valueof(EPTF_ILog_chainType:short)); |
| |
| const integer c_EPTF_LGenBase_ILog_appDataIdForShortChainIdId := 0; |
| const integer c_EPTF_LGenBase_ILog_appDataIdForDetailedChainIdId := 1; |
| const integer c_EPTF_LGenBase_ILog_appDataIdForEnableShortLogId := 2; |
| |
| const integer c_EPTF_LGenBase_ILog_enableShortLog := 1; |
| const integer c_EPTF_LGenBase_ILog_disableShortLog := 0; |
| |
| const charstring c_EPTF_LGenBase_ILog_detailedChainName := "Detailed Chain"; |
| const charstring c_EPTF_LGenBase_ILog_shortChain := "Short Chain"; |
| |
| //const charstring c_EPTF_LGenBase_ILog_behavior := "ILog_behavior"; |
| |
| const charstring c_EPTF_LGenBase_ILog_unprocesedChains := " There is unprocessed chain data! Please log or delete it previously!"; |
| const charstring c_EPTF_LGenBase_ILog_noValidWarning := " No valid chain was given in the list, which is currently in use!"; |
| |
| } // module EPTF_LGenBase_ILog_Definitions |