1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2012.07.10 at 11:17:17 AM CEST 6 // 7 8 9 package de.fub.mi.idenpa.generated; 10 11 import javax.xml.bind.annotation.XmlAccessType; 12 import javax.xml.bind.annotation.XmlAccessorType; 13 import javax.xml.bind.annotation.XmlElement; 14 import javax.xml.bind.annotation.XmlType; 15 16 17 /** 18 * <p>Java class for RevokeMessageType complex type. 19 * 20 * <p>The following schema fragment specifies the expected content contained within this class. 21 * 22 * <pre> 23 * <complexType name="RevokeMessageType"> 24 * <complexContent> 25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 26 * <choice> 27 * <element name="RevokeRequest" type="{http://idenpa.mi.fub.de/messages}RevokeRequestType"/> 28 * <element name="RevokeResponse" type="{http://idenpa.mi.fub.de/messages}RevokeResponseType"/> 29 * <element name="RevokeResult" type="{http://idenpa.mi.fub.de/messages}RevokeResultType"/> 30 * </choice> 31 * </restriction> 32 * </complexContent> 33 * </complexType> 34 * </pre> 35 * 36 * 37 */ 38 @XmlAccessorType(XmlAccessType.FIELD) 39 @XmlType(name = "RevokeMessageType", propOrder = { 40 "revokeResult", 41 "revokeResponse", 42 "revokeRequest" 43 }) 44 public class RevokeMessageType { 45 46 @XmlElement(name = "RevokeResult") 47 protected RevokeResultType revokeResult; 48 @XmlElement(name = "RevokeResponse") 49 protected RevokeResponseType revokeResponse; 50 @XmlElement(name = "RevokeRequest") 51 protected RevokeRequestType revokeRequest; 52 53 /** 54 * Gets the value of the revokeResult property. 55 * 56 * @return 57 * possible object is 58 * {@link RevokeResultType } 59 * 60 */ 61 public RevokeResultType getRevokeResult() { 62 return revokeResult; 63 } 64 65 /** 66 * Sets the value of the revokeResult property. 67 * 68 * @param value 69 * allowed object is 70 * {@link RevokeResultType } 71 * 72 */ 73 public void setRevokeResult(RevokeResultType value) { 74 this.revokeResult = value; 75 } 76 77 /** 78 * Gets the value of the revokeResponse property. 79 * 80 * @return 81 * possible object is 82 * {@link RevokeResponseType } 83 * 84 */ 85 public RevokeResponseType getRevokeResponse() { 86 return revokeResponse; 87 } 88 89 /** 90 * Sets the value of the revokeResponse property. 91 * 92 * @param value 93 * allowed object is 94 * {@link RevokeResponseType } 95 * 96 */ 97 public void setRevokeResponse(RevokeResponseType value) { 98 this.revokeResponse = value; 99 } 100 101 /** 102 * Gets the value of the revokeRequest property. 103 * 104 * @return 105 * possible object is 106 * {@link RevokeRequestType } 107 * 108 */ 109 public RevokeRequestType getRevokeRequest() { 110 return revokeRequest; 111 } 112 113 /** 114 * Sets the value of the revokeRequest property. 115 * 116 * @param value 117 * allowed object is 118 * {@link RevokeRequestType } 119 * 120 */ 121 public void setRevokeRequest(RevokeRequestType value) { 122 this.revokeRequest = value; 123 } 124 125 }