com.xerox.amazonws.typica.autoscale.jaxb.Activity 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:17 PM CEST
//
package com.xerox.amazonws.typica.autoscale.jaxb;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for Activity complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Activity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ActivityId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Cause" type="{http://autoscaling.amazonaws.com/doc/2009-05-15/}Cause"/>
* <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="EndTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="StatusMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Progress" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Activity", propOrder = {
"activityId",
"description",
"cause",
"startTime",
"endTime",
"statusCode",
"statusMessage",
"progress"
})
public class Activity {
@XmlElement(name = "ActivityId", required = true)
protected String activityId;
@XmlElement(name = "Description")
protected String description;
@XmlElement(name = "Cause", required = true)
protected String cause;
@XmlElement(name = "StartTime", required = true)
protected XMLGregorianCalendar startTime;
@XmlElement(name = "EndTime")
protected XMLGregorianCalendar endTime;
@XmlElement(name = "StatusCode", required = true)
protected String statusCode;
@XmlElement(name = "StatusMessage")
protected String statusMessage;
@XmlElement(name = "Progress")
protected BigInteger progress;
/**
* Gets the value of the activityId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActivityId() {
return activityId;
}
/**
* Sets the value of the activityId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActivityId(String value) {
this.activityId = 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 cause property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCause() {
return cause;
}
/**
* Sets the value of the cause property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCause(String value) {
this.cause = value;
}
/**
* Gets the value of the startTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartTime() {
return startTime;
}
/**
* Sets the value of the startTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartTime(XMLGregorianCalendar value) {
this.startTime = value;
}
/**
* Gets the value of the endTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndTime() {
return endTime;
}
/**
* Sets the value of the endTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndTime(XMLGregorianCalendar value) {
this.endTime = value;
}
/**
* Gets the value of the statusCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusCode() {
return statusCode;
}
/**
* Sets the value of the statusCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusCode(String value) {
this.statusCode = value;
}
/**
* Gets the value of the statusMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusMessage() {
return statusMessage;
}
/**
* Sets the value of the statusMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusMessage(String value) {
this.statusMessage = value;
}
/**
* Gets the value of the progress property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getProgress() {
return progress;
}
/**
* Sets the value of the progress property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setProgress(BigInteger value) {
this.progress = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy