/** * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * The Original Code is available at https://abicloud.svn.sourceforge.net/svnroot/abicloud * * The Initial Developer of the Original Code is Soluciones Grid, S.L. (www.abiquo.com), * Consell de Cent 296 principal 2ยบ, 08007 Barcelona, Spain. * No portions of the Code have been created by third parties. * All Rights Reserved. * * Contributor(s): * Telefonica Investigacion y Desarrollo S.A.U. (http://www.tid.es) * Emilio Vargas 6, 28043 Madrid, Spain. * */ package com.abiquo.ovf.section; import org.dmtf.schemas.ovf.envelope._1.InstallSectionType; import com.abiquo.cim.CIMTypesUtils; public class OVFInstallUtils { public static InstallSectionType createInstallSection(String info, Integer initialBootStopDelay) { InstallSectionType isection = new InstallSectionType(); isection.setInfo(CIMTypesUtils.createMsg(info, null)); // TODO message id isection.setInitialBootStopDelay(initialBootStopDelay); return isection; } }