All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.CreateTaskAction Maven / Gradle / Ivy

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CreateTaskAction complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CreateTaskAction">
 *   <complexContent>
 *     <extension base="{urn:vim25}Action">
 *       <sequence>
 *         <element name="taskTypeId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="cancelable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreateTaskAction", propOrder = { "taskTypeId", "cancelable" }) public class CreateTaskAction extends Action { @XmlElement(required = true) protected String taskTypeId; protected boolean cancelable; /** * Gets the value of the taskTypeId property. * * @return * possible object is * {@link String } * */ public String getTaskTypeId() { return taskTypeId; } /** * Sets the value of the taskTypeId property. * * @param value * allowed object is * {@link String } * */ public void setTaskTypeId(String value) { this.taskTypeId = value; } /** * Gets the value of the cancelable property. * */ public boolean isCancelable() { return cancelable; } /** * Sets the value of the cancelable property. * */ public void setCancelable(boolean value) { this.cancelable = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy