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

io.motown.ocpp.v15.soap.centralsystem.schema.BootNotificationResponse Maven / Gradle / Ivy

Go to download

Open Charge Point Protocol (OCPP). Provides a web service endpoint based on OCPP 1.5.

The newest version!

package io.motown.ocpp.v15.soap.centralsystem.schema;

import java.util.Date;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Defines the BootNotification.conf PDU
 * 
 * 

Java class for BootNotificationResponse complex type. * *

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

 * <complexType name="BootNotificationResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="status" type="{urn://Ocpp/Cs/2012/06/}RegistrationStatus"/>
 *         <element name="currentTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="heartbeatInterval" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BootNotificationResponse", propOrder = { "status", "currentTime", "heartbeatInterval" }) public class BootNotificationResponse { @XmlElement(required = true) protected RegistrationStatus status; @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date currentTime; protected int heartbeatInterval; /** * Gets the value of the status property. * * @return * possible object is * {@link RegistrationStatus } * */ public RegistrationStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link RegistrationStatus } * */ public void setStatus(RegistrationStatus value) { this.status = value; } /** * Gets the value of the currentTime property. * * @return * possible object is * {@link String } * */ public Date getCurrentTime() { return currentTime; } /** * Sets the value of the currentTime property. * * @param value * allowed object is * {@link String } * */ public void setCurrentTime(Date value) { this.currentTime = value; } /** * Gets the value of the heartbeatInterval property. * */ public int getHeartbeatInterval() { return heartbeatInterval; } /** * Sets the value of the heartbeatInterval property. * */ public void setHeartbeatInterval(int value) { this.heartbeatInterval = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy