001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2015.08.26 at 05:38:23 AM CEST 
006//
007
008
009package org.opends.dsml.protocol;
010
011import javax.xml.bind.annotation.XmlAccessType;
012import javax.xml.bind.annotation.XmlAccessorType;
013import javax.xml.bind.annotation.XmlElement;
014import javax.xml.bind.annotation.XmlType;
015
016
017/**
018 * <p>Java class for ExtendedResponse complex type.
019 * 
020 * <p>The following schema fragment specifies the expected content contained within this class.
021 * 
022 * <pre>
023 * &lt;complexType name="ExtendedResponse">
024 *   &lt;complexContent>
025 *     &lt;extension base="{urn:oasis:names:tc:DSML:2:0:core}LDAPResult">
026 *       &lt;sequence>
027 *         &lt;element name="responseName" type="{urn:oasis:names:tc:DSML:2:0:core}NumericOID" minOccurs="0"/>
028 *         &lt;element name="response" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
029 *       &lt;/sequence>
030 *     &lt;/extension>
031 *   &lt;/complexContent>
032 * &lt;/complexType>
033 * </pre>
034 * 
035 * 
036 */
037@XmlAccessorType(XmlAccessType.FIELD)
038@XmlType(name = "ExtendedResponse", namespace = "urn:oasis:names:tc:DSML:2:0:core", propOrder = {
039    "responseName",
040    "response"
041})
042public class ExtendedResponse
043    extends LDAPResult
044{
045
046    @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core")
047    protected String responseName;
048    @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core")
049    protected Object response;
050
051    /**
052     * Gets the value of the responseName property.
053     * 
054     * @return
055     *     possible object is
056     *     {@link String }
057     *     
058     */
059    public String getResponseName() {
060        return responseName;
061    }
062
063    /**
064     * Sets the value of the responseName property.
065     * 
066     * @param value
067     *     allowed object is
068     *     {@link String }
069     *     
070     */
071    public void setResponseName(String value) {
072        this.responseName = value;
073    }
074
075    /**
076     * Gets the value of the response property.
077     * 
078     * @return
079     *     possible object is
080     *     {@link Object }
081     *     
082     */
083    public Object getResponse() {
084        return response;
085    }
086
087    /**
088     * Sets the value of the response property.
089     * 
090     * @param value
091     *     allowed object is
092     *     {@link Object }
093     *     
094     */
095    public void setResponse(Object value) {
096        this.response = value;
097    }
098
099}