Package org.apache.cloudstack.storage.image.format

Examples of org.apache.cloudstack.storage.image.format.ISO


        ImageDataVO template = createForUpdate();
        template.setRemoved(new Date());

        ImageDataVO vo = findById(id);
        if (vo != null) {
            if (vo.getFormat().equalsIgnoreCase(new ISO().toString())) {
                _tagsDao.removeByIdAndType(id, TaggedResourceType.ISO);
            } else {
                _tagsDao.removeByIdAndType(id, TaggedResourceType.Template);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.storage.image.format.ISO

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.