Package org.apache.stratos.cloud.controller.interfaces

Examples of org.apache.stratos.cloud.controller.interfaces.Iaas.detachVolume()


          String volumeId = volume.getId();
          if (volumeId == null) {
            return;
          }
          Iaas iaas = iaasProvider.getIaas();
          iaas.detachVolume(ctxt.getInstanceId(), volumeId);
        } catch (ResourceNotFoundException ignore) {
          if(log.isDebugEnabled()) {
            log.debug(ignore);
          }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.