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

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

Java class for ChangeAvailabilityRequest complex type. * *

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

 * <complexType name="ChangeAvailabilityRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="connectorId" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="type" type="{urn://Ocpp/Cp/2012/06/}AvailabilityType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ChangeAvailabilityRequest", propOrder = { "connectorId", "type" }) public class ChangeAvailabilityRequest { protected int connectorId; @XmlElement(required = true) protected AvailabilityType type; /** * Gets the value of the connectorId property. * */ public int getConnectorId() { return connectorId; } /** * Sets the value of the connectorId property. * */ public void setConnectorId(int value) { this.connectorId = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link AvailabilityType } * */ public AvailabilityType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link AvailabilityType } * */ public void setType(AvailabilityType value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy