├── .github └── workflows │ ├── build.yml │ └── publish-simulator.yml ├── .gitignore ├── CONTRIBUTIONS ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── devices │ ├── lighty-actions-device │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── action │ │ │ │ ├── Main.java │ │ │ │ ├── actions │ │ │ │ ├── ResetAction.java │ │ │ │ └── StartAction.java │ │ │ │ └── processors │ │ │ │ ├── ActionServiceDeviceProcessor.java │ │ │ │ ├── ResetActionProcessor.java │ │ │ │ └── StartActionProcessor.java │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── action │ │ │ │ └── ActionDeviceTest.java │ │ │ └── resources │ │ │ ├── get_schemas_request.xml │ │ │ ├── reset_action_request.xml │ │ │ └── start_action_request.xml │ ├── lighty-network-topology-device │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── assembly │ │ │ └── resources │ │ │ │ └── netconf-topology-device-requests.postman_collection.json │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── lighty │ │ │ │ │ └── netconf │ │ │ │ │ └── device │ │ │ │ │ └── topology │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── datastore │ │ │ │ │ ├── DataTreeChangeListenerActivator.java │ │ │ │ │ └── TopologyDataTreeChangeListener.java │ │ │ │ │ ├── processors │ │ │ │ │ ├── EmptyInput.java │ │ │ │ │ ├── NetworkTopologyServiceAbstractProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceAddNodeToTopologyProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceCreateTopologyProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceGetNodeFromTopologyProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceGetTopologiesProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceGetTopologyByIdProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceGetTopologyIdsProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceRemoveAllTopologiesProcessor.java │ │ │ │ │ ├── NetworkTopologyServiceRemoveNodeProcessor.java │ │ │ │ │ └── NetworkTopologyServiceRemoveTopologyProcessor.java │ │ │ │ │ └── rpcs │ │ │ │ │ └── NetworkTopologyServiceImpl.java │ │ │ └── resources │ │ │ │ ├── initial-network-topo-config-datastore.xml │ │ │ │ └── initial-network-topo-operational-datastore.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── topology │ │ │ │ ├── DeviceTest.java │ │ │ │ └── TestUtils.java │ │ │ └── resources │ │ │ ├── add_node_rpc_request.xml │ │ │ ├── add_node_rpc_response.xml │ │ │ ├── create_topology_config_request.xml │ │ │ ├── create_topology_rpc_request.xml │ │ │ ├── create_topology_rpc_response.xml │ │ │ ├── delete_topology_config_request.xml │ │ │ ├── delete_topology_rpc_request.xml │ │ │ ├── delete_topology_rpc_response.xml │ │ │ ├── get_config_request.xml │ │ │ ├── get_schemas_request.xml │ │ │ └── merge_topology_config_request.xml │ ├── lighty-notifications-device │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── notification │ │ │ │ ├── Main.java │ │ │ │ └── processors │ │ │ │ └── TriggerNotificationProcessor.java │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── devices │ │ │ │ └── notification │ │ │ │ └── tests │ │ │ │ ├── NotificationNetconfSessionListener.java │ │ │ │ └── NotificationTest.java │ │ │ └── resources │ │ │ ├── get_schemas_request.xml │ │ │ ├── subcribe_to_notifications_request.xml │ │ │ └── trigger_data_notification_request.xml │ ├── lighty-toaster-device │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── lighty │ │ │ │ │ └── netconf │ │ │ │ │ └── device │ │ │ │ │ └── toaster │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── processors │ │ │ │ │ ├── ToasterServiceAbstractProcessor.java │ │ │ │ │ ├── ToasterServiceCancelToastProcessor.java │ │ │ │ │ ├── ToasterServiceMakeToastProcessor.java │ │ │ │ │ └── ToasterServiceRestockToasterProcessor.java │ │ │ │ │ └── rpcs │ │ │ │ │ └── ToasterServiceImpl.java │ │ │ └── resources │ │ │ │ ├── initial-toaster-config-datastore.xml │ │ │ │ └── initial-toaster-operational-datastore.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── toaster │ │ │ │ ├── NotificationNetconfSessionListener.java │ │ │ │ └── ToasterDeviceTest.java │ │ │ └── resources │ │ │ ├── create_toaster_request.xml │ │ │ ├── get_schemas_request.xml │ │ │ ├── get_toaster_data_request.xml │ │ │ ├── make_toast_request.xml │ │ │ ├── restock_toast_request.xml │ │ │ └── subscribe_to_notifications_request.xml │ ├── lighty-toaster-multiple-devices │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── lighty │ │ │ │ │ └── netconf │ │ │ │ │ └── device │ │ │ │ │ └── toaster │ │ │ │ │ └── Main.java │ │ │ └── resources │ │ │ │ ├── initial-toaster-config-datastore.xml │ │ │ │ └── initial-toaster-operational-datastore.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── io │ │ │ │ └── lighty │ │ │ │ └── netconf │ │ │ │ └── device │ │ │ │ └── toaster │ │ │ │ └── DeviceTest.java │ │ │ └── resources │ │ │ ├── create_toaster_request.xml │ │ │ ├── get_schemas_request.xml │ │ │ ├── get_toaster_data_request.xml │ │ │ └── make_toast_request.xml │ └── pom.xml ├── models │ ├── lighty-example-data-center-model │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── yang │ │ │ └── example-data-center@2018-08-07.yang │ ├── lighty-example-network-topology-device-model │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── yang │ │ │ └── network-topology-rpcs@2023-09-27.yang │ ├── lighty-example-notifications-model │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── yang │ │ │ └── lighty-test-notifications@2018-08-20.yang │ └── pom.xml ├── parents │ ├── examples-bom │ │ ├── README.md │ │ └── pom.xml │ ├── examples-parent │ │ ├── README.md │ │ └── pom.xml │ └── pom.xml └── pom.xml ├── lgtm.yml ├── lighty-netconf-device ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── io │ │ └── lighty │ │ └── netconf │ │ └── device │ │ ├── NetconfDevice.java │ │ ├── NetconfDeviceBuilder.java │ │ ├── NetconfDeviceImpl.java │ │ ├── NetconfDeviceServices.java │ │ ├── NetconfDeviceServicesImpl.java │ │ ├── requests │ │ ├── BaseRequestProcessor.java │ │ ├── CommitRequestProcessor.java │ │ ├── DatastoreOutputRequestProcessor.java │ │ ├── DeleteConfigRequestProcessor.java │ │ ├── EditConfigRequestProcessor.java │ │ ├── GetConfigRequestProcessor.java │ │ ├── GetRequestProcessor.java │ │ ├── OkOutputRequestProcessor.java │ │ ├── RequestProcessor.java │ │ ├── RpcHandlerImpl.java │ │ ├── RpcOutputRequestProcessor.java │ │ └── notification │ │ │ ├── CreateSubscriptionRequestProcessor.java │ │ │ ├── NotificationOperation.java │ │ │ ├── NotificationPublishService.java │ │ │ ├── NotificationPublishServiceImpl.java │ │ │ └── NotificationService.java │ │ ├── response │ │ ├── Response.java │ │ ├── ResponseData.java │ │ └── ResponseErrorMessage.java │ │ └── utils │ │ ├── ArgumentParser.java │ │ ├── DefaultOperation.java │ │ ├── ModelUtils.java │ │ ├── Operation.java │ │ ├── RPCUtil.java │ │ └── TimeoutUtil.java │ └── test │ ├── java │ └── io │ │ └── lighty │ │ └── netconf │ │ └── device │ │ └── NetconfDeviceImplTest.java │ └── resources │ └── initial-network-topo-config-datastore.xml └── pom.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish-simulator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/.github/workflows/publish-simulator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/CONTRIBUTIONS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/pom.xml -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/Main.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/actions/ResetAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/actions/ResetAction.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/actions/StartAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/actions/StartAction.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/ActionServiceDeviceProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/ActionServiceDeviceProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/ResetActionProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/ResetActionProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/StartActionProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/main/java/io/lighty/netconf/device/action/processors/StartActionProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/test/java/io/lighty/netconf/device/action/ActionDeviceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/test/java/io/lighty/netconf/device/action/ActionDeviceTest.java -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/test/resources/get_schemas_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/test/resources/get_schemas_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/test/resources/reset_action_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/test/resources/reset_action_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-actions-device/src/test/resources/start_action_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-actions-device/src/test/resources/start_action_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/pom.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/assembly/resources/netconf-topology-device-requests.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/assembly/resources/netconf-topology-device-requests.postman_collection.json -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/Main.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/datastore/DataTreeChangeListenerActivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/datastore/DataTreeChangeListenerActivator.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/datastore/TopologyDataTreeChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/datastore/TopologyDataTreeChangeListener.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/EmptyInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/EmptyInput.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceAbstractProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceAbstractProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceAddNodeToTopologyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceAddNodeToTopologyProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceCreateTopologyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceCreateTopologyProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetNodeFromTopologyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetNodeFromTopologyProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologiesProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologiesProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologyByIdProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologyByIdProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologyIdsProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceGetTopologyIdsProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveAllTopologiesProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveAllTopologiesProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveNodeProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveNodeProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveTopologyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/processors/NetworkTopologyServiceRemoveTopologyProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/rpcs/NetworkTopologyServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/java/io/lighty/netconf/device/topology/rpcs/NetworkTopologyServiceImpl.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/resources/initial-network-topo-config-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/main/resources/initial-network-topo-config-datastore.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/main/resources/initial-network-topo-operational-datastore.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/DeviceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/DeviceTest.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/TestUtils.java -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/add_node_rpc_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/add_node_rpc_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/add_node_rpc_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/add_node_rpc_response.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/create_topology_config_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/create_topology_config_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/create_topology_rpc_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/create_topology_rpc_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/create_topology_rpc_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/create_topology_rpc_response.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_config_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_config_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_rpc_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_rpc_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_rpc_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/delete_topology_rpc_response.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/get_config_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/get_config_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/get_schemas_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/get_schemas_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-network-topology-device/src/test/resources/merge_topology_config_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-network-topology-device/src/test/resources/merge_topology_config_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/pom.xml -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/main/java/io/lighty/netconf/device/notification/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/main/java/io/lighty/netconf/device/notification/Main.java -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/main/java/io/lighty/netconf/device/notification/processors/TriggerNotificationProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/main/java/io/lighty/netconf/device/notification/processors/TriggerNotificationProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/test/java/io/lighty/devices/notification/tests/NotificationNetconfSessionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/test/java/io/lighty/devices/notification/tests/NotificationNetconfSessionListener.java -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/test/java/io/lighty/devices/notification/tests/NotificationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/test/java/io/lighty/devices/notification/tests/NotificationTest.java -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/test/resources/get_schemas_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/test/resources/get_schemas_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/test/resources/subcribe_to_notifications_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/test/resources/subcribe_to_notifications_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-notifications-device/src/test/resources/trigger_data_notification_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-notifications-device/src/test/resources/trigger_data_notification_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/pom.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/Main.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceAbstractProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceAbstractProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceCancelToastProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceCancelToastProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceMakeToastProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceMakeToastProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceRestockToasterProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/processors/ToasterServiceRestockToasterProcessor.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/rpcs/ToasterServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/java/io/lighty/netconf/device/toaster/rpcs/ToasterServiceImpl.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/resources/initial-toaster-config-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/resources/initial-toaster-config-datastore.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/main/resources/initial-toaster-operational-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/main/resources/initial-toaster-operational-datastore.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/java/io/lighty/netconf/device/toaster/NotificationNetconfSessionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/java/io/lighty/netconf/device/toaster/NotificationNetconfSessionListener.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/java/io/lighty/netconf/device/toaster/ToasterDeviceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/java/io/lighty/netconf/device/toaster/ToasterDeviceTest.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/create_toaster_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/create_toaster_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/get_schemas_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/get_schemas_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/get_toaster_data_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/get_toaster_data_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/make_toast_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/make_toast_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/restock_toast_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/restock_toast_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-device/src/test/resources/subscribe_to_notifications_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-device/src/test/resources/subscribe_to_notifications_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/README.md -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/pom.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/main/java/io/lighty/netconf/device/toaster/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/main/java/io/lighty/netconf/device/toaster/Main.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/main/resources/initial-toaster-config-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/main/resources/initial-toaster-config-datastore.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/main/resources/initial-toaster-operational-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/main/resources/initial-toaster-operational-datastore.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/test/java/io/lighty/netconf/device/toaster/DeviceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/test/java/io/lighty/netconf/device/toaster/DeviceTest.java -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/test/resources/create_toaster_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/test/resources/create_toaster_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/test/resources/get_schemas_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/test/resources/get_schemas_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/test/resources/get_toaster_data_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/test/resources/get_toaster_data_request.xml -------------------------------------------------------------------------------- /examples/devices/lighty-toaster-multiple-devices/src/test/resources/make_toast_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/lighty-toaster-multiple-devices/src/test/resources/make_toast_request.xml -------------------------------------------------------------------------------- /examples/devices/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/devices/pom.xml -------------------------------------------------------------------------------- /examples/models/lighty-example-data-center-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-data-center-model/README.md -------------------------------------------------------------------------------- /examples/models/lighty-example-data-center-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-data-center-model/pom.xml -------------------------------------------------------------------------------- /examples/models/lighty-example-data-center-model/src/main/yang/example-data-center@2018-08-07.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-data-center-model/src/main/yang/example-data-center@2018-08-07.yang -------------------------------------------------------------------------------- /examples/models/lighty-example-network-topology-device-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-network-topology-device-model/pom.xml -------------------------------------------------------------------------------- /examples/models/lighty-example-network-topology-device-model/src/main/yang/network-topology-rpcs@2023-09-27.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-network-topology-device-model/src/main/yang/network-topology-rpcs@2023-09-27.yang -------------------------------------------------------------------------------- /examples/models/lighty-example-notifications-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-notifications-model/pom.xml -------------------------------------------------------------------------------- /examples/models/lighty-example-notifications-model/src/main/yang/lighty-test-notifications@2018-08-20.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/lighty-example-notifications-model/src/main/yang/lighty-test-notifications@2018-08-20.yang -------------------------------------------------------------------------------- /examples/models/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/models/pom.xml -------------------------------------------------------------------------------- /examples/parents/examples-bom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/parents/examples-bom/README.md -------------------------------------------------------------------------------- /examples/parents/examples-bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/parents/examples-bom/pom.xml -------------------------------------------------------------------------------- /examples/parents/examples-parent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/parents/examples-parent/README.md -------------------------------------------------------------------------------- /examples/parents/examples-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/parents/examples-parent/pom.xml -------------------------------------------------------------------------------- /examples/parents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/parents/pom.xml -------------------------------------------------------------------------------- /examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/examples/pom.xml -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lgtm.yml -------------------------------------------------------------------------------- /lighty-netconf-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/README.md -------------------------------------------------------------------------------- /lighty-netconf-device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/pom.xml -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDevice.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceBuilder.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceImpl.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceServices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceServices.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceServicesImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/NetconfDeviceServicesImpl.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/BaseRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/BaseRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/CommitRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/CommitRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/DatastoreOutputRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/DatastoreOutputRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/DeleteConfigRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/DeleteConfigRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/EditConfigRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/EditConfigRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/GetConfigRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/GetConfigRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/GetRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/GetRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/OkOutputRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/OkOutputRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RpcHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RpcHandlerImpl.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RpcOutputRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/RpcOutputRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/CreateSubscriptionRequestProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/CreateSubscriptionRequestProcessor.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationOperation.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationPublishService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationPublishService.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationPublishServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationPublishServiceImpl.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/requests/notification/NotificationService.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/Response.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/ResponseData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/ResponseData.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/ResponseErrorMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/response/ResponseErrorMessage.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/ArgumentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/ArgumentParser.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/DefaultOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/DefaultOperation.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/ModelUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/ModelUtils.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/Operation.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/RPCUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/RPCUtil.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/TimeoutUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/main/java/io/lighty/netconf/device/utils/TimeoutUtil.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/test/java/io/lighty/netconf/device/NetconfDeviceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/test/java/io/lighty/netconf/device/NetconfDeviceImplTest.java -------------------------------------------------------------------------------- /lighty-netconf-device/src/test/resources/initial-network-topo-config-datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/lighty-netconf-device/src/test/resources/initial-network-topo-config-datastore.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PANTHEONtech/lighty-netconf-simulator/HEAD/pom.xml --------------------------------------------------------------------------------