From fefdf7833f5d4b4541a3e5e429781fd013748a1f Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 6 May 2015 19:57:35 +0200 Subject: [PATCH] Fix JDK8 javadoc compatibility JDK8 is more picky about javadocs, so fix them up so the project can pass compilation. Change-Id: I8273b9c339a10c25569abc9af16a8eb4b9cffdb3 Signed-off-by: Robert Varga --- .../rest/output/format/beans/VBridgeBean.java | 3 +-- .../format/beans/VBridgeInterfaceBean.java | 5 ++--- .../output/format/beans/VTerminalBean.java | 2 +- .../format/beans/VTerminalInterfaceBean.java | 7 +++---- .../app/run/config/rest/parser/CRUDImpl.java | 21 ++++++++----------- .../run/config/rest/parser/RestRequest.java | 2 +- .../config/rest/response/beans/Action.java | 2 +- .../config/rest/response/beans/Bundle.java | 6 +++--- .../beans/ContainerPathMapNorthBound.java | 4 ++-- .../beans/ContainerPathMapNorthBoundList.java | 4 ++-- .../config/rest/response/beans/DataFlow.java | 14 ++++++------- .../rest/response/beans/DataFlowList.java | 4 ++-- .../run/config/rest/response/beans/Deny.java | 2 +- .../response/beans/FlowconditionList.java | 2 +- .../rest/response/beans/Flowconditions.java | 2 +- .../config/rest/response/beans/IcmpCode.java | 2 +- .../run/config/rest/response/beans/Inet.java | 2 -- .../rest/response/beans/IngressNode.java | 2 +- .../rest/response/beans/InputOutput.java | 4 ++-- .../rest/response/beans/LocationDetails.java | 2 +- .../config/rest/response/beans/MacMapped.java | 2 +- .../config/rest/response/beans/NodeRoute.java | 2 +- .../rest/response/beans/PathPolicy.java | 2 +- .../rest/response/beans/PortDetails.java | 10 ++++----- .../rest/response/beans/Statistics.java | 4 ++-- .../run/config/rest/response/beans/Tpdst.java | 2 +- .../run/config/rest/response/beans/Tpsrc.java | 4 ++-- .../response/beans/VBridgeFlowFilterList.java | 2 +- .../VBridgeIfFlowFilterNorthboundList.java | 4 ++-- .../response/beans/VBridgeInterfaceList.java | 2 +- .../response/beans/VBridgeNorthBound.java | 2 +- .../response/beans/VBridgeNorthBoundList.java | 2 +- .../response/beans/VTNConfigurationBean.java | 8 +++---- .../response/beans/VTenantFlowFilterList.java | 2 +- .../response/beans/VTenantNorthBound.java | 2 +- .../beans/VTenantPathMapNorthBound.java | 2 +- .../beans/VTenantPathMapNorthBoundList.java | 2 +- .../VTerminalIfFlowFilterNorthboundList.java | 4 ++-- .../VTerminalInterfaceNorthboundList.java | 2 +- .../beans/VTerminalNorthBoundList.java | 4 ++-- .../response/beans/VlanNorthBoundList.java | 2 +- 41 files changed, 75 insertions(+), 83 deletions(-) diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeBean.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeBean.java index 5054f179..458d8eee 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeBean.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeBean.java @@ -81,7 +81,6 @@ public class VBridgeBean { /** * To set the MAc Address details of the VBridge. * @param macMap - * @return */ public void setMacMap(MacMapNorthBound macMap) { this.macMap = macMap; @@ -207,7 +206,7 @@ public class VBridgeBean { /** * getVbrInterface function to get the list of VBridgeInterfaceBean value for this object. - * @return {@link List} + * @return List of {@link VBridgeInterfaceBean} objects */ public List getVbrInterface() { return vbrInterface; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeInterfaceBean.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeInterfaceBean.java index a1a36dfa..2df17627 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeInterfaceBean.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VBridgeInterfaceBean.java @@ -104,7 +104,7 @@ public class VBridgeInterfaceBean { /** * set the state of the VBridge. * - * @param name + * @param state * {@link int} */ public void setState(int state) { @@ -133,8 +133,7 @@ public class VBridgeInterfaceBean { /** * get the Description of the VBridge. * - * @param description - * {@link String} + * @return description {@link String} */ public String getDescription() { return description; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalBean.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalBean.java index d2c244c8..590539eb 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalBean.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalBean.java @@ -120,7 +120,7 @@ public class VTerminalBean { /** * getVInterface function to get the list of VTerminalInterfaceBean value for this object. - * @return {@link List} + * @return List of {@link VTerminalInterfaceBean} objects */ public List getVInterface() { return vInterface; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalInterfaceBean.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalInterfaceBean.java index 6b338dde..ebeb7d04 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalInterfaceBean.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/output/format/beans/VTerminalInterfaceBean.java @@ -84,7 +84,7 @@ public class VTerminalInterfaceBean { /** * set the state of the VTermainal. * - * @param name + * @param state * {@link int} */ public void setState(int state) { @@ -113,8 +113,7 @@ public class VTerminalInterfaceBean { /** * get the Description of the VTermainal. * - * @param description - * {@link String} + * @return description {@link String} */ public String getDescription() { return description; @@ -181,7 +180,7 @@ public class VTerminalInterfaceBean { /** * set the flowfilter of the VTermainal. * - * @param flowfilter + * @param flowfilters * {@link VTerminalIfFlowFilterNorthboundList} */ public void setVtFlowfilter(VTerminalIfFlowFilterNorthboundList flowfilters) { diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/CRUDImpl.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/CRUDImpl.java index 41f23163..94a0d83e 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/CRUDImpl.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/CRUDImpl.java @@ -126,9 +126,9 @@ public class CRUDImpl implements CRUDOperation { * URL * @return * Response as String - * @throws RequestFailureException - * Throws RequestFailureException if request does not return 'success' - * @throws VTNClientException, JSONException, ConnectException + * @throws VTNClientException if request does not return 'success' + * @throws JSONException + * @throws ConnectException */ public String doGET(String url, Map headers) throws VTNClientException, JSONException, ConnectException { try { @@ -160,12 +160,11 @@ public class CRUDImpl implements CRUDOperation { * URL * @param obj * Object to send along POST request - * @param heders + * @param headers * Headers * @return * Response as String - * @throws RequestFailureException - * Throws RequestFailureException if request does not return 'success' + * @throws VTNClientException if request does not return 'success' * @throws JSONException */ public String doPOST(String url, Object obj, Map headers) throws VTNClientException, ConnectException, JSONException { @@ -178,12 +177,11 @@ public class CRUDImpl implements CRUDOperation { * URL * @param obj * Object to send along PUT request - * @param heders + * @param headers * Headers * @return * Response as String - * @throws RequestFailureException - * Throws RequestFailureException if request does not return 'success' + * @throws VTNClientException if request does not return 'success' * @throws JSONException */ public String doPUT(String url, Object obj, Map headers) throws VTNClientException, ConnectException, JSONException { @@ -196,12 +194,11 @@ public class CRUDImpl implements CRUDOperation { * URL * @param obj * Object to send along DELETE request - * @param heders + * @param headers * Headers * @return * Response as String - * @throws RequestFailureException - * Throws RequestFailureException if request does not return 'success' + * @throws VTNClientException if request does not return 'success' * @throws JSONException */ public String doDELETE(String url, Object obj, Map headers) throws VTNClientException, ConnectException, JSONException { diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/RestRequest.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/RestRequest.java index 31917eee..43b23d92 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/RestRequest.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/parser/RestRequest.java @@ -82,7 +82,7 @@ public class RestRequest { /** * getResponse - to get the response . - * @return {@link Map} + * @return response */ public String getResponse() { return response; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Action.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Action.java index 2338e00a..74da20d1 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Action.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Action.java @@ -45,7 +45,7 @@ public class Action { /** * setPobj - function to set the Popvlan refrence. - * @param Popvlan + * @param pobj */ public void setPobj(Popvlan pobj) { this.pobj = pobj; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Bundle.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Bundle.java index ad5e52f5..bbde291c 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Bundle.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Bundle.java @@ -56,7 +56,7 @@ public class Bundle { /** * setMajor - function to set a value for major. - * @return {@link int} + * @param major {@link int} */ public void setMajor(int major) { this.major = major; @@ -88,7 +88,7 @@ public class Bundle { /** * setMicro - function to set a value for micro. - * @return {@link int} + * @param micro {@link int} */ public void setMicro(int micro) { this.micro = micro; @@ -104,7 +104,7 @@ public class Bundle { /** * setQualifier - function to set the qualifier. - * @param {@link String} + * @param qualifier {@link String} */ public void setQualifier(String qualifier) { this.qualifier = qualifier; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBound.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBound.java index b8e1bbc0..c863db6e 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBound.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBound.java @@ -89,7 +89,7 @@ public class ContainerPathMapNorthBound implements Serializable, Cloneable { /** * setIndex - function to set the index values. * - * @param {@link int} + * @param index */ public void setIndex(int index) { this.index = index; @@ -162,7 +162,7 @@ public class ContainerPathMapNorthBound implements Serializable, Cloneable { /** * setHardTimeout - function to set the hardTimeout. * - * @param {@link int} + * @param hardTimeout */ public void setHardTimeout(int hardTimeout) { this.hardTimeout = hardTimeout; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBoundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBoundList.java index 6d337bd4..330df4ac 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBoundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/ContainerPathMapNorthBoundList.java @@ -48,7 +48,7 @@ public class ContainerPathMapNorthBoundList implements Serializable, Cloneable { /** * getPathMaps - function to get the pathmps. * - * @return {@link List} + * @return List of ContainerPathMapNorthBound objects */ public List getPathMaps() { return pathMap; @@ -57,7 +57,7 @@ public class ContainerPathMapNorthBoundList implements Serializable, Cloneable { /** * setPathMaps - function to set the pathmps. * - * @params pathMaps + * @param pathMaps */ public void setPathMaps(List pathMaps) { this.pathMap = pathMaps; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlow.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlow.java index b9bec553..ca06bc5f 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlow.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlow.java @@ -150,7 +150,7 @@ public class DataFlow { /** * setIdleTimeout - function to set the idleTimeout. * - * @pram idleTimeout + * @param idleTimeout */ public void setIdleTimeout(int idleTimeout) { this.idleTimeout = idleTimeout; @@ -168,7 +168,7 @@ public class DataFlow { /** * setHardTimeout - function to set the hardTimeout. * - * @pram hardTimeout + * @param hardTimeout */ public void setHardTimeout(int hardTimeout) { this.hardTimeout = hardTimeout; @@ -186,7 +186,7 @@ public class DataFlow { /** * setInNode - function to get the inNode. * - * @pram inNode + * @param inNode */ public void setInNode(IngressNode inNode) { this.inNode = inNode; @@ -204,7 +204,7 @@ public class DataFlow { /** * setInportobj - function to get the inportobj. * - * @pram inportobj + * @param inportobj */ public void setInportobj(IngressPort inportobj) { this.inportobj = inportobj; @@ -222,7 +222,7 @@ public class DataFlow { /** * setEnobj - function to set the enobj. * - * @pram enobj + * @param enobj */ public void setEnobj(EgressNode enobj) { this.enobj = enobj; @@ -240,7 +240,7 @@ public class DataFlow { /** * setGpobj - function to get the gpobj. * - * @return gpobj + * @param gpobj */ public void setGpobj(EgressPort gpobj) { this.gpobj = gpobj; @@ -258,7 +258,7 @@ public class DataFlow { /** * setMatchobj - function to get the matchobj. * - * @return {@link Match} + * @param matchobj {@link Match} */ public void setMatchobj(Match matchobj) { this.matchobj = matchobj; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlowList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlowList.java index f94db042..aafe64c6 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlowList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/DataFlowList.java @@ -44,7 +44,7 @@ public class DataFlowList implements Serializable, Cloneable { /** * getDataFlowlist - function to get the dataFlows. * - * @return {@link List} + * @return List of Data Flow objects */ public List getDataFlowlist() { return dataFlowlist; @@ -53,7 +53,7 @@ public class DataFlowList implements Serializable, Cloneable { /** * setDataFlowlist - function to set the dataFlowlist. * - * @params dataFlowlist + * @param dataFlowlist */ public void setDataFlowlist(List dataFlowlist) { this.dataFlowlist = dataFlowlist; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Deny.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Deny.java index 022494f8..f4c05a4b 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Deny.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Deny.java @@ -30,7 +30,7 @@ public class Deny { /** * getMachost - function to get the MacHosts. * - * @return {@link List} + * @return List of MacHost objects */ public List getMachost() { return machost; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/FlowconditionList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/FlowconditionList.java index 3f9b6dfc..4519a5fe 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/FlowconditionList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/FlowconditionList.java @@ -37,7 +37,7 @@ public class FlowconditionList { /** * getFlowconditionlist - function to get the flowcondition for this object. * - * @return {@link List} + * @return List of Flowconditions */ public List getFlowconditionlist() { return flowcondition; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Flowconditions.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Flowconditions.java index f5eb9862..7b520b2b 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Flowconditions.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Flowconditions.java @@ -75,7 +75,7 @@ public class Flowconditions implements Serializable { /** * getMatchobj - function to get the Match objects for this object. * - * @return {@link List} + * @return List of Match objects */ public List getMatchobj() { return match; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IcmpCode.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IcmpCode.java index 123c088a..a227b3ba 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IcmpCode.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IcmpCode.java @@ -41,7 +41,7 @@ public class IcmpCode { /** * setCode - function to set the code value for this object. * - * @param type + * @param code */ public void setCode(int code) { this.code = code; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Inet.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Inet.java index 6562667f..851a2465 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Inet.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Inet.java @@ -70,8 +70,6 @@ public class Inet { /** * getDst - function to get the Destination values for this object. - * - * @param src */ public String getDst() { return dst; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IngressNode.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IngressNode.java index f3567615..be671fe4 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IngressNode.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/IngressNode.java @@ -44,7 +44,7 @@ public class IngressNode { /** * setTenant - function to set the tenant value for this object. * - * @return {@link String} + * @param tenant {@link String} */ public void setTenant(String tenant) { this.tenant = tenant; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/InputOutput.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/InputOutput.java index 413eaf74..e7f7e1d2 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/InputOutput.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/InputOutput.java @@ -67,7 +67,7 @@ public class InputOutput { /** * setType - function to set the idfor this object. * - * @param id + * @param type */ public void setType(String type) { this.type = type; @@ -85,7 +85,7 @@ public class InputOutput { /** * setName - function to set the name for this object. * - * @return {@link String} + * @param name {@link String} */ public void setName(String name) { this.name = name; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/LocationDetails.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/LocationDetails.java index e8fe807f..56f1676f 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/LocationDetails.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/LocationDetails.java @@ -72,7 +72,7 @@ public class LocationDetails implements Serializable, Cloneable { /** * setPort - function to set the port values for this object. * - * @return {@link port} + * @param port */ public void setPort(PortDetails port) { this.port = port; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/MacMapped.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/MacMapped.java index ad42eebb..c5f25c67 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/MacMapped.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/MacMapped.java @@ -32,7 +32,7 @@ public class MacMapped { /** * getMacentry - function to get the macentry value for this object. * - * @return {@link List} + * @return List of MacEntry objects */ public List getMacentry() { return macentry; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/NodeRoute.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/NodeRoute.java index 8e4454b3..7e64cd29 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/NodeRoute.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/NodeRoute.java @@ -32,7 +32,7 @@ public class NodeRoute { /** * getNode - function to get Nodedetails for this object. * - * @param node + * @return node details */ public NodeDetails getNode() { return node; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PathPolicy.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PathPolicy.java index 80bab0ab..1d7b2cf4 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PathPolicy.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PathPolicy.java @@ -94,7 +94,7 @@ public class PathPolicy implements Serializable, Cloneable { /** * getCostList - costList can be obtained from this method * - * @return {@link List} + * @return List of CostDetails */ public List getCostList() { return costList; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PortDetails.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PortDetails.java index ac182714..40c1ab1f 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PortDetails.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/PortDetails.java @@ -43,7 +43,7 @@ public class PortDetails { /** * getName - function to get the name for this object * - * @return { @link String} + * @return {@link String} */ public String getName() { return name; @@ -52,7 +52,7 @@ public class PortDetails { /** * setName - function to set the name for this object. * - * @param code + * @param name */ public void setName(String name) { this.name = name; @@ -61,7 +61,7 @@ public class PortDetails { /** * getType - function to get the type for this object * - * @return { @link String} + * @return {@link String} */ public String getType() { return type; @@ -70,7 +70,7 @@ public class PortDetails { /** * setType - function to set the type for this object * - * @return { @link String} + * @param type {@link String} */ public void setType(String type) { this.type = type; @@ -79,7 +79,7 @@ public class PortDetails { /** * getId - function to get the ID for this object * - * @return { @link String} + * @return {@link String} */ public String getId() { return id; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Statistics.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Statistics.java index be22cd6c..d632dbbd 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Statistics.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Statistics.java @@ -69,7 +69,7 @@ public class Statistics { /** * setPackets - function to set the packets for this object. * - * @return {@link int} + * @param packets {@link int} */ public void setPackets(int packets) { this.packets = packets; @@ -87,7 +87,7 @@ public class Statistics { /** * setDuration - function to set the duration for this object. * - * @return {@link int} + * @param duration {@link int} */ public void setDuration(int duration) { this.duration = duration; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpdst.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpdst.java index 410cfa8f..0e4ea383 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpdst.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpdst.java @@ -41,7 +41,7 @@ public class Tpdst { /** * setDscp - function to set the dscp value for this object. * - * @param dscp + * @param port */ public void setPort(int port) { this.port = port; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpsrc.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpsrc.java index da9ffaa2..ef36e9df 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpsrc.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/Tpsrc.java @@ -39,9 +39,9 @@ public class Tpsrc { } /** - * setDscp - function to set the dscp value for this object. + * setPort - function to set the port value for this object. * - * @param dscp + * @param port */ public void setPort(int port) { this.port = port; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeFlowFilterList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeFlowFilterList.java index 47ae82bc..f9d1cc12 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeFlowFilterList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeFlowFilterList.java @@ -40,7 +40,7 @@ public class VBridgeFlowFilterList implements Cloneable, Serializable { /** * getFlowfilter - function to get the list of flowfilter value for this object. * - * @return {@link List} + * @return List of {@link FlowFilter} objects. */ public List getFlowfilter() { return flowfilter; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeIfFlowFilterNorthboundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeIfFlowFilterNorthboundList.java index ec1f0b79..6b1d9a81 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeIfFlowFilterNorthboundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeIfFlowFilterNorthboundList.java @@ -45,7 +45,7 @@ public class VBridgeIfFlowFilterNorthboundList implements Cloneable, Serializabl /** * getFlowfilter - function to get the list of flowfilter value for this object. * - * @return {@link List} + * @return List of {@link FlowFilter} objects. */ public List getFlowfilters() { return flowfilter; @@ -54,7 +54,7 @@ public class VBridgeIfFlowFilterNorthboundList implements Cloneable, Serializabl /** * setFlowfilter - function to set the list of flowfilter value for this object. * - * @param flowfilters + * @param flowfilter */ public void setFlowfilter(List flowfilter) { this.flowfilter = flowfilter; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeInterfaceList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeInterfaceList.java index 8daac976..e17e246a 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeInterfaceList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeInterfaceList.java @@ -37,7 +37,7 @@ public class VBridgeInterfaceList implements Serializable, Cloneable { /** * getInterfaces - function to get the interfaces values for this object. * - * @return {@link List} + * @return List of {@link VBridgeInterface} */ public List getInterfaces() { return interfaces; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBound.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBound.java index 4210246d..fd28782b 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBound.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBound.java @@ -137,7 +137,7 @@ public class VBridgeNorthBound { /** * setAgeInterval - function to set the ageInterval for this object. * - * @param name + * @param ageInterval */ public void setAgeInterval(int ageInterval) { this.ageInterval = ageInterval; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBoundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBoundList.java index 8f5a5095..c5e9459f 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBoundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VBridgeNorthBoundList.java @@ -36,7 +36,7 @@ public class VBridgeNorthBoundList implements Serializable, Cloneable { /** * getVbridge - function to get the list of vBridge values for this object. * - * @return {@link List} + * @return List of {@link VBridgeNorthBound} objects. */ public List getVbridge() { return vBridge; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTNConfigurationBean.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTNConfigurationBean.java index 3cc5ea17..a94b3447 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTNConfigurationBean.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTNConfigurationBean.java @@ -70,7 +70,7 @@ public class VTNConfigurationBean { /** * getDataflow - function to get the list . * - * @return {@link List } + * @return {@link DataFlowList} */ public DataFlowList getDataflow() { return dataflow; @@ -88,7 +88,7 @@ public class VTNConfigurationBean { /** * getVtFlowfilter - function to get the flowfilter for this object. * - * @return {@link vtFlowfilter } + * @return {@link VTenantFlowFilterList} */ public VTenantFlowFilterList getVtnFlowfilter() { return vtnFlowfilter; @@ -106,7 +106,7 @@ public class VTNConfigurationBean { /** * getPath - function to get the list . * - * @return {@link List } + * @return List of {@link VBridgeBean} objects */ public List getVbridge() { return vbridge; @@ -124,7 +124,7 @@ public class VTNConfigurationBean { /** * getPath - function to get the list . * - * @return {@link List } + * @return List of {@link VTerminalBean} objects */ public List getVTerminal() { return vterminal; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantFlowFilterList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantFlowFilterList.java index 6e9d4225..076b92a6 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantFlowFilterList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantFlowFilterList.java @@ -44,7 +44,7 @@ public class VTenantFlowFilterList implements Cloneable, Serializable { /** * getPath - function to get the list of flowfilter objects. * - * @return {@link List } + * @return List of {@link FlowFilter} objects */ public List getFlowfilter() { return flowfilter; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantNorthBound.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantNorthBound.java index c8aa5a0c..94cc2764 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantNorthBound.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantNorthBound.java @@ -91,7 +91,7 @@ public class VTenantNorthBound { /** * description - function to set the description for this object. * - * @param description + * @param vtnDesc */ public void setVtnDesc(String vtnDesc) { this.description = vtnDesc; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBound.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBound.java index cd747a15..970fb5da 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBound.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBound.java @@ -77,7 +77,7 @@ public class VTenantPathMapNorthBound { /** * setIndex - function to set the index for this object. * - * @param idleTimeout + * @param index */ public void setIndex(int index) { this.index = index; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBoundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBoundList.java index 97bb320a..fbc567e6 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBoundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTenantPathMapNorthBoundList.java @@ -38,7 +38,7 @@ public class VTenantPathMapNorthBoundList implements Serializable, Cloneable { /** * getPathmap - function to get the list of pathmap value for this object. * - * @return {@link List} + * @return List of {@link VTenantPathMapNorthBound} objects */ public List getPathmap() { return pathmap; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalIfFlowFilterNorthboundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalIfFlowFilterNorthboundList.java index d3fd5cdf..d1582148 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalIfFlowFilterNorthboundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalIfFlowFilterNorthboundList.java @@ -45,7 +45,7 @@ public class VTerminalIfFlowFilterNorthboundList implements Cloneable, Serializa /** * getFlowfilter - function to get the list of flowfilter value for this object. * - * @return {@link List} + * @return List of {@link FlowFilter} objects */ public List getFlowfilters() { return flowfilter; @@ -54,7 +54,7 @@ public class VTerminalIfFlowFilterNorthboundList implements Cloneable, Serializa /** * setFlowfilter - function to set the list of flowfilter value for this object. * - * @param flowfilters + * @param flowfilter */ public void setFlowfilter(List flowfilter) { this.flowfilter = flowfilter; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalInterfaceNorthboundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalInterfaceNorthboundList.java index 71d1b7ae..6a3938b6 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalInterfaceNorthboundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalInterfaceNorthboundList.java @@ -38,7 +38,7 @@ public class VTerminalInterfaceNorthboundList implements Serializable, Cloneable /** * getInterfaces - function to get the interfaces values for this object. - * @return {@link List} + * @return List of {@link VTerminalInterfaceNorthbound} objects */ public List getInterfaces() { return interfaces; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalNorthBoundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalNorthBoundList.java index 10366695..cdac03f6 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalNorthBoundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VTerminalNorthBoundList.java @@ -43,7 +43,7 @@ public class VTerminalNorthBoundList implements Serializable, Cloneable { /** * getVterm - function to get the vterminal lists for this object. * - * @return {@link List} + * @return List of {@link VTerminalNorthBound} objects */ public List getVterm() { return vterminal; @@ -52,7 +52,7 @@ public class VTerminalNorthBoundList implements Serializable, Cloneable { /** * setVterm - function to set the vterminal lists for this object. * - * @param vterminal + * @param vterm */ public void setVterm(List vterm) { this.vterminal = vterm; diff --git a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VlanNorthBoundList.java b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VlanNorthBoundList.java index f0970d4c..96504e1d 100644 --- a/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VlanNorthBoundList.java +++ b/application/list_vtn_configuration/src/main/java/org/opendaylight/vtn/app/run/config/rest/response/beans/VlanNorthBoundList.java @@ -41,7 +41,7 @@ public class VlanNorthBoundList implements Serializable, Cloneable { /** * getVlanmap- function to get the list of VlanNorthBound values for this object. * - * @return {@link List} + * @return List of {@link VlanNorthBound} objects */ public List getVlanmap() { return vlanmap; -- 2.36.6