Merge commit 'refs/changes/20/18320/1' of ssh://git.opendaylight.org:29418/alto
[alto.git] / alto-northbound / src / main / java / org / opendaylight / alto / northbound / AltoNorthbound.java
index 1af1236d46920860f1554cb6ba725fd15c4f04d3..4725b6b0726efc6a8d362e86c5c8ab761a77ad08 100644 (file)
@@ -112,7 +112,7 @@ public class AltoNorthbound {
     @Produces({ MediaType.ALTO_NETWORKMAP, MediaType.ALTO_ERROR })
     public Response retrieveDefaultNetworkMap() throws Exception {
         checkAltoService();
-        
+
         NetworkMap map = altoService.getDefaultNetworkMap();
         if (map == null)
             return fail(Status.NOT_FOUND, null);
@@ -149,7 +149,7 @@ public class AltoNorthbound {
             return fail(Status.NOT_FOUND, vtag);
         return success(map, MediaType.ALTO_NETWORKMAP);
     }
-                                     
+
     @Path("/costmap/{id}")
     @GET
     @Produces({ MediaType.ALTO_COSTMAP, MediaType.ALTO_ERROR})
@@ -239,7 +239,7 @@ public class AltoNorthbound {
             return fail(Status.NOT_FOUND, id);
         return success(map, MediaType.ALTO_NETWORKMAP);
     }
+
     @Path("/filtered/networkmap/{id}/{tag}")
     @POST
     @Consumes({ MediaType.ALTO_NETWORKMAP_FILTER})
@@ -261,7 +261,7 @@ public class AltoNorthbound {
         if (map == null)
             return fail(Status.NOT_FOUND, vtag);
         return success(map, MediaType.ALTO_NETWORKMAP);
-    }   
+    }
 
     @Path("/filtered/costmap/{id}")
     @POST