|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* skpDoorOpenAlarm
|
*
|
* <p>Clase Java para skpPowerSupplyAlarm complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="skpPowerSupplyAlarm">
|
* <complexContent>
|
* <extension base="{http://traxelektronik.pl/trax/ws/protocol}SkpAlarm">
|
* <sequence>
|
* <element name="powerSupply" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
* </sequence>
|
* </extension>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "skpPowerSupplyAlarm", propOrder = {
|
"powerSupply"
|
})
|
public class SkpPowerSupplyAlarm
|
extends SkpAlarm
|
{
|
|
@XmlElement(required = true, type = Boolean.class, nillable = true)
|
protected Boolean powerSupply;
|
|
/**
|
* Obtiene el valor de la propiedad powerSupply.
|
*
|
* @return
|
* possible object is
|
* {@link Boolean }
|
*
|
*/
|
public Boolean isPowerSupply() {
|
return powerSupply;
|
}
|
|
/**
|
* Define el valor de la propiedad powerSupply.
|
*
|
* @param value
|
* allowed object is
|
* {@link Boolean }
|
*
|
*/
|
public void setPowerSupply(Boolean value) {
|
this.powerSupply = value;
|
}
|
|
}
|