io.motown.ocpp.v15.soap.chargepoint.schema.ClearCacheResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocpp-v15-soap Show documentation
Show all versions of ocpp-v15-soap Show documentation
Open Charge Point Protocol (OCPP). Provides a web service endpoint based on OCPP 1.5.
The newest version!
package io.motown.ocpp.v15.soap.chargepoint.schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Defines the ClearCache.conf PDU
*
* Java class for ClearCacheResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClearCacheResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="status" type="{urn://Ocpp/Cp/2012/06/}ClearCacheStatus"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClearCacheResponse", propOrder = {
"status"
})
public class ClearCacheResponse {
@XmlElement(required = true)
protected ClearCacheStatus status;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link ClearCacheStatus }
*
*/
public ClearCacheStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link ClearCacheStatus }
*
*/
public void setStatus(ClearCacheStatus value) {
this.status = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy