com.xerox.amazonws.typica.jaxb.CreateImage Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.10.06 at 09:30:13 PM CEST
//
package com.xerox.amazonws.typica.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CreateImageType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreateImageType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="instanceId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="noReboot" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateImageType", propOrder = {
"instanceId",
"name",
"description",
"noReboot"
})
@XmlRootElement(name = "CreateImage")
public class CreateImage {
@XmlElement(required = true)
protected String instanceId;
@XmlElement(required = true)
protected String name;
protected String description;
protected Boolean noReboot;
/**
* Gets the value of the instanceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstanceId() {
return instanceId;
}
/**
* Sets the value of the instanceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstanceId(String value) {
this.instanceId = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the noReboot property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNoReboot() {
return noReboot;
}
/**
* Sets the value of the noReboot property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNoReboot(Boolean value) {
this.noReboot = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy