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.XmlAttribute;
014import javax.xml.bind.annotation.XmlElement;
015import javax.xml.bind.annotation.XmlType;
016
017
018/**
019 * <p>Java class for CompareRequest complex type.
020 * 
021 * <p>The following schema fragment specifies the expected content contained within this class.
022 * 
023 * <pre>
024 * &lt;complexType name="CompareRequest">
025 *   &lt;complexContent>
026 *     &lt;extension base="{urn:oasis:names:tc:DSML:2:0:core}DsmlMessage">
027 *       &lt;sequence>
028 *         &lt;element name="assertion" type="{urn:oasis:names:tc:DSML:2:0:core}AttributeValueAssertion"/>
029 *       &lt;/sequence>
030 *       &lt;attribute name="dn" use="required" type="{urn:oasis:names:tc:DSML:2:0:core}DsmlDN" />
031 *     &lt;/extension>
032 *   &lt;/complexContent>
033 * &lt;/complexType>
034 * </pre>
035 * 
036 * 
037 */
038@XmlAccessorType(XmlAccessType.FIELD)
039@XmlType(name = "CompareRequest", namespace = "urn:oasis:names:tc:DSML:2:0:core", propOrder = {
040    "assertion"
041})
042public class CompareRequest
043    extends DsmlMessage
044{
045
046    @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core", required = true)
047    protected AttributeValueAssertion assertion;
048    @XmlAttribute(name = "dn", required = true)
049    protected String dn;
050
051    /**
052     * Gets the value of the assertion property.
053     * 
054     * @return
055     *     possible object is
056     *     {@link AttributeValueAssertion }
057     *     
058     */
059    public AttributeValueAssertion getAssertion() {
060        return assertion;
061    }
062
063    /**
064     * Sets the value of the assertion property.
065     * 
066     * @param value
067     *     allowed object is
068     *     {@link AttributeValueAssertion }
069     *     
070     */
071    public void setAssertion(AttributeValueAssertion value) {
072        this.assertion = value;
073    }
074
075    /**
076     * Gets the value of the dn property.
077     * 
078     * @return
079     *     possible object is
080     *     {@link String }
081     *     
082     */
083    public String getDn() {
084        return dn;
085    }
086
087    /**
088     * Sets the value of the dn property.
089     * 
090     * @param value
091     *     allowed object is
092     *     {@link String }
093     *     
094     */
095    public void setDn(String value) {
096        this.dn = value;
097    }
098
099}