Commit 54c0ab60 authored by tepelmann's avatar tepelmann
Browse files

Introduced PICS.

parent 44939b20
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ module LibItsDenm_Functions {
    import from LibItsCommon_Functions all;
    import from LibItsDenm_TypesAndValues all; 
    import from LibItsDenm_Templates all; 
    import from LibItsDenm_Pics all; 
    import from CAM_PDU_Descriptions language "ASN.1:1997" all;
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;
    
@@ -280,11 +281,7 @@ module LibItsDenm_Functions {
             * @return 
             */
            function f_getIutDefaultEventDuration() return TimeStamp {
                var TimeStamp v_iutDefaultEventDuration := 0;
                
                //TODO get the value from PIXIT or MIB
                
                return v_iutDefaultEventDuration;
                return PICS_DEFAULT_EXPIRY_TIME;
            }            
            
        } // end iutGetFunctions
+20 −0
Original line number Diff line number Diff line
/**
 *  @author   ETSI / STF405
 *  @version  $URL$
 *            $Id$
 *  @desc     DENM PICS
 *
 */
module LibItsDenm_Pics {
    
    group denmPics {
        
        /**
         * @desc TODO Needs to be defined in the PICS document!!! 
         * @see  
         */
        modulepar integer PICS_DEFAULT_EXPIRY_TIME := 60000;

    } // end denmPics
    
}
 No newline at end of file