Package com.cloud.storage

Examples of com.cloud.storage.TemplateProfile


   
    return success;
  }
 
  public TemplateProfile prepareDelete(DeleteTemplateCmd cmd) {
    TemplateProfile profile = super.prepareDelete(cmd);
    VMTemplateVO template = (VMTemplateVO)profile.getTemplate();
    Long zoneId = profile.getZoneId();
   
    if (template.getTemplateType() == TemplateType.SYSTEM) {
      throw new InvalidParameterValueException("The DomR template cannot be deleted.");
    }
View Full Code Here


   
    return profile;
  }
 
  public TemplateProfile prepareDelete(DeleteIsoCmd cmd) {
    TemplateProfile profile = super.prepareDelete(cmd);
    Long zoneId = profile.getZoneId();
   
    if (zoneId != null && (_ssvmMgr.findSecondaryStorageHost(zoneId) == null)) {
        throw new InvalidParameterValueException("Failed to find a secondary storage host in the specified zone.");
      }
   
View Full Code Here

TOP

Related Classes of com.cloud.storage.TemplateProfile

Copyright © 2018 www.massapicom. 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.