Skip to content
Snippets Groups Projects
Commit 95034ba2 authored by Munish Mehta's avatar Munish Mehta
Browse files

minor syntax change in the REST return value

parent 22d692e7
No related branches found
No related tags found
No related merge requests found
......@@ -4,13 +4,28 @@ import net.floodlightcontroller.core.IFloodlightProviderService;
import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;
public class SystemUptimeResource extends ServerResource {
public class UptimeRest {
long systemUptimeMsec;
public long getSystemUptimeMsec() {
return systemUptimeMsec;
}
}
@Get("json")
public long retrieve() {
public UptimeRest retrieve() {
IFloodlightProviderService floodlightProvider =
(IFloodlightProviderService)getContext().getAttributes().
get(IFloodlightProviderService.class.getCanonicalName());
return (System.currentTimeMillis() -
floodlightProvider.getSystemStartTime());
UptimeRest uptime = new UptimeRest();
uptime.systemUptimeMsec =
System.currentTimeMillis() - floodlightProvider.getSystemStartTime();
return (uptime);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment