LibItsDenm_Pics.ttcn 2.2 KB
Newer Older
ASN.1 Documenter's avatar
ASN.1 Documenter committed
/**
 *  @author   ETSI / STF449 / STF484 / STF517
 *  @version  $Url: https://oldforge.etsi.org/svn/LibIts/tags/20170222_STF527_Final/ttcn/DENM/LibItsDenm_Pics.ttcn $
 *            $Id: LibItsDenm_Pics.ttcn 1318 2017-01-26 10:20:53Z filatov $
 *  @desc     DENM PICS
 *  @copyright   ETSI Copyright Notification
 *               No part may be reproduced except as authorized by written permission.
 *               The copyright and the foregoing restriction extend to reproduction in all media.
 *               All rights reserved.
 *
 */
module LibItsDenm_Pics {
    
    group denmPics {
        
        /**
         * @desc Support for DENM generation
         * @see  ETSI TS 102 869-1 Table A.1
         */
        modulepar boolean PICS_DENM_GENERATION := true;

        /**
         * @desc Support for DENM RECEPTION
         * @see  ETSI TS 102 869-1 Table A.1
         */
        modulepar boolean PICS_DENM_RECEPTION := true;

        /**
         * @desc Support for DENM update
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_DENM_UPDATE := true;

        /**
         * @desc Support for DENM repetition
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_DENM_REPETITION := true;

        /**
         * @desc Support for DENM cancellation
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_DENM_CANCELLATION := true;

        /**
         * @desc Support for DENM NEGATION
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_DENM_NEGATION := false;

        /**
         * @desc Support for Keep-Alive Forwarding
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_DENM_KAF := false;

        /**
         * @desc Support for impact recuction
         * @see  ETSI TS 102 869-1 Table A.2
         */
        modulepar boolean PICS_IMPACT_REDUCTION := true;
        
        /**
         * @desc Is the IUT running in secured mode?
         * @see  ETSI TS 102 869-1 Table A.3
         */
        modulepar boolean PICS_IS_IUT_SECURED := false;
        
    } // end denmPics
    
}