com.scene7.ipsapi.GetCdnCacheInvalidationStatusReturn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
package com.scene7.ipsapi;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pingAfterSeconds" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="completionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"status",
"pingAfterSeconds",
"completionTime"
})
@XmlRootElement(name = "getCdnCacheInvalidationStatusReturn", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class GetCdnCacheInvalidationStatusReturn {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String status;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer pingAfterSeconds;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar completionTime;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the pingAfterSeconds property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPingAfterSeconds() {
return pingAfterSeconds;
}
/**
* Sets the value of the pingAfterSeconds property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPingAfterSeconds(Integer value) {
this.pingAfterSeconds = value;
}
/**
* Gets the value of the completionTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCompletionTime() {
return completionTime;
}
/**
* Sets the value of the completionTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCompletionTime(XMLGregorianCalendar value) {
this.completionTime = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy