![JAR search and dependency download from the Maven repository](/logo.png)
io.motown.ocpp.v15.soap.centralsystem.schema.StartTransactionResponse 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.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 StartTransaction.conf PDU
*
* Java class for StartTransactionResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StartTransactionResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="idTagInfo" type="{urn://Ocpp/Cs/2012/06/}IdTagInfo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StartTransactionResponse", propOrder = {
"transactionId",
"idTagInfo"
})
public class StartTransactionResponse {
protected int transactionId;
@XmlElement(required = true)
protected IdTagInfo idTagInfo;
/**
* Gets the value of the transactionId property.
*
*/
public int getTransactionId() {
return transactionId;
}
/**
* Sets the value of the transactionId property.
*
*/
public void setTransactionId(int value) {
this.transactionId = value;
}
/**
* Gets the value of the idTagInfo property.
*
* @return
* possible object is
* {@link IdTagInfo }
*
*/
public IdTagInfo getIdTagInfo() {
return idTagInfo;
}
/**
* Sets the value of the idTagInfo property.
*
* @param value
* allowed object is
* {@link IdTagInfo }
*
*/
public void setIdTagInfo(IdTagInfo value) {
this.idTagInfo = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy