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

io.motown.ocpp.v15.soap.chargepoint.schema.GetDiagnosticsRequest 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.chargepoint.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 GetDiagnostics.req PDU
 * 
 * 

Java class for GetDiagnosticsRequest complex type. * *

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

 * <complexType name="GetDiagnosticsRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="location" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 *         <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="stopTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="retries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="retryInterval" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetDiagnosticsRequest", propOrder = { "location", "startTime", "stopTime", "retries", "retryInterval" }) public class GetDiagnosticsRequest { @XmlElement(required = true) @XmlSchemaType(name = "anyURI") protected String location; @XmlElement(type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date startTime; @XmlElement(type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date stopTime; protected Integer retries; protected Integer retryInterval; /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } /** * Gets the value of the startTime property. * * @return * possible object is * {@link String } * */ public Date getStartTime() { return startTime; } /** * Sets the value of the startTime property. * * @param value * allowed object is * {@link String } * */ public void setStartTime(Date value) { this.startTime = value; } /** * Gets the value of the stopTime property. * * @return * possible object is * {@link String } * */ public Date getStopTime() { return stopTime; } /** * Sets the value of the stopTime property. * * @param value * allowed object is * {@link String } * */ public void setStopTime(Date value) { this.stopTime = value; } /** * Gets the value of the retries property. * * @return * possible object is * {@link Integer } * */ public Integer getRetries() { return retries; } /** * Sets the value of the retries property. * * @param value * allowed object is * {@link Integer } * */ public void setRetries(Integer value) { this.retries = value; } /** * Gets the value of the retryInterval property. * * @return * possible object is * {@link Integer } * */ public Integer getRetryInterval() { return retryInterval; } /** * Sets the value of the retryInterval property. * * @param value * allowed object is * {@link Integer } * */ public void setRetryInterval(Integer value) { this.retryInterval = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy