blob: d0c013ea862392f65099728a074b5b84c85050b9 [file] [log] [blame]
HIGUCHI Yutaefa54882013-06-12 13:13:02 -07001package net.onrc.onos.ofcontroller.flowcache.web;
Pavlin Radoslavov4ef543e2013-05-07 13:36:57 -07002
HIGUCHI Yutaedf81d72013-06-12 12:06:57 -07003import net.onrc.onos.ofcontroller.flowcache.IFlowService;
HIGUCHI Yuta356086e2013-06-12 15:21:19 -07004import net.onrc.onos.ofcontroller.util.FlowId;
Pavlin Radoslavov4ef543e2013-05-07 13:36:57 -07005
6import org.openflow.util.HexString;
7import org.restlet.resource.Get;
8import org.restlet.resource.ServerResource;
9import org.slf4j.Logger;
10import org.slf4j.LoggerFactory;
11
12public class MeasurementClearAllPathsFlowResource extends ServerResource {
13 protected static Logger log = LoggerFactory.getLogger(MeasurementClearAllPathsFlowResource.class);
14
15 @Get("json")
16 public Boolean retrieve() {
17 Boolean result = false;
18
19 IFlowService flowService =
20 (IFlowService)getContext().getAttributes().
21 get(IFlowService.class.getCanonicalName());
22
23 if (flowService == null) {
24 log.debug("ONOS Flow Service not found");
25 return result;
26 }
27
28 // Extract the arguments
29 log.debug("Measurement Clear All Paths");
30
31 // Process the request
32 result = flowService.measurementClearAllPaths();
33 return result;
34 }
35}