LibNg112_Pics.ttcn 1.25 KB
Newer Older
Garcia's avatar
Garcia committed
module LibNg112_Pics {
    
Garcia's avatar
Garcia committed
  type record of charstring request_uri_list;
  
  /**
   * @desc Has the IUT the role of LIS?
   */
  modulepar boolean PICS_LIS_IUT := true;
  
  /**
   * @desc Has the IUT the role of ECRF?
   */
garciay's avatar
garciay committed
  modulepar boolean PICS_ECRF_IUT := true;
Garcia's avatar
Garcia committed
    
Garcia's avatar
Garcia committed
  /**
   * @desc Does the IUT support HTTP POST request?
   */
Garcia's avatar
Garcia committed
    modulepar boolean PICS_HTTP_POST_REQUEST := true;
Garcia's avatar
Garcia committed
  
  /**
   * @desc Does the IUT support HELD protocol?
   */
  modulepar boolean PICS_LOCATION_HELD := true;
  
  /**
   * @desc Does the IUT support LoST protocol?
   */
  modulepar boolean PICS_SERVICE_LOST := true;
  
garciay's avatar
garciay committed
  /**
   * @desc 
   */
  modulepar charstring PICS_LIS_URI := "/api/held";
garciay's avatar
garciay committed
  
Garcia's avatar
Garcia committed
  /**
   * @desc HTTP POST Uris
   * @see RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1
   */
  //  modulepar request_uri_list PICS_LIS_REQUEST_URIs := { "/api/held", "/api/held", "/api/held" }; //{ "/t/9rk8l-1531130342/post", "/t/r143f-1528105031/post", "/t/6ouem-1531201238/post" };
garciay's avatar
garciay committed

Garcia's avatar
Garcia committed
  /**
   * @desc 
   */
  modulepar charstring PICS_ECRF_URI := "/service";
  
garciay's avatar
garciay committed
  /**
   * @desc HTTP POST Uris
   * @see RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1
   */
  modulepar request_uri_list PICS_ECRF_REQUEST_URIs := { "/t/0ahy0-1531830377/post" };

Garcia's avatar
Garcia committed
} // End of module LibNg112_Pics