Fix Javadoc warnings
Change-Id: I857d8bd7d9fc0862f3c0097d3e65cbedfb997b0f
diff --git a/apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java b/apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java
index b495f07..2179653 100644
--- a/apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java
+++ b/apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java
@@ -44,6 +44,7 @@
* @param connectPoint the connect point this interface is mapped to
* @param ipAddresses the IP addresses for the interface
* @param macAddress the MAC address of the interface
+ * @param vlan VLAN identifier
*/
public Interface(ConnectPoint connectPoint,
Set<InterfaceIpAddress> ipAddresses,
diff --git a/openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java b/openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java
index 3b8358f..11cb705 100644
--- a/openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java
+++ b/openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java
@@ -144,6 +144,8 @@
/**
* Identifies the channel used to communicate with the switch.
+ *
+ * @return string representation of the connection to the device
*/
public String channelId();
diff --git a/web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java b/web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java
index 8f4d4fd..c607d0a 100644
--- a/web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java
+++ b/web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java
@@ -80,6 +80,7 @@
/**
* Gets details for a topology cluster for a REST GET operation.
*
+ * @param clusterId id of the cluster to query
* @return topology cluster details
*/
@GET
@@ -101,6 +102,7 @@
/**
* Gets devices for a topology cluster for a REST GET operation.
*
+ * @param clusterId id of the cluster to query
* @return topology cluster devices
*/
@GET
@@ -131,6 +133,7 @@
/**
* Gets links for a topology cluster for a REST GET operation.
*
+ * @param clusterId id of the cluster to query
* @return topology cluster links
*/
@GET
@@ -181,6 +184,8 @@
/**
* Gets the broadcast flag of a connect point for a REST GET operation.
*
+ * @param connectPointString string representation of the connect point to query.
+ * Format is deviceid:portnumber
* @return JSON representation of true if the connect point is broadcast,
* false otherwise
*/
@@ -202,6 +207,8 @@
/**
* Gets the infrastructure flag of a connect point for a REST GET operation.
*
+ * @param connectPointString string representation of the connect point to query.
+ * Format is deviceid:portnumber
* @return JSON representation of true if the connect point is broadcast,
* false otherwise
*/