diff --git a/lighty-core/dependency-versions/pom.xml b/lighty-core/dependency-versions/pom.xml index 2607fa9a1c..c1be3560f3 100644 --- a/lighty-core/dependency-versions/pom.xml +++ b/lighty-core/dependency-versions/pom.xml @@ -129,7 +129,7 @@ org.junit junit-bom - 5.11.2 + 5.11.4 pom import diff --git a/lighty-core/lighty-parent/pom.xml b/lighty-core/lighty-parent/pom.xml index b56a8f7c35..11bb157a2e 100644 --- a/lighty-core/lighty-parent/pom.xml +++ b/lighty-core/lighty-parent/pom.xml @@ -115,12 +115,12 @@ org.apache.maven.plugins maven-failsafe-plugin - 3.5.1 + 3.5.2 org.apache.maven.plugins maven-surefire-plugin - 3.5.1 + 3.5.2 1 true @@ -170,7 +170,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.10.1 + 3.11.2 true @@ -186,13 +186,13 @@ maven-checkstyle-plugin - 3.5.0 + 3.6.0 com.puppycrawl.tools checkstyle - 10.18.2 + 10.21.2 com.github.sevntu-checkstyle @@ -209,7 +209,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.4 + 4.8.6.6 com.github.spotbugs diff --git a/lighty-examples/lighty-controller-springboot-netconf/pom.xml b/lighty-examples/lighty-controller-springboot-netconf/pom.xml index 8a7c6e53b8..3122b8949e 100644 --- a/lighty-examples/lighty-controller-springboot-netconf/pom.xml +++ b/lighty-examples/lighty-controller-springboot-netconf/pom.xml @@ -124,7 +124,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.5.1 + 3.5.2 1 true diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/DataConverter.java b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/DataConverter.java index cc6cce6fa8..eb1ba1071d 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/DataConverter.java +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/DataConverter.java @@ -166,6 +166,7 @@ private static Inference toInference(final YangInstanceIdentifier path, final Ef /** * Find module by the element-name in current converter's schema-context. + * *

It is necessary to specify module name as prefix, if there are multiple modules with same elements - the * element has to be specified uniquely.

*
    diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/ElementNameWithModuleName.java b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/ElementNameWithModuleName.java index 77358801cb..948ff07e30 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/ElementNameWithModuleName.java +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/src/main/java/io/lighty/modules/gnmi/commons/util/ElementNameWithModuleName.java @@ -13,6 +13,7 @@ /** * Immutable representation of Element-name together with optional Module-name. + * *

    This class may be helpful when preparing string values representing YANG elements, where representation of * `openconfig-interfaces:interfaces` can be parsed and manipulate withing objects of this class.

    */ diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/src/main/java/io/lighty/gnmi/southbound/device/session/listener/GnmiConnectionStatusListener.java b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/src/main/java/io/lighty/gnmi/southbound/device/session/listener/GnmiConnectionStatusListener.java index b405b32e00..0dd36af7fa 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/src/main/java/io/lighty/gnmi/southbound/device/session/listener/GnmiConnectionStatusListener.java +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/src/main/java/io/lighty/gnmi/southbound/device/session/listener/GnmiConnectionStatusListener.java @@ -62,6 +62,7 @@ public synchronized void init() { /** * Update device connection state in md-sal datastore to READY. + * *

    As far as the state may change in time based on actual underlying connection, this method will perform the * write transaction into md-sal only if last observed state of underlying connection is still READY.

    *