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

ocpp.v15.cs.AuthorizeResponse Maven / Gradle / Ivy


package ocpp.v15.cs;

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


/**
 * Defines the Authorize.conf PDU
 * 
 * 

Java class for AuthorizeResponse complex type. * *

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

 * <complexType name="AuthorizeResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="idTagInfo" type="{urn://Ocpp/Cs/2012/06/}IdTagInfo"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthorizeResponse", propOrder = { "idTagInfo" }) public class AuthorizeResponse { @XmlElement(required = true) protected IdTagInfo idTagInfo; /** * 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 - 2024 Weber Informatics LLC | Privacy Policy