LibItsPki_Pics.ttcn 875 Bytes
Newer Older
garciay's avatar
garciay committed
module LibItsPki_Pics {
  
  /**
   * @desc Does the IUT act as ITS-S device?
   */
  modulepar boolean PICS_IUT_ITS_S_ROLE := false;
  
  /**
   * @desc Does the IUT act as EA device?
   */
  modulepar boolean PICS_IUT_EA_ROLE := true;
  
  /**
   * @desc Does the IUT act as AA device?
   */
  modulepar boolean PICS_IUT_AA_ROLE := false;
  
  /**
   * @desc Certificate used by the IUT
   */
  modulepar charstring PICS_IUT_CERTIFICATE_ID := "CERT_IUT_A_EA";

  /**
   * @desc Certificate used by the Test System
   */
  modulepar charstring PICS_TS_CERTIFICATE_ID := "CERT_TS_A_EA";
  
  /**
   * @desc Certificate used by the Test System
   */
  modulepar charstring PICS_HTTP_GET_URI := "/its/inner_ec_request";

  /**
   * @desc Canonical ITSS-S identifier
   */
  modulepar charstring PICS_ITS_S_CANONICAL_ID := "CanonicalItsId";
garciay's avatar
garciay committed
} // End of module LibItsPki_Pics