X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnorthbound%2Fhosttracker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2Fnorthbound%2FHostTrackerNorthbound.java;h=dbc99d06e477bb238a5c49af13cade4dd30ae5dd;hb=ff1b4a79cca00743a00c3b0b1100bd0ab2b2fb31;hp=a9f210e0eceebdad88e783640ae2bc120b6b7b31;hpb=59cc8f34c24d81a8890a94c11dedd4b21caa0adf;p=controller.git diff --git a/opendaylight/northbound/hosttracker/src/main/java/org/opendaylight/controller/hosttracker/northbound/HostTrackerNorthbound.java b/opendaylight/northbound/hosttracker/src/main/java/org/opendaylight/controller/hosttracker/northbound/HostTrackerNorthbound.java index a9f210e0ec..dbc99d06e4 100644 --- a/opendaylight/northbound/hosttracker/src/main/java/org/opendaylight/controller/hosttracker/northbound/HostTrackerNorthbound.java +++ b/opendaylight/northbound/hosttracker/src/main/java/org/opendaylight/controller/hosttracker/northbound/HostTrackerNorthbound.java @@ -56,7 +56,7 @@ import org.opendaylight.controller.sal.authorization.Privilege; * Location is represented by Host node connector which is essentially a logical * entity that represents a Switch/Port. A host is represented by it's * IP-address and mac-address. - * + * *
*
* Authentication scheme : HTTP Basic
@@ -68,7 +68,7 @@ import org.opendaylight.controller.sal.authorization.Privilege; * trusted authority.
* More info : * http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration - * + * */ @Path("/") @@ -120,7 +120,7 @@ public class HostTrackerNorthbound { /** * Returns a list of all Hosts : both configured via PUT API and dynamically * learnt on the network. - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -135,7 +135,7 @@ public class HostTrackerNorthbound { @ResponseCode(code = 404, condition = "The containerName is not found"), @ResponseCode(code = 503, condition = "One or more of Controller Services are unavailable") }) public Hosts getActiveHosts(@PathParam("containerName") String containerName) { - + if (!NorthboundUtils.isAuthorized( getUserName(), containerName, Privilege.READ, this)) { throw new UnauthorizedException( @@ -154,7 +154,7 @@ public class HostTrackerNorthbound { /** * Returns a list of Hosts that are statically configured and are connected * to a NodeConnector that is down. - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -187,7 +187,7 @@ public class HostTrackerNorthbound { /** * Returns a host that matches the IP Address value passed as parameter. - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -236,7 +236,7 @@ public class HostTrackerNorthbound { /** * Add a Static Host configuration - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -320,7 +320,7 @@ public class HostTrackerNorthbound { /** * Delete a Static Host configuration - * + * * @param containerName * Name of the Container. The Container name for the base * controller is "default". @@ -342,7 +342,7 @@ public class HostTrackerNorthbound { public Response deleteFlow( @PathParam(value = "containerName") String containerName, @PathParam(value = "networkAddress") String networkAddress) { - + if (!NorthboundUtils.isAuthorized( getUserName(), containerName, Privilege.WRITE, this)) { throw new UnauthorizedException(