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

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

Java class for DataTransferRequest complex type. * *

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

 * <complexType name="DataTransferRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="vendorId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="data" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DataTransferRequest", propOrder = { "vendorId", "messageId", "data" }) public class DataTransferRequest { @XmlElement(required = true) protected String vendorId; protected String messageId; protected String data; /** * Gets the value of the vendorId property. * * @return * possible object is * {@link String } * */ public String getVendorId() { return vendorId; } /** * Sets the value of the vendorId property. * * @param value * allowed object is * {@link String } * */ public void setVendorId(String value) { this.vendorId = value; } /** * Gets the value of the messageId property. * * @return * possible object is * {@link String } * */ public String getMessageId() { return messageId; } /** * Sets the value of the messageId property. * * @param value * allowed object is * {@link String } * */ public void setMessageId(String value) { this.messageId = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link String } * */ public String getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link String } * */ public void setData(String value) { this.data = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy