Skip to content

Commit c1fbb00

Browse files
authored
Merge pull request #330 from Tobianas/22.x_titantium_sr2
Adopt Titanium SR2 versions
2 parents 2c6536d + a392635 commit c1fbb00

12 files changed

Lines changed: 60 additions & 41 deletions

File tree

examples/devices/lighty-actions-device/src/test/java/io/lighty/netconf/device/action/ActionDeviceTest.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
3535
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3636
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
37+
import org.opendaylight.netconf.transport.ssh.SSHNegotiatedAlgListener;
3738
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
3839
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
3940
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
@@ -57,11 +58,13 @@ public class ActionDeviceTest {
5758
private static final int DEVICE_SIMULATOR_PORT = 9090;
5859
private static final String RESET_ACTION_EXPECTED_VALUE = "2020-09-03T16:20:00Z";
5960
private static final String START_ACTION_EXPECTED_VALUE = "2020-09-03T16:30:00Z";
61+
private static final SSHNegotiatedAlgListener NO_OP_LISTENER = (kex, hostKey, enc, mac) -> {
62+
// No-op
63+
};
6064
public static final String START_ACTION_REQUEST_XML = "start_action_request.xml";
6165
public static final String RESET_ACTION_REQUEST_XML = "reset_action_request.xml";
6266
public static final String START_TAG = "start-finished-at";
6367
public static final String RESET_TAG = "reset-finished-at";
64-
6568
private static Main deviceSimulator;
6669
private static NetconfClientFactoryImpl dispatcher;
6770

@@ -103,8 +106,8 @@ public void getSchemaTest() throws IOException, URISyntaxException, SAXException
103106
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
104107

105108
try (NetconfClientSession session =
106-
dispatcher.createClient(createSHHConfig(sessionListener))
107-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
109+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
110+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
108111
final NetconfMessage schemaResponse = sentRequesttoDevice(
109112
sessionListener, "get_schemas_request.xml");
110113

@@ -133,8 +136,8 @@ public void actionsTest() throws IOException, URISyntaxException, SAXException,
133136
ExecutionException, TimeoutException, UnsupportedConfigurationException {
134137
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
135138
try (NetconfClientSession session =
136-
dispatcher.createClient(createSHHConfig(sessionListener))
137-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
139+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
140+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
138141
final NetconfMessage startActionResponse = sentRequesttoDevice(sessionListener, START_ACTION_REQUEST_XML);
139142
final String startResultTag = startActionResponse.getDocument().getDocumentElement().getElementsByTagName(
140143
START_TAG).item(0).getTextContent();

examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/rpcs/NetworkTopologyServiceImpl.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
import org.opendaylight.mdsal.binding.api.ReadTransaction;
3131
import org.opendaylight.mdsal.binding.api.WriteTransaction;
3232
import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
33-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev241009.ConnectionOper.ConnectionStatus;
34-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev241009.connection.oper.AvailableCapabilitiesBuilder;
35-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev241009.connection.oper.UnavailableCapabilitiesBuilder;
36-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev241009.connection.oper.available.capabilities.AvailableCapability;
37-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev241009.connection.oper.available.capabilities.AvailableCapabilityBuilder;
38-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev240911.NetconfNodeAugment;
39-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev240911.NetconfNodeAugmentBuilder;
40-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev240911.netconf.node.augment.NetconfNode;
41-
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev240911.netconf.node.augment.NetconfNodeBuilder;
33+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev251205.ConnectionOper.ConnectionStatus;
34+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev251205.connection.oper.AvailableCapabilitiesBuilder;
35+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev251205.connection.oper.UnavailableCapabilitiesBuilder;
36+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev251205.connection.oper.available.capabilities.AvailableCapability;
37+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev251205.connection.oper.available.capabilities.AvailableCapabilityBuilder;
38+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev251205.NetconfNodeAugment;
39+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev251205.NetconfNodeAugmentBuilder;
40+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev251205.netconf.node.augment.NetconfNode;
41+
import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev251205.netconf.node.augment.NetconfNodeBuilder;
4242
import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NetworkTopology;
4343
import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.TopologyId;
4444
import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.Topology;

examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/DeviceTest.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
3636
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3737
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
38+
import org.opendaylight.netconf.transport.ssh.SSHNegotiatedAlgListener;
3839
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
3940
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
4041
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
@@ -71,6 +72,9 @@ public class DeviceTest {
7172
private static final String GET_CONFIG_REQUEST_XML = "get_config_request.xml";
7273
private static final String DELETE_TOPOLOGY_CONFIG_REQUEST_XML = "delete_topology_config_request.xml";
7374
private static final String GET_SCHEMAS_REQUEST_XML = "get_schemas_request.xml";
75+
private static final SSHNegotiatedAlgListener NO_OP_LISTENER = (kex, hostKey, enc, mac) -> {
76+
// No-op
77+
};
7478
private static Main deviceSimulator;
7579
private static NetconfClientFactory dispatcher;
7680

@@ -114,7 +118,7 @@ public void getSchemaTest() throws IOException, URISyntaxException, SAXException
114118
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
115119

116120
try (NetconfClientSession session =
117-
dispatcher.createClient(createSHHConfig(sessionListener))
121+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
118122
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
119123
final NetconfMessage schemaResponse = sendRequestToDevice(GET_SCHEMAS_REQUEST_XML, sessionListener);
120124

@@ -143,7 +147,7 @@ public void deviceConfigOperationsTest() throws InterruptedException, ExecutionE
143147
IOException, TimeoutException, URISyntaxException, SAXException, UnsupportedConfigurationException {
144148
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
145149
try (NetconfClientSession session =
146-
dispatcher.createClient(createSHHConfig(sessionListener))
150+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
147151
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
148152
final NetconfMessage createTopoResponse =
149153
sendRequestToDevice(CREATE_TOPOLOGY_CONFIG_REQUEST_XML, sessionListener);
@@ -193,7 +197,7 @@ public void deviceRpcTest() throws ExecutionException, InterruptedException, IOE
193197
SAXException, TimeoutException, UnsupportedConfigurationException {
194198
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
195199
try (NetconfClientSession session =
196-
dispatcher.createClient(createSHHConfig(sessionListener))
200+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
197201
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
198202

199203
final NetconfMessage createTopoResponse =
@@ -215,7 +219,7 @@ public void testCapabilitiesFormat() throws IOException, URISyntaxException, SAX
215219
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
216220

217221
try (NetconfClientSession session =
218-
dispatcher.createClient(createSHHConfig(sessionListener))
222+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
219223
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
220224
final NetconfMessage schemaResponse = sendRequestToDevice(GET_SCHEMAS_REQUEST_XML, sessionListener);
221225

examples/devices/lighty-notifications-device/src/test/java/io/lighty/devices/notification/tests/NotificationTest.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
3737
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3838
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
39+
import org.opendaylight.netconf.transport.ssh.SSHNegotiatedAlgListener;
3940
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
4041
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
4142
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
@@ -62,6 +63,9 @@ public class NotificationTest {
6263
private static final String SUBSCRIBE_MSG_TAG = "m-2";
6364
private static final String EXPECTED_NOTIFICATION_PAYLOAD = "Test Notification";
6465
private static final String GET_SCHEMAS_REQUEST_XML = "get_schemas_request.xml";
66+
private static final SSHNegotiatedAlgListener NO_OP_LISTENER = (kex, hostKey, enc, mac) -> {
67+
// No-op
68+
};
6569
private static Main deviceSimulator;
6670
private static NetconfClientFactory dispatcher;
6771

@@ -108,8 +112,8 @@ public void getNotificationSchemaTest() throws IOException, URISyntaxException,
108112
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
109113

110114
try (NetconfClientSession session =
111-
dispatcher.createClient(createSHHConfig(sessionListener))
112-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
115+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
116+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
113117
final NetconfMessage schemaResponse = sendRequesttoDevice(sessionListener, GET_SCHEMAS_REQUEST_XML);
114118

115119
final NodeList schema = schemaResponse.getDocument().getDocumentElement().getElementsByTagName("schema");
@@ -141,8 +145,8 @@ public void triggerNotificationRpcTest() throws IOException, URISyntaxException,
141145
new NotificationNetconfSessionListener(countDownLatch, EXPECTED_NOTIFICATION_PAYLOAD);
142146

143147
try (NetconfClientSession session =
144-
dispatcher.createClient(createSHHConfig(sessionListener))
145-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
148+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER
149+
).get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
146150
final NetconfMessage subscribeResponse =
147151
sendRequesttoDevice(sessionListener, SUBCRIBE_TO_NOTIFICATIONS_REQUEST_XML);
148152

examples/devices/lighty-toaster-device/src/test/java/io/lighty/netconf/device/toaster/ToasterDeviceTest.java

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
3737
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3838
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
39+
import org.opendaylight.netconf.transport.ssh.SSHNegotiatedAlgListener;
3940
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
4041
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
4142
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
@@ -61,6 +62,9 @@ public class ToasterDeviceTest {
6162
private static final String RESTOCK_TOAST_REQUEST_XML = "restock_toast_request.xml";
6263
private static final String CREATE_TOASTER_REQUEST_XML = "create_toaster_request.xml";
6364
private static final String GET_TOASTER_DATA_REQUEST_XML = "get_toaster_data_request.xml";
65+
private static final SSHNegotiatedAlgListener NO_OP_LISTENER = (kex, hostKey, enc, mac) -> {
66+
// No-op
67+
};
6468
public static final String SUBSCRIBE_TO_NOTIFICATIONS_REQUEST_XML = "subscribe_to_notifications_request.xml";
6569
public static final String GET_SCHEMAS_REQUEST_XML = "get_schemas_request.xml";
6670

@@ -105,8 +109,8 @@ public void getSchemaTest() throws IOException, URISyntaxException, SAXException
105109
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
106110

107111
try (NetconfClientSession session =
108-
dispatcher.createClient(createSHHConfig(sessionListener))
109-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
112+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
113+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
110114
final NetconfMessage schemaResponse = sentRequestToDevice(GET_SCHEMAS_REQUEST_XML,
111115
sessionListener);
112116

@@ -138,8 +142,8 @@ public void toasterRpcsTest() throws ExecutionException, InterruptedException, U
138142
new SimpleNetconfClientSessionListener();
139143

140144
try (NetconfClientSession sessionSimple =
141-
dispatcher.createClient(createSHHConfig(sessionListenerSimple))
142-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
145+
dispatcher.createClient(createSHHConfig(sessionListenerSimple), NO_OP_LISTENER)
146+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
143147

144148
final NetconfMessage createToasterResponse =
145149
sentRequestToDevice(CREATE_TOASTER_REQUEST_XML, sessionListenerSimple);
@@ -172,11 +176,11 @@ public void toasterNotificationTest() throws ExecutionException, InterruptedExce
172176
new SimpleNetconfClientSessionListener();
173177

174178
try (NetconfClientSession sessionNotification =
175-
dispatcher.createClient(createSHHConfig(sessionListenerNotification))
176-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
177-
NetconfClientSession sessionSimple =
178-
dispatcher.createClient(createSHHConfig(sessionListenerSimple))
179-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
179+
dispatcher.createClient(createSHHConfig(sessionListenerNotification), NO_OP_LISTENER)
180+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
181+
NetconfClientSession sessionSimple =
182+
dispatcher.createClient(createSHHConfig(sessionListenerSimple), NO_OP_LISTENER)
183+
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
180184

181185
final NetconfMessage subscribeResponse =
182186
sentRequestToDevice(SUBSCRIBE_TO_NOTIFICATIONS_REQUEST_XML, sessionListenerNotification);
@@ -207,7 +211,7 @@ public void testIetfNetconfSchemaPresence() throws Exception {
207211
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
208212

209213
try (NetconfClientSession session =
210-
dispatcher.createClient(createSHHConfig(sessionListener))
214+
dispatcher.createClient(createSHHConfig(sessionListener), NO_OP_LISTENER)
211215
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS)) {
212216

213217
final NetconfMessage schemaResponse = sentRequestToDevice(GET_SCHEMAS_REQUEST_XML,

examples/devices/lighty-toaster-multiple-devices/src/test/java/io/lighty/netconf/device/toaster/DeviceTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
4040
import org.opendaylight.netconf.nettyutil.AbstractNetconfSession;
4141
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
42+
import org.opendaylight.netconf.transport.ssh.SSHNegotiatedAlgListener;
4243
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
4344
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
4445
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
@@ -69,6 +70,9 @@ public class DeviceTest {
6970
public static final String GET_SCHEMAS_REQUEST_XML = "get_schemas_request.xml";
7071
private static final List<SimpleNetconfClientSessionListener> SESSION_LISTENERS = new ArrayList<>();
7172
private static final List<NetconfClientSession> NETCONF_CLIENT_SESSIONS = new ArrayList<>();
73+
private static final SSHNegotiatedAlgListener NO_OP_LISTENER = (kex, hostKey, enc, mac) -> {
74+
// No-op
75+
};
7276
private static Main deviceSimulator;
7377

7478
@BeforeAll
@@ -83,8 +87,8 @@ public static void setUpClass() throws InterruptedException, ExecutionException,
8387
new NetconfClientFactoryImpl(new DefaultNetconfTimer());
8488
for (int port = DEVICE_STARTING_PORT; port < DEVICE_STARTING_PORT + DEVICE_COUNT; port++) {
8589
final SimpleNetconfClientSessionListener sessionListener = new SimpleNetconfClientSessionListener();
86-
NetconfClientSession session = dispatcher.createClient(createSHHConfig(sessionListener, port))
87-
.get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
90+
NetconfClientSession session = dispatcher.createClient(createSHHConfig(sessionListener, port),
91+
NO_OP_LISTENER).get(TimeoutUtil.TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
8892
NETCONF_CLIENT_SESSIONS.add(session);
8993
SESSION_LISTENERS.add(sessionListener);
9094
}

examples/models/lighty-example-data-center-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>io.lighty.core</groupId>
1414
<artifactId>lighty-binding-parent</artifactId>
15-
<version>22.1.0</version>
15+
<version>22.2.0</version>
1616
<relativePath/>
1717
</parent>
1818

examples/models/lighty-example-network-topology-device-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>io.lighty.core</groupId>
1414
<artifactId>lighty-binding-parent</artifactId>
15-
<version>22.1.0</version>
15+
<version>22.2.0</version>
1616
<relativePath/>
1717
</parent>
1818

examples/models/lighty-example-network-topology-device-model/src/main/yang/network-topology-rpcs@2023-09-27.yang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ module network-topology-rpcs {
66
prefix "ntr";
77

88
import network-topology { prefix "nt"; revision-date 2013-10-21; }
9-
import netconf-node-topology { prefix "nnt"; revision-date 2024-09-11; }
10-
import odl-netconf-device { prefix "ond"; revision-date 2024-10-09; }
9+
import netconf-node-topology { prefix "nnt"; revision-date 2025-12-05; }
10+
import odl-netconf-device { prefix "ond"; revision-date 2025-12-05; }
1111

1212
organization "Pantheon.tech";
1313

examples/models/lighty-example-notifications-model/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>io.lighty.core</groupId>
1414
<artifactId>lighty-binding-parent</artifactId>
15-
<version>22.1.0</version>
15+
<version>22.2.0</version>
1616
<relativePath/>
1717
</parent>
1818

0 commit comments

Comments
 (0)