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

io.motown.ocpp.v15.soap.centralsystem.schema.BootNotificationRequest 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 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 BootNotification.req PDU
 * 
 * 

Java class for BootNotificationRequest complex type. * *

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

 * <complexType name="BootNotificationRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="chargePointVendor" type="{urn://Ocpp/Cs/2012/06/}ChargePointVendor"/>
 *         <element name="chargePointModel" type="{urn://Ocpp/Cs/2012/06/}ChargePointModel"/>
 *         <element name="chargePointSerialNumber" type="{urn://Ocpp/Cs/2012/06/}ChargePointSerialNumber" minOccurs="0"/>
 *         <element name="chargeBoxSerialNumber" type="{urn://Ocpp/Cs/2012/06/}ChargeBoxSerialNumber" minOccurs="0"/>
 *         <element name="firmwareVersion" type="{urn://Ocpp/Cs/2012/06/}FirmwareVersion" minOccurs="0"/>
 *         <element name="iccid" type="{urn://Ocpp/Cs/2012/06/}IccidString" minOccurs="0"/>
 *         <element name="imsi" type="{urn://Ocpp/Cs/2012/06/}ImsiString" minOccurs="0"/>
 *         <element name="meterType" type="{urn://Ocpp/Cs/2012/06/}MeterType" minOccurs="0"/>
 *         <element name="meterSerialNumber" type="{urn://Ocpp/Cs/2012/06/}MeterSerialNumber" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BootNotificationRequest", propOrder = { "chargePointVendor", "chargePointModel", "chargePointSerialNumber", "chargeBoxSerialNumber", "firmwareVersion", "iccid", "imsi", "meterType", "meterSerialNumber" }) public class BootNotificationRequest { @XmlElement(required = true) protected String chargePointVendor; @XmlElement(required = true) protected String chargePointModel; protected String chargePointSerialNumber; protected String chargeBoxSerialNumber; protected String firmwareVersion; protected String iccid; protected String imsi; protected String meterType; protected String meterSerialNumber; /** * Gets the value of the chargePointVendor property. * * @return * possible object is * {@link String } * */ public String getChargePointVendor() { return chargePointVendor; } /** * Sets the value of the chargePointVendor property. * * @param value * allowed object is * {@link String } * */ public void setChargePointVendor(String value) { this.chargePointVendor = value; } /** * Gets the value of the chargePointModel property. * * @return * possible object is * {@link String } * */ public String getChargePointModel() { return chargePointModel; } /** * Sets the value of the chargePointModel property. * * @param value * allowed object is * {@link String } * */ public void setChargePointModel(String value) { this.chargePointModel = value; } /** * Gets the value of the chargePointSerialNumber property. * * @return * possible object is * {@link String } * */ public String getChargePointSerialNumber() { return chargePointSerialNumber; } /** * Sets the value of the chargePointSerialNumber property. * * @param value * allowed object is * {@link String } * */ public void setChargePointSerialNumber(String value) { this.chargePointSerialNumber = value; } /** * Gets the value of the chargeBoxSerialNumber property. * * @return * possible object is * {@link String } * */ public String getChargeBoxSerialNumber() { return chargeBoxSerialNumber; } /** * Sets the value of the chargeBoxSerialNumber property. * * @param value * allowed object is * {@link String } * */ public void setChargeBoxSerialNumber(String value) { this.chargeBoxSerialNumber = value; } /** * Gets the value of the firmwareVersion property. * * @return * possible object is * {@link String } * */ public String getFirmwareVersion() { return firmwareVersion; } /** * Sets the value of the firmwareVersion property. * * @param value * allowed object is * {@link String } * */ public void setFirmwareVersion(String value) { this.firmwareVersion = value; } /** * Gets the value of the iccid property. * * @return * possible object is * {@link String } * */ public String getIccid() { return iccid; } /** * Sets the value of the iccid property. * * @param value * allowed object is * {@link String } * */ public void setIccid(String value) { this.iccid = value; } /** * Gets the value of the imsi property. * * @return * possible object is * {@link String } * */ public String getImsi() { return imsi; } /** * Sets the value of the imsi property. * * @param value * allowed object is * {@link String } * */ public void setImsi(String value) { this.imsi = value; } /** * Gets the value of the meterType property. * * @return * possible object is * {@link String } * */ public String getMeterType() { return meterType; } /** * Sets the value of the meterType property. * * @param value * allowed object is * {@link String } * */ public void setMeterType(String value) { this.meterType = value; } /** * Gets the value of the meterSerialNumber property. * * @return * possible object is * {@link String } * */ public String getMeterSerialNumber() { return meterSerialNumber; } /** * Sets the value of the meterSerialNumber property. * * @param value * allowed object is * {@link String } * */ public void setMeterSerialNumber(String value) { this.meterSerialNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy