// Copyright 2012 Citrix Systems, Inc. Licensed under the // Apache License, Version 2.0 (the "License"); you may not use this // file except in compliance with the License. Citrix Systems, Inc. // reserves all rights not expressly granted by the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // Automatically generated by addcopyright.py at 04/03/2012 package com.cloud.agent.api.storage; import com.cloud.agent.api.storage.DownloadCommand.PasswordAuth; import com.cloud.agent.api.to.TemplateTO; import com.cloud.storage.Upload.Type; import com.cloud.template.VirtualMachineTemplate; public class UploadCommand extends AbstractUploadCommand { private TemplateTO template; private String url; private String installPath; private boolean hvm; private String description; private String checksum; private PasswordAuth auth; private long templateSizeInBytes; private long id; private Type type; public UploadCommand(VirtualMachineTemplate template, String url, String installPath, long sizeInBytes) { this.template = new TemplateTO(template); this.url = url; this.installPath = installPath; this.checksum = template.getChecksum(); this.id = template.getId(); this.templateSizeInBytes = sizeInBytes; } public UploadCommand(String url, long id, long sizeInBytes, String installPath, Type type){ this.template = null; this.url = url; this.installPath = installPath; this.id = id; this.type = type; this.templateSizeInBytes = sizeInBytes; } protected UploadCommand() { } public UploadCommand(UploadCommand that) { this.template = that.template; this.url = that.url; this.installPath = that.installPath; this.checksum = that.getChecksum(); this.id = that.id; } public String getDescription() { return description; } public TemplateTO getTemplate() { return template; } public void setTemplate(TemplateTO template) { this.template = template; } @Override public String getUrl() { return url; } @Override public void setUrl(String url) { this.url = url; } public boolean isHvm() { return hvm; } public void setHvm(boolean hvm) { this.hvm = hvm; } public PasswordAuth getAuth() { return auth; } public void setAuth(PasswordAuth auth) { this.auth = auth; } public Long getTemplateSizeInBytes() { return templateSizeInBytes; } public void setTemplateSizeInBytes(Long templateSizeInBytes) { this.templateSizeInBytes = templateSizeInBytes; } public long getId() { return id; } public void setId(long id) { this.id = id; } public void setInstallPath(String installPath) { this.installPath = installPath; } public void setDescription(String description) { this.description = description; } public void setChecksum(String checksum) { this.checksum = checksum; } public String getInstallPath() { return installPath; } public String getChecksum() { return checksum; } }