X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fnorthbound%2Fflowprogrammer%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fflowprogrammer%2Fnorthbound%2FFlowProgrammerNorthbound.java;h=d3cbc4aceed0ad88a887d3a870a7d184b35a85df;hb=7c595c8a6f3c4dfaa11cb616b937faf414e74852;hp=99452b4b21542b9a77a4dc73bbe83413e2fc1fc0;hpb=59cc8f34c24d81a8890a94c11dedd4b21caa0adf;p=controller.git diff --git a/opendaylight/northbound/flowprogrammer/src/main/java/org/opendaylight/controller/flowprogrammer/northbound/FlowProgrammerNorthbound.java b/opendaylight/northbound/flowprogrammer/src/main/java/org/opendaylight/controller/flowprogrammer/northbound/FlowProgrammerNorthbound.java index 99452b4b21..d3cbc4acee 100644 --- a/opendaylight/northbound/flowprogrammer/src/main/java/org/opendaylight/controller/flowprogrammer/northbound/FlowProgrammerNorthbound.java +++ b/opendaylight/northbound/flowprogrammer/src/main/java/org/opendaylight/controller/flowprogrammer/northbound/FlowProgrammerNorthbound.java @@ -48,7 +48,7 @@ import org.opendaylight.controller.switchmanager.ISwitchManager; /** * Flow Configuration Northbound API - * + * *
*
* Authentication scheme : HTTP Basic
@@ -60,7 +60,7 @@ import org.opendaylight.controller.switchmanager.ISwitchManager; * trusted authority.
* More info : * http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration - * + * */ @Path("/") public class FlowProgrammerNorthbound { @@ -147,7 +147,7 @@ public class FlowProgrammerNorthbound { /** * Returns a list of Flows configured on the given container - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -177,7 +177,7 @@ public class FlowProgrammerNorthbound { /** * Returns a list of Flows configured on a Node in a given container - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -217,7 +217,7 @@ public class FlowProgrammerNorthbound { /** * Returns the flow configuration matching a human-readable name and nodeId * on a given Container. - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -266,7 +266,7 @@ public class FlowProgrammerNorthbound { /** * Add a flow configuration - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -321,7 +321,7 @@ public class FlowProgrammerNorthbound { + RestMessages.RESOURCECONFLICT.toString()); } - Status status = frm.addStaticFlow(flowConfig.getValue(), false); + Status status = frm.addStaticFlow(flowConfig.getValue()); if (status.isSuccess()) { return Response.status(Response.Status.CREATED).build(); } @@ -330,9 +330,9 @@ public class FlowProgrammerNorthbound { /** * Delete a Flow configuration - * + * * DELETE /flows/{containerName}/{nodeType}/{nodeId}/{name} - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -392,7 +392,7 @@ public class FlowProgrammerNorthbound { /** * Toggle a Flow configuration - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default".