use of org.onosproject.ui.UiExtensionService in project onos by opennetworkinglab.
the class UiGeoMapListCommand method doExecute.
@Override
protected void doExecute() {
UiExtensionService uxs = get(UiExtensionService.class);
uxs.getExtensions().forEach(ext -> {
UiTopoMapFactory mapFactory = ext.topoMapFactory();
if (mapFactory != null) {
mapFactory.geoMaps().forEach(m -> print("%s", m));
}
});
}
Aggregations