Uses of Class
net.floodlightcontroller.debugevent.web.DebugEventResource.DebugEventInfoOutput

Packages that use DebugEventResource.DebugEventInfoOutput
net.floodlightcontroller.debugevent.web   
 

Uses of DebugEventResource.DebugEventInfoOutput in net.floodlightcontroller.debugevent.web
 

Methods in net.floodlightcontroller.debugevent.web that return DebugEventResource.DebugEventInfoOutput
 DebugEventResource.DebugEventInfoOutput DebugEventResource.handleEventInfoQuery()
          Return the debug event data for the get rest-api call URL must be in one of the following forms for retrieving a list moduleNames "http://{controller-hostname}:8080/wm/debugevent/ counterNames "http://{controller-hostname}:8080/wm/debugevent/{moduleName} URL must be in one of the following forms for retrieving event data: "http://{controller-hostname}:8080/wm/debugevent/{param1} "http://{controller-hostname}:8080/wm/debugevent/{param1}/{param2} where {param1} must be one of (no quotes): null if nothing is given then by default the list of all moduleNames is returned for which events have been registered "all" can return value/info on all active events but is currently disallowed "{moduleName}" returns value/info on events for the specified module depending on the value of param2 and {param2} must be one of (no quotes): null returns all eventNames registered for the given moduleName (in param1) "{eventName}" returns value/info for specific event if it is active.