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

org.omg.space.xtce.AlarmConditionsType Maven / Gradle / Ivy

Go to download

This project contains software to support the Object Management Group (OMG) Space Domain Task Force (SDTF) maintained XML Telemetry and Command Exchange (XTCE) specification.

There is a newer version: 1.1.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.03.16 at 05:52:46 PM MST 
//


package org.omg.space.xtce;

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


/**
 * When the alarm is determined by boolean logic
 * 
 * 

Java class for AlarmConditionsType complex type. * *

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

 * <complexType name="AlarmConditionsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="WatchAlarm" type="{http://www.omg.org/space/xtce}MatchCriteriaType" minOccurs="0"/>
 *         <element name="WarningAlarm" type="{http://www.omg.org/space/xtce}MatchCriteriaType" minOccurs="0"/>
 *         <element name="DistressAlarm" type="{http://www.omg.org/space/xtce}MatchCriteriaType" minOccurs="0"/>
 *         <element name="CriticalAlarm" type="{http://www.omg.org/space/xtce}MatchCriteriaType" minOccurs="0"/>
 *         <element name="SevereAlarm" type="{http://www.omg.org/space/xtce}MatchCriteriaType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AlarmConditionsType", propOrder = { "watchAlarm", "warningAlarm", "distressAlarm", "criticalAlarm", "severeAlarm" }) public class AlarmConditionsType { @XmlElement(name = "WatchAlarm") protected MatchCriteriaType watchAlarm; @XmlElement(name = "WarningAlarm") protected MatchCriteriaType warningAlarm; @XmlElement(name = "DistressAlarm") protected MatchCriteriaType distressAlarm; @XmlElement(name = "CriticalAlarm") protected MatchCriteriaType criticalAlarm; @XmlElement(name = "SevereAlarm") protected MatchCriteriaType severeAlarm; /** * Gets the value of the watchAlarm property. * * @return * possible object is * {@link MatchCriteriaType } * */ public MatchCriteriaType getWatchAlarm() { return watchAlarm; } /** * Sets the value of the watchAlarm property. * * @param value * allowed object is * {@link MatchCriteriaType } * */ public void setWatchAlarm(MatchCriteriaType value) { this.watchAlarm = value; } /** * Gets the value of the warningAlarm property. * * @return * possible object is * {@link MatchCriteriaType } * */ public MatchCriteriaType getWarningAlarm() { return warningAlarm; } /** * Sets the value of the warningAlarm property. * * @param value * allowed object is * {@link MatchCriteriaType } * */ public void setWarningAlarm(MatchCriteriaType value) { this.warningAlarm = value; } /** * Gets the value of the distressAlarm property. * * @return * possible object is * {@link MatchCriteriaType } * */ public MatchCriteriaType getDistressAlarm() { return distressAlarm; } /** * Sets the value of the distressAlarm property. * * @param value * allowed object is * {@link MatchCriteriaType } * */ public void setDistressAlarm(MatchCriteriaType value) { this.distressAlarm = value; } /** * Gets the value of the criticalAlarm property. * * @return * possible object is * {@link MatchCriteriaType } * */ public MatchCriteriaType getCriticalAlarm() { return criticalAlarm; } /** * Sets the value of the criticalAlarm property. * * @param value * allowed object is * {@link MatchCriteriaType } * */ public void setCriticalAlarm(MatchCriteriaType value) { this.criticalAlarm = value; } /** * Gets the value of the severeAlarm property. * * @return * possible object is * {@link MatchCriteriaType } * */ public MatchCriteriaType getSevereAlarm() { return severeAlarm; } /** * Sets the value of the severeAlarm property. * * @param value * allowed object is * {@link MatchCriteriaType } * */ public void setSevereAlarm(MatchCriteriaType value) { this.severeAlarm = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy