![JAR search and dependency download from the Maven repository](/logo.png)
io.motown.ocpp.v15.soap.chargepoint.schema.GetConfigurationResponse Maven / Gradle / Ivy
Show all versions of ocpp-v15-soap Show documentation
package io.motown.ocpp.v15.soap.chargepoint.schema;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Defines the GetConfiguration.req PDU
*
* Java class for GetConfigurationResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetConfigurationResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="configurationKey" type="{urn://Ocpp/Cp/2012/06/}KeyValue" maxOccurs="unbounded" minOccurs="0"/>
* <element name="unknownKey" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetConfigurationResponse", propOrder = {
"configurationKey",
"unknownKey"
})
public class GetConfigurationResponse {
protected List configurationKey;
protected List unknownKey;
/**
* Gets the value of the configurationKey property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the configurationKey property.
*
*
* For example, to add a new item, do as follows:
*
* getConfigurationKey().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link KeyValue }
*
*
*/
public List getConfigurationKey() {
if (configurationKey == null) {
configurationKey = new ArrayList();
}
return this.configurationKey;
}
/**
* Gets the value of the unknownKey property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the unknownKey property.
*
*
* For example, to add a new item, do as follows:
*
* getUnknownKey().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getUnknownKey() {
if (unknownKey == null) {
unknownKey = new ArrayList();
}
return this.unknownKey;
}
}