LibNg112_Pics.ttcn 1.1 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 GET request method?
   */
    modulepar boolean PICS_HTTP_GET_REQUEST := true;
  
  /**
   * @desc Does the IUT support HTTP POST request method?
Garcia's avatar
Garcia committed
   */
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 
   */
  modulepar charstring PICS_ECRF_URI := "/api/lost";
Garcia's avatar
Garcia committed
  
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