// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.06.12 at 01:48:04 PM CEST // package de.tum.in.i22.uc.pdp.xsd; import ae.javax.xml.bind.annotation.XmlAccessType; import ae.javax.xml.bind.annotation.XmlAccessorType; import ae.javax.xml.bind.annotation.XmlType; /** * <p>Java class for AuthorizationInhibitType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AuthorizationInhibitType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="delay" type="{http://www22.in.tum.de/enforcementLanguage}DelayActionType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthorizationInhibitType", propOrder = { "delay" }) public class AuthorizationInhibitType { protected DelayActionType delay; /** * Gets the value of the delay property. * * @return * possible object is * {@link DelayActionType } * */ public DelayActionType getDelay() { return delay; } /** * Sets the value of the delay property. * * @param value * allowed object is * {@link DelayActionType } * */ public void setDelay(DelayActionType value) { this.delay = value; } public boolean isSetDelay() { return (this.delay!= null); } }