Esempio n. 1
0
 @Override
 public INetwork getNetworkByName(String networkName) throws AdapterException {
   H3CloudNetwork h3cNetwork = networkService.getH3CNetworkById(networkName);
   H3CloudNetworkImpl network = null;
   if (h3cNetwork != null) {
     network = new H3CloudNetworkImpl(method, h3cNetwork);
   }
   return network;
 }