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

ocpp.v15.cp.UnlockConnectorResponse Maven / Gradle / Ivy


package ocpp.v15.cp;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Defines the UnlockConnector.conf PDU
 * 
 * 

Java class for UnlockConnectorResponse complex type. * *

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

 * <complexType name="UnlockConnectorResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="status" type="{urn://Ocpp/Cp/2012/06/}UnlockStatus"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnlockConnectorResponse", propOrder = { "status" }) public class UnlockConnectorResponse { @XmlElement(required = true) @XmlSchemaType(name = "string") protected UnlockStatus status; /** * Gets the value of the status property. * * @return * possible object is * {@link UnlockStatus } * */ public UnlockStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link UnlockStatus } * */ public void setStatus(UnlockStatus value) { this.status = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy