Package com.abiquo.ovfmanager.ovf.section

Examples of com.abiquo.ovfmanager.ovf.section.OperatingSystemOVF


        return product;
    }

    private static OperatingSystemSectionType createOperatingSystemSection(final TemplateDto disk)
    {
        final OperatingSystemOVF type =
            disk.getOsType() != null ? OperatingSystemOVF.valueOf(disk.getOsType().toUpperCase())
                : OperatingSystemOVF.OTHER_64;
        final OperatingSystemSectionType ossection = new OperatingSystemSectionType();
        ossection.setId(type.getCode());
        ossection.setVersion(disk.getOsVersion());
        ossection.setDescription(CIMTypesUtils.createMsg(type.getDescription(), null));
        return ossection;
    }
View Full Code Here

TOP

Related Classes of com.abiquo.ovfmanager.ovf.section.OperatingSystemOVF

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.