Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
13 lines
398 B
JavaScript
13 lines
398 B
JavaScript
/**
|
|
* Performs a simple VTEC Request and returns the result to the requestor.
|
|
*
|
|
* Request the P-VTEC Event Group "Action" tokens.
|
|
*/
|
|
include("VtecObjectRetrieval.js");
|
|
var runner = new VtecRetrieval("action");
|
|
runner.setTimeOut(10);
|
|
runner.initialize("named","VTEC Action");
|
|
runner.addProperty("count","0");
|
|
runner.addField("name","NEW");
|
|
runner.setClientID("VTEC REQUEST");
|
|
runner.execute();
|